Add rabbit stew

This commit is contained in:
Wuzzy 2017-02-01 16:14:03 +01:00
parent f97453b3d9
commit ce2abd0f83
2 changed files with 18 additions and 0 deletions

View File

@ -199,6 +199,15 @@ minetest.register_craftitem("mcl_mobitems:saddle", {
stack_max = 1,
})
minetest.register_craftitem("mcl_mobitems:rabbit_stew", {
description = "Rabbit Stew",
wield_image = "mcl_mobitems_rabbit_stew.png",
inventory_image = "mcl_mobitems_rabbit_stew.png",
stack_max = 1,
on_use = minetest.item_eat(10, "mcl_core:bowl"),
groups = { food = 3, eatable = 10 },
})
-----------
-- Crafting
-----------
@ -216,6 +225,15 @@ minetest.register_craft({
recipe = {{"mcl_mobitems:blaze_rod"}},
})
minetest.register_craft({
output = "mcl_mobitems:rabbit_stew",
recipe = {
{ "", "mcl_mobitems:cooked_rabbit", "", },
{ "mcl_farming:carrot_item", "mcl_farming:potato_item_baked", "group:mushroom", },
{ "", "mcl_core:bowl", "", },
},
})
minetest.register_craft({
type = "shapeless",
output = "mcl_mobitems:magma_cream",

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 B