This commit is contained in:
Thomas Rudin
2018-11-05 08:44:18 +01:00
parent 38a8e64627
commit b9d7a4e0b8
4 changed files with 107 additions and 94 deletions
+37
View File
@@ -0,0 +1,37 @@
minetest.register_craft({
output = "spacesuit:helmet",
recipe = {
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "default:glass", "default:steel_ingot"},
{"wool:white", "default:steelblock", "wool:white"},
},
})
minetest.register_craft({
output = "spacesuit:chestplate",
recipe = {
{"default:steel_ingot", "default:mese", "default:steel_ingot"},
{"default:steel_ingot", "wool:white", "default:steel_ingot"},
{"default:steel_ingot", "wool:white", "default:steel_ingot"}
},
})
minetest.register_craft({
output = "spacesuit:pants",
recipe = {
{"default:steel_ingot", "wool:white", "default:steel_ingot"},
{"default:steel_ingot", "wool:white", "default:steel_ingot"},
{"wool:white", "wool:white", "wool:white"}
},
})
minetest.register_craft({
output = "spacesuit:boots",
recipe = {
{"default:steel_ingot", "wool:white", "default:steel_ingot"},
{"default:steel_ingot", "wool:white", "default:steel_ingot"},
{"default:steel_ingot", "default:steelblock", "default:steel_ingot"},
},
})