homedecor_modpack/computers/recipes.lua

142 lines
4.7 KiB
Lua
Raw Normal View History

2014-07-19 01:33:01 +02:00
-- Copyright (C) 2012-2013 Diego Martínez <kaeza@users.sf.net>
minetest.register_craft({
output = "computers:shefriendSOO",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:glass", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "group:wood", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:slaystation",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "group:wood", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:vanio",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "", "" },
{ "default:glass", "", "" },
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:specter",
recipe = {
2018-10-31 01:46:10 +01:00
{ "", "", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:slaystation2",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:steel_ingot", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:admiral64",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "group:wood", "group:wood", "group:wood" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:admiral128",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
2015-05-08 12:48:05 +02:00
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
}
})
2014-07-19 01:33:01 +02:00
2014-09-02 04:40:59 +02:00
minetest.register_craft({
output = "computers:wee",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:copper_ingot", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-09-02 04:40:59 +02:00
minetest.register_craft({
output = "computers:piepad",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:glass", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-09-02 04:40:59 +02:00
2014-07-19 01:33:01 +02:00
--new stuff
minetest.register_craft({
output = "computers:monitor",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "default:glass","" },
{ "basic_materials:plastic_sheet", "default:glass","" },
{ "basic_materials:plastic_sheet", "default:mese_crystal_fragment", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:router",
recipe = {
2015-05-08 12:48:05 +02:00
{ "default:steel_ingot","","" },
2018-10-31 01:46:10 +01:00
{ "default:steel_ingot" ,"basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
{ "default:mese_crystal_fragment","basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:tower",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "default:steel_ingot", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:mese_crystal", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:steel_ingot", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:printer",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "default:steel_ingot","" },
{ "basic_materials:plastic_sheet", "default:mese_crystal", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "default:coal_lump", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:printer",
recipe = {
2018-10-31 01:46:10 +01:00
{ "basic_materials:plastic_sheet", "default:steel_ingot","" },
{ "basic_materials:plastic_sheet", "default:mese_crystal", "basic_materials:plastic_sheet" },
{ "basic_materials:plastic_sheet", "dye:black", "basic_materials:plastic_sheet", }
2015-05-08 12:48:05 +02:00
}
})
2014-07-19 01:33:01 +02:00
minetest.register_craft({
output = "computers:server",
recipe = {
{ "computers:tower", "computers:tower", "computers:tower", },
{ "computers:tower", "computers:tower", "computers:tower" },
{ "computers:tower", "computers:tower", "computers:tower" }
2015-05-08 12:48:05 +02:00
}
})
minetest.register_craft({
output = "computers:tetris_arcade",
2015-05-08 12:48:05 +02:00
recipe = {
2020-09-15 15:20:08 +02:00
{ "basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet", },
2015-05-08 12:48:05 +02:00
{ "dye:black", "default:glass", "dye:black" },
2020-09-15 15:20:08 +02:00
{ "basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet" }
2015-05-08 12:48:05 +02:00
}
})