summaryrefslogtreecommitdiff
path: root/computer/recipes.lua
blob: 51337adcb9f9de9064b1a839d8ff153ba5d61a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143

-- Copyright (C) 2012-2013 Diego Martínez <kaeza@users.sf.net>
-- License is WTFPL (see README.txt).

minetest.register_craft({
	output = "computer:shefriendSOO",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:glass", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "group:wood", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:slaystation",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "group:wood", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:vanio",
	recipe = {
		{ "homedecor:plastic_sheeting", "", "" },
		{ "default:glass", "", "" },
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:specter",
	recipe = {
		{ "", "", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:slaystation2",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:admiral64",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "group:wood", "group:wood", "group:wood" }
	}
})

minetest.register_craft({
	output = "computer:admiral128",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "default:steel_ingot", "default:steel_ingot", "default:steel_ingot" }
	}
})

minetest.register_craft({
	output = "computer:wee",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:copper_ingot", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:piepad",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:glass", "homedecor:plastic_sheeting" }
	}
})

--new stuff

minetest.register_craft({
	output = "computer:monitor",
	recipe = {
		{ "homedecor:plastic_sheeting", "default:glass","" },
		{ "homedecor:plastic_sheeting", "default:glass","" },
		{ "homedecor:plastic_sheeting", "default:mese_crystal_fragment", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:router",
	recipe = {
		{ "default:steel_ingot","","" },
		{ "default:steel_ingot" ,"homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
		{ "default:mese_crystal_fragment","homedecor:plastic_sheeting", "homedecor:plastic_sheeting"  }
	}
})

minetest.register_craft({
	output = "computer:tower",
	recipe = {
		{ "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:mese_crystal", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:printer",
	recipe = {
		{ "homedecor:plastic_sheeting", "default:steel_ingot","" },
		{ "homedecor:plastic_sheeting", "default:mese_crystal", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "default:coal_lump", "homedecor:plastic_sheeting" }
	}
})

minetest.register_craft({
	output = "computer:printer",
	recipe = {
		{ "homedecor:plastic_sheeting", "default:steel_ingot","" },
		{ "homedecor:plastic_sheeting", "default:mese_crystal", "homedecor:plastic_sheeting" },
		{ "homedecor:plastic_sheeting", "dye:black", "homedecor:plastic_sheeting", }
	}
})

minetest.register_craft({
	output = "computer:server",
	recipe = {
		{ "computer:tower", "computer:tower", "computer:tower", },
		{ "computer:tower", "computer:tower", "computer:tower" },
		{ "computer:tower", "computer:tower", "computer:tower" }
	}
})

minetest.register_craft({
	output = "computer:tetris_arcade",
	recipe = {
		{ "homedecor:plastic_sheeting", "homedecor:power_crystal", "homedecor:plastic_sheeting", },
		{ "dye:black", "default:glass", "dye:black" },
		{ "homedecor:plastic_sheeting", "homedecor:power_crystal", "homedecor:plastic_sheeting" }
	}
})