mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-05 10:00:40 +01:00
51 lines
1.0 KiB
Lua
51 lines
1.0 KiB
Lua
-- internationalization boilerplate
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
|
|
|
-----------------------------------------------------------------------
|
|
-- Plants
|
|
|
|
|
|
--------------------------------------------------
|
|
-- Cave wheat
|
|
|
|
-- stalks. White
|
|
|
|
farming.register_plant("dfcaverns:cave_wheat", {
|
|
description = "Cave wheat seed",
|
|
paramtype2 = "meshoptions",
|
|
inventory_image = "dfcaverns_cave_wheat_seed.png",
|
|
steps = 8,
|
|
minlight = 0,
|
|
maxlight = 8,
|
|
fertility = {"grassland", "desert"},
|
|
groups = {flammable = 4},
|
|
place_param2 = 3,
|
|
})
|
|
|
|
--------------------------------------------------
|
|
-- Dimple cup
|
|
|
|
-- royal blue
|
|
|
|
--------------------------------------------------
|
|
-- Pig tail
|
|
|
|
-- Twisting stalks. Gray
|
|
|
|
--------------------------------------------------
|
|
-- Plump helmet
|
|
|
|
-- Purple, rounded tops
|
|
|
|
--------------------------------------------------
|
|
-- Quarry Bush
|
|
|
|
-- Gray leaves
|
|
-- Produces rock nuts
|
|
|
|
--------------------------------------------------
|
|
-- Sweet Pod
|
|
|
|
-- Round shape, red
|