2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:carrot_1", {
|
2015-06-29 19:55:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
drawtype = "plantlike",
|
2017-01-31 12:35:59 +01:00
|
|
|
drop = "mcl_farming:carrot_item",
|
2015-06-29 19:55:56 +02:00
|
|
|
tiles = {"farming_carrot_1.png"},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:carrot_2", {
|
2015-06-29 19:55:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
drawtype = "plantlike",
|
2017-01-31 12:35:59 +01:00
|
|
|
drop = "mcl_farming:carrot_item",
|
2015-06-29 19:55:56 +02:00
|
|
|
tiles = {"farming_carrot_2.png"},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:carrot_3", {
|
2015-06-29 19:55:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
drawtype = "plantlike",
|
2017-01-31 12:35:59 +01:00
|
|
|
drop = "mcl_farming:carrot_item",
|
2015-06-29 19:55:56 +02:00
|
|
|
tiles = {"farming_carrot_3.png"},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:carrot", {
|
2015-06-29 19:55:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_carrot_4.png"},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
2017-01-31 12:35:59 +01:00
|
|
|
{ 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
|
|
|
}
|
|
|
|
},
|
|
|
|
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_craftitem("mcl_farming:carrot_item", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Carrot",
|
|
|
|
inventory_image = "farming_carrot.png",
|
|
|
|
on_use = minetest.item_eat(3),
|
2017-01-16 14:29:41 +01:00
|
|
|
groups = { food = 2, eatable = 3 },
|
2015-06-29 19:55:56 +02:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
2017-01-31 12:35:59 +01:00
|
|
|
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:carrot_1")
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_craftitem("mcl_farming:carrot_item_gold", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Golden Carrot",
|
|
|
|
inventory_image = "farming_carrot_gold.png",
|
|
|
|
on_use = minetest.item_eat(3),
|
2017-01-20 11:37:18 +01:00
|
|
|
groups = { brewitem = 1, food = 2, eatable = 3 },
|
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 = {
|
2017-01-04 12:30:11 +01:00
|
|
|
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
2017-01-31 12:35:59 +01:00
|
|
|
{'default:gold_nugget', 'mcl_farming:carrot_item', 'default:gold_nugget'},
|
2017-01-04 12:30:11 +01:00
|
|
|
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
2015-06-29 19:55:56 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
mcl_farming:add_plant("mcl_farming:carrot", {"mcl_farming:carrot_1", "mcl_farming:carrot_2", "mcl_farming:carrot_3"}, 50, 20)
|