forked from mtcontrib/scifi_nodes
Update crafts.lua
This commit is contained in:
parent
16b1e54996
commit
330da0206f
36
crafts.lua
36
crafts.lua
@ -12,40 +12,40 @@ minetest.register_craft({
|
|||||||
|
|
||||||
--4 plastic wall from 4 plastic
|
--4 plastic wall from 4 plastic
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "scifi_nodes:white 4",
|
output = "scifi_nodes:white 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
|
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
|
||||||
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
|
{"scifi_nodes:white2", "scifi_nodes:white2", ""},
|
||||||
{"", "", ""}
|
{"", "", ""}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--4 white tile from 4 plastic
|
--4 white tile from 4 plastic
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "scifi_nodes:whitetile 4",
|
output = "scifi_nodes:tile 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
{"", "", ""}
|
{"", "", ""}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--4 white tile2 from 4 plastic
|
--4 white tile2 from 4 plastic
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "scifi_nodes:whitetile 4",
|
output = "scifi_nodes:whitetile 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
{"", "", ""},
|
{"", "", ""},
|
||||||
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--4 white octagon from 4 plastic
|
--4 white octagon from 4 plastic
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "scifi_nodes:whitetile 4",
|
output = "scifi_nodes:whiteoct 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "scifi_nodes:white2", ""},
|
{"", "scifi_nodes:white2", ""},
|
||||||
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
|
||||||
{"", "scifi_nodes:white2", ""}
|
{"", "scifi_nodes:white2", ""}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user