2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:potato_1", {
|
2017-02-22 15:08:39 +01:00
|
|
|
description = "Premature Potato Plant (First Stage)",
|
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:potato_item",
|
2015-06-29 19:55:56 +02:00
|
|
|
tiles = {"farming_potato_1.png"},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
|
|
|
},
|
|
|
|
},
|
2017-02-10 18:38:10 +01:00
|
|
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
2017-02-11 18:46:23 +01:00
|
|
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
2017-02-22 16:03:59 +01:00
|
|
|
_mcl_blast_resistance = 0,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:potato_2", {
|
2017-02-22 15:08:39 +01:00
|
|
|
description = "Premature Potato Plant (Second Stage)",
|
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:potato_item",
|
2015-06-29 19:55:56 +02:00
|
|
|
tiles = {"farming_potato_2.png"},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
|
|
|
|
},
|
|
|
|
},
|
2017-02-10 18:38:10 +01:00
|
|
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
2017-02-11 18:46:23 +01:00
|
|
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
2017-02-22 16:03:59 +01:00
|
|
|
_mcl_blast_resistance = 0,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_node("mcl_farming:potato", {
|
2017-02-22 15:08:39 +01:00
|
|
|
description = "Mature Potato Plant",
|
2015-06-29 19:55:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_potato_3.png"},
|
|
|
|
drop = {
|
|
|
|
items = {
|
2017-02-22 14:25:54 +01:00
|
|
|
{ items = {'mcl_farming:potato_item 1'} },
|
|
|
|
{ items = {'mcl_farming:potato_item 1'}, rarity = 2 },
|
|
|
|
{ items = {'mcl_farming:potato_item 1'}, rarity = 2 },
|
|
|
|
{ items = {'mcl_farming:potato_item 1'}, rarity = 2 },
|
|
|
|
{ items = {'mcl_farming:potato_item_poison 1'}, rarity = 50 }
|
2015-06-29 19:55:56 +02:00
|
|
|
}
|
|
|
|
},
|
2017-02-10 18:38:10 +01:00
|
|
|
groups = {dig_immediate=3, not_in_creative_inventory=1,dig_by_water=1},
|
2017-02-11 18:46:23 +01:00
|
|
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
2017-02-22 16:03:59 +01:00
|
|
|
_mcl_blast_resistance = 0,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_craftitem("mcl_farming:potato_item", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Potato",
|
|
|
|
inventory_image = "farming_potato.png",
|
2017-01-16 14:29:41 +01:00
|
|
|
groups = { food = 2, eatable = 1 },
|
2015-06-29 19:55:56 +02:00
|
|
|
stack_max = 64,
|
2017-02-16 17:45:33 +01:00
|
|
|
on_secondary_use = minetest.item_eat(1),
|
2015-06-29 19:55:56 +02:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
2017-02-16 17:45:33 +01:00
|
|
|
local new = mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:potato_1")
|
|
|
|
if new ~= nil then
|
|
|
|
return new
|
|
|
|
else
|
|
|
|
return minetest.do_item_eat(1, nil, itemstack, placer, pointed_thing)
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_craftitem("mcl_farming:potato_item_baked", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Baked Potato",
|
|
|
|
stack_max = 64,
|
|
|
|
inventory_image = "farming_potato_baked.png",
|
2017-02-16 17:45:33 +01:00
|
|
|
on_place = minetest.item_eat(6),
|
|
|
|
on_secondary_use = minetest.item_eat(6),
|
2017-01-16 14:29:41 +01:00
|
|
|
groups = { food = 2, eatable = 6 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
minetest.register_craftitem("mcl_farming:potato_item_poison", {
|
2015-06-29 19:55:56 +02:00
|
|
|
description = "Poisonous Potato",
|
|
|
|
stack_max = 64,
|
|
|
|
inventory_image = "farming_potato_poison.png",
|
2017-02-28 04:53:52 +01:00
|
|
|
-- TODO: Cause status effects
|
|
|
|
-- TODO: Raise to 2
|
|
|
|
on_place = minetest.item_eat(0),
|
|
|
|
on_secondary_use = minetest.item_eat(0),
|
|
|
|
groups = { food = 2, eatable = 0 },
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
2017-01-31 12:35:59 +01:00
|
|
|
output = "mcl_farming:potato_item_baked",
|
|
|
|
recipe = "mcl_farming:potato_item",
|
2017-02-01 19:15:49 +01:00
|
|
|
cooktime = 10,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-31 12:35:59 +01:00
|
|
|
mcl_farming:add_plant("mcl_farming:potato", {"mcl_farming:potato_1", "mcl_farming:potato_2"}, 50, 20)
|