mirror of
https://github.com/mt-mods/spacesuit.git
synced 2026-05-04 13:56:51 -06:00
modules
This commit is contained in:
+37
@@ -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"},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user