Crafter/mods/mob/items.lua
2020-03-10 23:56:27 -07:00

20 lines
426 B
Lua

--items
minetest.register_craftitem("mob:raw_porkchop", {
description = "Raw Porkchop",
inventory_image = "raw_porkchop.png",
health = 2,
})
minetest.register_craftitem("mob:cooked_porkchop", {
description = "Cooked Porkchop",
inventory_image = "cooked_porkchop.png",
health = 4,
})
--cooking
minetest.register_craft({
type = "cooking",
output = "mob:cooked_porkchop",
recipe = "mob:raw_porkchop",
cooktime = 3,
})