Add files via upload

New crafts.lua file with ongoing recipes
This commit is contained in:
Tanmaya Meher 2017-02-25 22:55:08 +05:30 committed by GitHub
parent a6fc6e04ef
commit a2747ecf19
1 changed files with 71 additions and 0 deletions

71
crafts.lua Normal file
View File

@ -0,0 +1,71 @@
-- CRAFTING RECIPES FOR SCIFI NODES
-- 6 basic plastic from 9 homedecor plastic sheet
minetest.register_craft({
output = "scifi_nodes:white2 6",
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"}
}
})
-- 6 plastic wall from 6 plastic
minetest.register_craft({
output = "scifi_nodes:white 6",
recipe = {
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"},
{"scifi_nodes:white2", "scifi_nodes:white2", "scifi_nodes:white2"}
}
})
-- 6 white tile from 6 plastic
minetest.register_craft({
output = "scifi_nodes:tile 6",
recipe = {
{"scifi_nodes:white2", "", "scifi_nodes:white2"},
{"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", ""},
{"", "", ""}
}
})
-- 8 white octagon from 8 plastic
minetest.register_craft({
output = "scifi_nodes:whiteoct 8",
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"}
}
})
-- 6 white wall base from 6 plastic and 3 black dye (because half is black not
-- full lol :P)
minetest.register_craft({
output = "scifi_nodes:white 6",
recipe = {
{"scifi_nodes:white2 2", "scifi_nodes:white2 2", "scifi_nodes:white2 2"},
{"dye:black", "dye:black", "dye:black"},
{"", "", ""}
}
})
-- 1 white keypad from 1 button and 1 plastic
minetest.register_craft({
output = "scifi_nodes:white_pad",
recipe = {
{"mesecons_button:button_off", "scifi_nodes:white2", ""},
{"", "", ""},
{"", "", ""}
}
})