123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- minetest.register_craftitem("lottfarming:potato_seed", {
- description = "Potato Seeds",
- inventory_image = "lottfarming_potato_seed.png",
- on_place = function(itemstack, placer, pointed_thing)
- return place_seed(itemstack, placer, pointed_thing, "lottfarming:potato_1", 40)
- end,
- })
- minetest.register_node("lottfarming:potato_1", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- tiles = {"lottfarming_potato_1.png"},
- waving = 1,
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.5+6/16, 0.5}
- },
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- minetest.register_node("lottfarming:potato_2", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- tiles = {"lottfarming_potato_2.png"},
- waving = 1,
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.5+9/16, 0.5}
- },
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- minetest.register_node("lottfarming:potato_3", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- walkable = false,
- drawtype = "plantlike",
- tiles = {"lottfarming_potato_3.png"},
- waving = 1,
- drop = {
- max_items = 6,
- items = {
- { items = {'lottfarming:potato_seed'} },
- { items = {'lottfarming:potato_seed'}, rarity = 2},
- { items = {'lottfarming:potato_seed'}, rarity = 5},
- { items = {'lottfarming:potato'} },
- { items = {'lottfarming:potato'}, rarity = 2 },
- { items = {'lottfarming:potato'}, rarity = 5 }
- }
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1,plant=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- minetest.register_craftitem("lottfarming:potato", {
- description = "Potato",
- inventory_image = "lottfarming_potato.png",
- on_use = minetest.item_eat(1),
- })
- farming:add_plant("lottfarming:potato_3", {"lottfarming:potato_1", "lottfarming:potato_2"}, 50, 20, 40)
- minetest.register_craft({
- type = "cooking",
- cooktime = 15,
- output = "lottfarming:potato_cooked",
- recipe = "lottfarming:potato"
- })
- minetest.register_craftitem("lottfarming:potato_cooked", {
- description = "Cooked Potato",
- inventory_image = "lottfarming_potato_cooked.png",
- on_use = minetest.item_eat(5),
- })
|