cucina_vegana/sunflower_default.lua

35 lines
898 B
Lua
Raw Normal View History

2018-04-24 20:57:37 +02:00
farming.register_plant("cucina_vegana:sunflower", {
description = "Sunflower Seed",
inventory_image = "cucina_vegana_sunflower_seed.png",
steps = 5,
minlight = 13,
maxlight = default.LIGHT_MAX,
fertility = {"grassland"},
groups = {flammable = 4},
})
-- Register for Mapgen
minetest.register_node("cucina_vegana:wild_sunflower", {
description = "Wild Sunflower",
paramtype = "light",
walkable = false,
drop = {
items = {
{items = {"cucina_vegana:seed_sunflower 2"}},
{items = {"cucina_vegana:sunflower"}},
}
},
drawtype = "plantlike",
paramtype2 = "facedir",
tiles = {"cucina_vegana_sunflower_5.png"},
groups = {snappy = 3, dig_immediate=1, flammable=2, plant=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
},
},
})