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 }, }, })