mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-05 07:13:51 +01:00
Make horse armor smeltable
This commit is contained in:
parent
f26d2c34e4
commit
a0863a47bf
@ -1,2 +1,3 @@
|
||||
mcl_core
|
||||
mcl_hunger
|
||||
mobs_mc
|
||||
|
@ -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",},
|
||||
|
Loading…
Reference in New Issue
Block a user