mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Add helper recipes for chain armor
This commit is contained in:
parent
046e50ae80
commit
cf81dd63eb
1 changed files with 34 additions and 0 deletions
|
@ -131,6 +131,40 @@ minetest.register_craft({
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "3d_armor:helmet_chain",
|
||||||
|
recipe = {
|
||||||
|
{ "xpanes:bar_flat", "mcl_core:iron_ingot", "xpanes:bar_flat" },
|
||||||
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "3d_armor:leggings_chain",
|
||||||
|
recipe = {
|
||||||
|
{ "xpanes:bar_flat", "mcl_core:iron_ingot", "xpanes:bar_flat" },
|
||||||
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
||||||
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "3d_armor:boots_chain",
|
||||||
|
recipe = {
|
||||||
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
||||||
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "3d_armor:chestplate_chain",
|
||||||
|
recipe = {
|
||||||
|
{ "xpanes:bar_flat", "", "xpanes:bar_flat" },
|
||||||
|
{ "xpanes:bar_flat", "mcl_core:iron_ingot", "xpanes:bar_flat" },
|
||||||
|
{ "xpanes:bar_flat", "xpanes:bar_flat", "xpanes:bar_flat" },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_jukebox:record_1",
|
output = "mcl_jukebox:record_1",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
Loading…
Reference in a new issue