2020-10-26 17:38:53 +01:00
|
|
|
-- Copyright (C) 2012-2013 Diego Martínez <kaeza@users.sf.net>
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:shefriendSOO",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "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" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:slaystation",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "basic_materials:plastic_sheet", "group:wood", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:vanio",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "", "" },
|
|
|
|
{ "default:glass", "", "" },
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:specter",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "", "", "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" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:slaystation2",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "basic_materials:plastic_sheet", "default:steel_ingot", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:admiral64",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "group:wood", "group:wood", "group:wood" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:admiral128",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:wee",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "basic_materials:plastic_sheet", "default:copper_ingot", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:piepad",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "basic_materials:plastic_sheet", "default:glass", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--new stuff
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:monitor",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "default:glass","" },
|
|
|
|
{ "basic_materials:plastic_sheet", "default:glass","" },
|
|
|
|
{ "basic_materials:plastic_sheet", "default:mese_crystal_fragment", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:router",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "default:steel_ingot","","" },
|
|
|
|
{ "default:steel_ingot" ,"basic_materials:plastic_sheet", "basic_materials:plastic_sheet" },
|
|
|
|
{ "default:mese_crystal_fragment","basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:tower",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "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" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:printer",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "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" }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:printer",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "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", }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:server",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
2021-03-17 20:30:38 +01:00
|
|
|
{ "computers:tower", "computers:tower", "computers:tower", },
|
|
|
|
{ "computers:tower", "computers:tower", "computers:tower" },
|
|
|
|
{ "computers:tower", "computers:tower", "computers:tower" }
|
2020-10-26 17:38:53 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2021-03-17 20:30:38 +01:00
|
|
|
output = "computers:tetris_arcade",
|
2020-10-26 17:38:53 +01:00
|
|
|
recipe = {
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet", },
|
|
|
|
{ "dye:black", "default:glass", "dye:black" },
|
|
|
|
{ "basic_materials:plastic_sheet", "basic_materials:energy_crystal_simple", "basic_materials:plastic_sheet" }
|
|
|
|
}
|
|
|
|
})
|