123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- minetest.register_craftitem("lottmobs:meat", {
- description = "Cooked Meat",
- inventory_image = "lottmobs_meat.png",
- on_use = minetest.item_eat(4),
- })
- minetest.register_craftitem("lottmobs:meat_raw", {
- description = "Raw Meat",
- inventory_image = "lottmobs_meat_raw.png",
- })
- minetest.register_craftitem("lottmobs:spiderpoison", {
- description = "Spider Poison",
- inventory_image = "lottmobs_spiderpoison.png",
- on_use = minetest.item_eat(-15)
- })
- minetest.register_craft({
- type = "cooking",
- output = "lottmobs:meat",
- recipe = "lottmobs:meat_raw",
- })
- minetest.register_craftitem("lottmobs:dirty_shirt", {
- description = "Dirty Jacket",
- inventory_image = "lottclothes_inv_jacket_midgewater.png^[colorize:#935d3675",
- stack_max = 1,
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 8',
- recipe = {
- {'lottmobs:dirty_shirt'},
- }
- })
- minetest.register_craftitem("lottmobs:dirty_trousers", {
- description = "Dirty Trousers",
- inventory_image = "lottclothes_inv_pants_midgewater.png^[colorize:#935d3675",
- stack_max = 1,
- })
- minetest.register_craft({
- output = 'lottclothes:flaxthread 7',
- recipe = {
- {'lottmobs:dirty_trousers'},
- }
- })
- minetest.register_craft({
- output = "lottclothes:jacket_midgewater",
- type = "shapeless",
- recipe = {"bucket:bucket_water", "lottmobs:dirty_shirt"},
- replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}},
- })
- minetest.register_craft({
- output = "lottclothes:pants_midgewater",
- type = "shapeless",
- recipe = {"bucket:bucket_water", "lottmobs:dirty_trousers"},
- replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}},
- })
|