local S = minetest.get_translator("mcl_farming") minetest.register_craftitem("mcl_farming:beetroot_seeds", { description = S("Beetroot Seeds"), _tt_help = S("Grows on farmland"), _doc_items_longdesc = S("Grows into a beetroot plant. Chickens like beetroot seeds."), _doc_items_usagehelp = S("Place the beetroot seeds on farmland (which can be created with a hoe) to plant a beetroot plant. They grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it beetroot seeds."), groups = { craftitem=1 }, inventory_image = "mcl_farming_beetroot_seeds.png", wield_image = "mcl_farming_beetroot_seeds.png", on_place = function(itemstack, placer, pointed_thing) return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:beetroot_0") end }) minetest.register_node("mcl_farming:beetroot_0", { description = S("Premature Beetroot Plant (Stage 1)"), _doc_items_longdesc = S("Beetroot plants are plants which grow on farmland under sunlight in 4 stages. On hydrated farmland, they grow a bit faster. They can be harvested at any time but will only yield a profit when mature."), _doc_items_entry_name = S("Premature Beetroot Plant"), paramtype = "light", sunlight_propagates = true, -- keep place_param2 for plantlike drawtype compatiblity place_param2 = 3, walkable = false, drawtype = "nodebox", node_box = mcl_farming:get_plantlike_grid_nodebox(), drop = "mcl_farming:beetroot_seeds", tiles = { mcl_farming:align_plantlike_nodebox_texture("mcl_farming_beetroot_0.png") }, use_texture_alpha = "clip", inventory_image = "mcl_farming_beetroot_0.png", wield_image = "mcl_farming_beetroot_0.png", selection_box = { type = "fixed", fixed = { {-0.5, -9/16, -0.5, 0.5, -6/16, 0.5} }, }, groups = {dig_immediate=3, not_in_creative_inventory=1,plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1}, sounds = mcl_sounds.node_sound_leaves_defaults(), _mcl_blast_resistance = 0, }) minetest.register_node("mcl_farming:beetroot_1", { description = S("Premature Beetroot Plant (Stage 2)"), _doc_items_create_entry = false, paramtype = "light", sunlight_propagates = true, -- keep place_param2 for plantlike drawtype compatiblity place_param2 = 3, walkable = false, drawtype = "nodebox", node_box = mcl_farming:get_plantlike_grid_nodebox(), drop = "mcl_farming:beetroot_seeds", tiles = { mcl_farming:align_plantlike_nodebox_texture("mcl_farming_beetroot_1.png") }, use_texture_alpha = "clip", inventory_image = "mcl_farming_beetroot_1.png", wield_image = "mcl_farming_beetroot_1.png", selection_box = { type = "fixed", fixed = { {-0.5, -9/16, -0.5, 0.5, -4/16, 0.5} }, }, groups = {dig_immediate=3, not_in_creative_inventory=1,plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1}, sounds = mcl_sounds.node_sound_leaves_defaults(), _mcl_blast_resistance = 0, }) minetest.register_node("mcl_farming:beetroot_2", { description = S("Premature Beetroot Plant (Stage 3)"), _doc_items_create_entry = false, paramtype = "light", sunlight_propagates = true, -- keep place_param2 for plantlike drawtype compatiblity place_param2 = 3, walkable = false, drawtype = "nodebox", node_box = mcl_farming:get_plantlike_grid_nodebox(), drop = "mcl_farming:beetroot_seeds", tiles = { mcl_farming:align_plantlike_nodebox_texture("mcl_farming_beetroot_2.png") }, use_texture_alpha = "clip", inventory_image = "mcl_farming_beetroot_2.png", wield_image = "mcl_farming_beetroot_2.png", selection_box = { type = "fixed", fixed = { {-0.5, -9/16, -0.5, 0.5, 1/16, 0.5} }, }, groups = {dig_immediate=3, not_in_creative_inventory=1,plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1}, sounds = mcl_sounds.node_sound_leaves_defaults(), _mcl_blast_resistance = 0, }) minetest.register_node("mcl_farming:beetroot", { description = S("Mature Beetroot Plant"), _doc_items_longdesc = S("A mature beetroot plant is a farming plant which is ready to be harvested for a beetroot and some beetroot seeds. It won't grow any further."), _doc_items_create_entry = true, paramtype = "light", sunlight_propagates = true, -- keep place_param2 for plantlike drawtype compatiblity place_param2 = 3, walkable = false, drawtype = "nodebox", node_box = mcl_farming:get_plantlike_grid_nodebox(), drop = { --[[ drops 1 beetroot guaranteed. drops 1-4 beetroot seeds: 1 seed: 42.18% 2 seeds: 14.06% 3 seeds: 18.75% 4 seeds: 25% ]] max_items = 3, items = { { items = {"mcl_farming:beetroot_item"}, rarity = 1 }, { items = {"mcl_farming:beetroot_seeds 1"}, rarity = 1 }, { items = {"mcl_farming:beetroot_seeds 3"}, rarity = 4 }, { items = {"mcl_farming:beetroot_seeds 2"}, rarity = 4 }, { items = {"mcl_farming:beetroot_seeds 1"}, rarity = 4 }, }, }, tiles = { mcl_farming:align_plantlike_nodebox_texture("mcl_farming_beetroot_3.png") }, use_texture_alpha = "clip", inventory_image = "mcl_farming_beetroot_3.png", wield_image = "mcl_farming_beetroot_3.png", selection_box = { type = "fixed", fixed = { {-0.5, -9/16, -0.5, 0.5, 2/16, 0.5} }, }, groups = {dig_immediate=3, not_in_creative_inventory=1,plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,beetroot=4}, sounds = mcl_sounds.node_sound_leaves_defaults(), _mcl_blast_resistance = 0, }) minetest.register_craftitem("mcl_farming:beetroot_item", { description = S("Beetroot"), _doc_items_longdesc = S("Beetroots are both used as food item and a dye ingredient. Pigs like beetroots, too."), _doc_items_usagehelp = S("Hold it in your hand and right-click to eat it. Rightclick an animal to feed it."), inventory_image = "mcl_farming_beetroot.png", wield_image = "mcl_farming_beetroot.png", on_place = minetest.item_eat(1), on_secondary_use = minetest.item_eat(1), groups = { food = 2, eatable = 1 }, _mcl_saturation = 1.2, }) minetest.register_craftitem("mcl_farming:beetroot_soup", { description = S("Beetroot Soup"), _doc_items_longdesc = S("Beetroot soup is a food item."), stack_max = 1, inventory_image = "mcl_farming_beetroot_soup.png", wield_image = "mcl_farming_beetroot_soup.png", on_place = minetest.item_eat(6, "mcl_core:bowl"), on_secondary_use = minetest.item_eat(6, "mcl_core:bowl"), groups = { food = 3, eatable = 6 }, _mcl_saturation = 7.2, }) minetest.register_craft({ output = "mcl_farming:beetroot_soup", recipe = { { "mcl_farming:beetroot_item","mcl_farming:beetroot_item","mcl_farming:beetroot_item", }, { "mcl_farming:beetroot_item","mcl_farming:beetroot_item","mcl_farming:beetroot_item", }, { "", "mcl_core:bowl", "" }, }, }) mcl_farming:add_plant("plant_beetroot", "mcl_farming:beetroot", {"mcl_farming:beetroot_0", "mcl_farming:beetroot_1", "mcl_farming:beetroot_2"}, 68, 3) if minetest.get_modpath("doc") then for i=1,2 do doc.add_entry_alias("nodes", "mcl_farming:beetroot_0", "nodes", "mcl_farming:beetroot_"..i) end end