mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2024-12-22 16:10:18 +01:00
Update crafts.lua
This commit is contained in:
parent
3405404aff
commit
16b1e54996
50
crafts.lua
50
crafts.lua
@ -1 +1,51 @@
|
|||||||
|
--CRAFTING RECIPES FOR SCIFI NODES
|
||||||
|
|
||||||
|
--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({
|
||||||
|
output = "scifi_nodes:white 4",
|
||||||
|
recipe = {
|
||||||
|
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
|
||||||
|
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
|
||||||
|
{"", "", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
--4 white tile from 4 plastic
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "scifi_nodes:whitetile 4",
|
||||||
|
recipe = {
|
||||||
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
|
{"", "", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
--4 white tile2 from 4 plastic
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "scifi_nodes:whitetile 4",
|
||||||
|
recipe = {
|
||||||
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
|
{"", "", ""},
|
||||||
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
--4 white octagon from 4 plastic
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "scifi_nodes:whitetile 4",
|
||||||
|
recipe = {
|
||||||
|
{"", "scifi_nodes:white2", ""},
|
||||||
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
|
{"", "scifi_nodes:white2", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user