cucina_vegana/rice_default.lua
2018-05-10 23:39:08 +02:00

35 lines
876 B
Lua

-- asparagus
farming.register_plant("cucina_vegana:rice", {
description = "Rice Seed",
inventory_image = "cucina_vegana_rice_seed.png",
steps = 6,
minlight = 12,
maxlight = default.LIGHT_MAX,
fertility = {"grassland"},
groups = {flammable = 4, attached_node = 1},
})
-- Register for Mapgen
minetest.register_node("cucina_vegana:wild_rice", {
description = "Wild Rice",
paramtype = "light",
walkable = false,
drop = {
items = {
{items = {"cucina_vegana:seed_rice 3"}},
{items = {"cucina_vegana:rice"}},
}
},
drawtype = "plantlike",
paramtype2 = "facedir",
tiles = {"cucina_vegana_rice_6.png"},
groups = {snappy = 3, dig_immediate=1, flammable=2, plant=1, attached_node = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.35, 0.5}, -- side f
},
},
})