scifi_nodes-cd2025/crafts.lua

52 lines
1.4 KiB
Lua
Raw Normal View History

2017-02-21 16:01:35 +05:30
--CRAFTING RECIPES FOR SCIFI NODES
2017-02-21 15:26:35 +05:30
2017-02-21 16:01:35 +05:30
--4 basic plastic from 9 homedecor plastic sheet
minetest.register_craft({
output = "scifi_nodes:white2 4",
recipe = {
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"},
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"},
{"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"}
}
})
--4 plastic wall from 4 plastic
minetest.register_craft({
2017-02-21 16:09:50 +05:30
output = "scifi_nodes:white 4",
recipe = {
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
{"", "", ""}
}
2017-02-21 16:01:35 +05:30
})
--4 white tile from 4 plastic
minetest.register_craft({
2017-02-21 16:09:50 +05:30
output = "scifi_nodes:tile 4",
2017-02-21 16:01:35 +05:30
recipe = {
2017-02-21 16:09:50 +05:30
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
2017-02-21 16:01:35 +05:30
{"", "", ""}
2017-02-21 16:09:50 +05:30
}
2017-02-21 16:01:35 +05:30
})
--4 white tile2 from 4 plastic
minetest.register_craft({
output = "scifi_nodes:whitetile 4",
recipe = {
2017-02-21 16:09:50 +05:30
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
2017-02-21 16:01:35 +05:30
{"", "", ""},
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
2017-02-21 16:09:50 +05:30
}
2017-02-21 16:01:35 +05:30
})
--4 white octagon from 4 plastic
minetest.register_craft({
2017-02-21 16:09:50 +05:30
output = "scifi_nodes:whiteoct 4",
recipe = {
{"", "scifi_nodes:white2", ""},
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
{"", "scifi_nodes:white2", ""}
}
2017-02-21 16:01:35 +05:30
})