VoxeLibre/mods/ITEMS/mcl_farming/beetroot.lua

120 lines
3.6 KiB
Lua
Raw Normal View History

2017-02-01 13:27:49 +01:00
minetest.register_craftitem("mcl_farming:beetroot_seeds", {
description = "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)
2017-02-06 18:29:13 +01:00
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:beetroot_0")
2017-02-01 13:27:49 +01:00
end
})
2017-02-06 18:29:13 +01:00
minetest.register_node("mcl_farming:beetroot_0", {
2017-02-22 15:08:39 +01:00
description = "Premature Beetroot Plant (First Stage)",
2017-02-01 13:27:49 +01:00
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:beetroot_seeds",
2017-02-06 18:29:13 +01:00
tiles = {"mcl_farming_beetroot_0.png"},
2017-02-01 13:27:49 +01:00
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
},
},
2017-02-06 18:29:13 +01:00
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
2017-02-01 13:27:49 +01:00
})
2017-02-06 18:29:13 +01:00
minetest.register_node("mcl_farming:beetroot_1", {
2017-02-22 15:08:39 +01:00
description = "Premature Beetroot Plant (Second Stage)",
2017-02-01 13:27:49 +01:00
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:beetroot_seeds",
2017-02-06 18:29:13 +01:00
tiles = {"mcl_farming_beetroot_1.png"},
2017-02-01 13:27:49 +01:00
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
},
},
2017-02-06 18:29:13 +01:00
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
2017-02-01 13:27:49 +01:00
})
2017-02-06 18:29:13 +01:00
minetest.register_node("mcl_farming:beetroot_2", {
2017-02-22 15:08:39 +01:00
description = "Premature Beetroot Plant (Third Stage)",
2017-02-01 13:27:49 +01:00
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:beetroot_seeds",
2017-02-06 18:29:13 +01:00
tiles = {"farming_carrot_2.png"},
2017-02-01 13:27:49 +01:00
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
},
},
2017-02-06 18:29:13 +01:00
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
2017-02-01 13:27:49 +01:00
})
minetest.register_node("mcl_farming:beetroot", {
2017-02-22 15:08:39 +01:00
description = "Mature Beetroot Plant",
2017-02-01 13:27:49 +01:00
paramtype = "light",
walkable = false,
drawtype = "plantlike",
drop = {
max_items = 2,
items = {
{ items = {"mcl_farming:beetroot_item"}, rarity = 1 },
2017-02-06 18:29:13 +01:00
{ items = {"mcl_farming:beetroot_seeds 3"}, rarity = 4 },
{ items = {"mcl_farming:beetroot_seeds 2"}, rarity = 4 },
{ items = {"mcl_farming:beetroot_seeds 1"}, rarity = 4 },
2017-02-01 13:27:49 +01:00
},
},
2017-02-06 18:29:13 +01:00
tiles = {"mcl_farming_beetroot_3.png"},
2017-02-01 13:27:49 +01:00
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
},
},
2017-02-06 18:29:13 +01:00
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
2017-02-01 13:27:49 +01:00
})
minetest.register_craftitem("mcl_farming:beetroot_item", {
description = "Beetroot",
inventory_image = "mcl_farming_beetroot.png",
wield_image = "mcl_farming_beetroot.png",
2017-02-16 17:45:33 +01:00
on_place = minetest.item_eat(1),
on_secondary_use = minetest.item_eat(1),
2017-02-01 13:27:49 +01:00
groups = { food = 2, eatable = 1 },
})
minetest.register_craftitem("mcl_farming:beetroot_soup", {
description = "Beetroot Soup",
stack_max = 1,
inventory_image = "mcl_farming_beetroot_soup.png",
wield_image = "mcl_farming_beetroot_soup.png",
2017-02-16 17:45:33 +01:00
on_place = minetest.item_eat(6, "mcl_core:bowl"),
on_secondary_use = minetest.item_eat(6, "mcl_core:bowl"),
2017-02-16 15:08:26 +01:00
groups = { food = 3, eatable = 6 },
2017-02-01 13:27:49 +01:00
})
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", "" },
},
})
2017-02-06 18:29:13 +01:00
mcl_farming:add_plant("mcl_farming:beetroot", {"mcl_farming:beetroot_0", "mcl_farming:beetroot_1", "mcl_farming:beetroot_2"}, 68, 3)