VoxeLibre/mods/ITEMS/mcl_farming/carrots.lua

128 lines
4.4 KiB
Lua
Raw Normal View History

local S = minetest.get_translator(minetest.get_current_modname())
2017-04-01 04:56:42 +02:00
for i=1, 7 do
local texture, sel_height
if i < 3 then
sel_height = -5/16
texture = "farming_carrot_1.png"
elseif i < 5 then
2023-03-18 01:11:50 +01:00
sel_height = -4/16
2017-04-01 04:56:42 +02:00
texture = "farming_carrot_2.png"
else
2023-03-18 01:11:50 +01:00
sel_height = -3/16
2017-04-01 04:56:42 +02:00
texture = "farming_carrot_3.png"
end
2015-06-29 19:55:56 +02:00
2017-04-01 04:56:42 +02:00
local create, name, longdesc
if i == 1 then
create = true
name = S("Premature Carrot Plant")
2019-03-15 03:41:24 +01:00
longdesc = S("Carrot plants are plants which grow on farmland under sunlight in 8 stages, but only 4 stages can be visually told apart. On hydrated farmland, they grow a bit faster. They can be harvested at any time but will only yield a profit when mature.")
2017-04-01 04:56:42 +02:00
else
create = false
end
minetest.register_node("mcl_farming:carrot_"..i, {
description = S("Premature Carrot Plant (Stage @1)", i),
2017-04-01 04:56:42 +02:00
_doc_items_create_entry = create,
_doc_items_entry_name = name,
_doc_items_longdesc = longdesc,
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "meshoptions",
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:carrot_item",
tiles = {texture},
inventory_image = texture,
wield_image = texture,
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, sel_height, 0.5}
},
2015-06-29 19:55:56 +02:00
},
2017-05-20 04:11:14 +02:00
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},
2017-04-01 04:56:42 +02:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
})
end
2015-06-29 19:55:56 +02:00
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:carrot", {
description = S("Mature Carrot Plant"),
_doc_items_longdesc = S("Mature carrot plants are ready to be harvested for carrots. They won't grow any further."),
2015-06-29 19:55:56 +02:00
paramtype = "light",
2017-03-20 19:05:04 +01:00
sunlight_propagates = true,
paramtype2 = "meshoptions",
place_param2 = 3,
2015-06-29 19:55:56 +02:00
walkable = false,
drawtype = "plantlike",
tiles = {"farming_carrot_4.png"},
2017-04-01 04:56:42 +02:00
inventory_image = "farming_carrot_4.png",
wield_image = "farming_carrot_4.png",
2015-06-29 19:55:56 +02:00
drop = {
max_items = 1,
items = {
{ items = {"mcl_farming:carrot_item 4"}, rarity = 5 },
{ items = {"mcl_farming:carrot_item 3"}, rarity = 2 },
{ items = {"mcl_farming:carrot_item 2"}, rarity = 2 },
{ items = {"mcl_farming:carrot_item 1"} },
2015-06-29 19:55:56 +02:00
}
},
selection_box = {
type = "fixed",
fixed = {
2023-03-18 01:13:53 +01:00
{-0.5, -0.5, -0.5, 0.5, -1/16, 0.5}
},
},
2017-05-20 04:11:14 +02:00
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,
2024-01-04 20:19:50 +01:00
_mcl_fortune_drop = {
discrete_uniform_distribution = true,
items = {"mcl_farming:carrot_item"},
min_count = 2,
max_count = 4,
cap = 5,
}
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_craftitem("mcl_farming:carrot_item", {
description = S("Carrot"),
_tt_help = S("Grows on farmland"),
_doc_items_longdesc = S("Carrots can be eaten and planted. Pigs and rabbits like carrots."),
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant the carrot. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
2015-06-29 19:55:56 +02:00
inventory_image = "farming_carrot.png",
groups = {food = 2, eatable = 3, compostability = 65},
2017-05-20 17:45:04 +02:00
_mcl_saturation = 3.6,
2017-02-16 17:45:33 +01:00
on_secondary_use = minetest.item_eat(3),
on_place = mcl_farming:get_seed_or_eat_callback("mcl_farming:carrot_1", 3),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_craftitem("mcl_farming:carrot_item_gold", {
description = S("Golden Carrot"),
_doc_items_longdesc = S("A golden carrot is a precious food item which can be eaten. It is really, really filling!"),
2015-06-29 19:55:56 +02:00
inventory_image = "farming_carrot_gold.png",
on_place = minetest.item_eat(6),
on_secondary_use = minetest.item_eat(6),
groups = { brewitem = 1, food = 2, eatable = 6 },
2017-05-20 17:45:04 +02:00
_mcl_saturation = 14.4,
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = "mcl_farming:carrot_item_gold",
2015-06-29 19:55:56 +02:00
recipe = {
{"mcl_core:gold_nugget", "mcl_core:gold_nugget", "mcl_core:gold_nugget"},
{"mcl_core:gold_nugget", "mcl_farming:carrot_item", "mcl_core:gold_nugget"},
{"mcl_core:gold_nugget", "mcl_core:gold_nugget", "mcl_core:gold_nugget"},
2015-06-29 19:55:56 +02:00
}
})
2017-04-01 04:56:42 +02:00
mcl_farming:add_plant("plant_carrot", "mcl_farming:carrot", {"mcl_farming:carrot_1", "mcl_farming:carrot_2", "mcl_farming:carrot_3", "mcl_farming:carrot_4", "mcl_farming:carrot_5", "mcl_farming:carrot_6", "mcl_farming:carrot_7"}, 25, 20)
if minetest.get_modpath("doc") then
2017-04-01 04:56:42 +02:00
for i=2,7 do
doc.add_entry_alias("nodes", "mcl_farming:carrot_1", "nodes", "mcl_farming:carrot_"..i)
end
end