Make horse armor smeltable

This commit is contained in:
Wuzzy 2017-07-06 15:00:25 +02:00
parent f26d2c34e4
commit a0863a47bf
2 changed files with 17 additions and 0 deletions

View File

@ -1,2 +1,3 @@
mcl_core
mcl_hunger
mobs_mc

View File

@ -421,6 +421,22 @@ minetest.register_craft({
recipe = {{"mcl_core:slimeblock"}},
})
minetest.register_craft({
type = "cooking",
output = 'mcl_core:iron_nugget',
recipe = 'mobs_mc:iron_horse_armor',
cooktime = 10,
})
minetest.register_craft({
type = "cooking",
output = 'mcl_core:gold_nugget',
recipe = 'mobs_mc:gold_horse_armor',
cooktime = 10,
})
minetest.register_craft({
output = "mcl_core:slimeblock",
recipe = {{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",},