]> git.lizzy.rs Git - xdecor.git/blob - recipes.lua
Drop connected walls, alias them to new Minetest Game walls
[xdecor.git] / recipes.lua
1 minetest.register_craft({ 
2         output = "xdecor:baricade",
3         recipe = {
4                 {"group:stick", "", "group:stick"},
5                 {"", "default:steel_ingot", ""},
6                 {"group:stick", "", "group:stick"}
7         } 
8 })
9
10 minetest.register_craft({
11         output = "xdecor:barrel",
12         recipe = {
13                 {"group:wood", "group:wood", "group:wood"},
14                 {"default:iron_lump", "", "default:iron_lump"},
15                 {"group:wood", "group:wood", "group:wood"}
16         }
17 })
18
19 minetest.register_craft({
20         output = "xdecor:bowl 3",
21         recipe = {
22                 {"group:wood", "", "group:wood"},
23                 {"", "group:wood", ""}
24         }
25 })
26
27 minetest.register_craft({ 
28         output = "xdecor:candle",
29         recipe = {
30                 {"default:torch"}
31         } 
32 })
33
34 minetest.register_craft({
35         output = "xdecor:cabinet",
36         recipe = {
37                 {"group:wood", "group:wood", "group:wood"},
38                 {"doors:trapdoor", "", "doors:trapdoor"},
39                 {"group:wood", "group:wood", "group:wood"}
40         }
41 })
42
43 minetest.register_craft({
44         output = "xdecor:cabinet_half 2",
45         recipe = {
46                 {"xdecor:cabinet"}
47         }
48 })
49
50 minetest.register_craft({ 
51         output = "realchess:chessboard",
52         recipe = {
53                 {"dye:black", "dye:white", "dye:black"},
54                 {"stairs:slab_wood", "stairs:slab_wood", "stairs:slab_wood"}
55         } 
56 })
57
58 minetest.register_craft({ 
59         output = "xdecor:crafting_guide",
60         type = "shapeless",
61         recipe = {"default:book"}
62 })
63
64 minetest.register_craft({
65         output = "xdecor:cushion 3",
66         recipe = {
67                 {"wool:red", "wool:red", "wool:red"}
68         }
69 })
70
71 minetest.register_craft({
72         output = "xdecor:cauldron_empty",
73         recipe = {
74                 {"default:iron_lump", "", "default:iron_lump"},
75                 {"default:iron_lump", "", "default:iron_lump"},
76                 {"default:iron_lump", "default:iron_lump", "default:iron_lump"}
77         }
78 })
79
80 minetest.register_craft({
81         output = "xdecor:chair",
82         recipe = {
83                 {"group:stick", "", ""},
84                 {"group:stick", "group:stick", "group:stick"},
85                 {"group:stick", "", "group:stick"}
86         }
87 })
88
89 minetest.register_craft({
90         output = "xdecor:coalstone_tile 4",
91         recipe = {
92                 {"default:coalblock", "default:stone"},
93                 {"default:stone", "default:coalblock"}
94         }
95 })
96
97 minetest.register_craft({
98         output = "xdecor:cobweb",
99         recipe = {
100                 {"farming:cotton", "", "farming:cotton"},
101                 {"", "farming:cotton", ""},
102                 {"farming:cotton", "", "farming:cotton"}
103         }
104 })
105
106 minetest.register_craft({
107         output = "xdecor:desertstone_tile",
108         recipe = {
109                 {"default:desert_cobble", "default:desert_cobble"},
110                 {"default:desert_cobble", "default:desert_cobble"}
111         }
112 })
113         
114 minetest.register_craft({
115         output = "xdecor:empty_shelf",
116         recipe = {
117                 {"group:wood", "group:wood", "group:wood"},
118                 {"", "", ""},
119                 {"group:wood", "group:wood", "group:wood"}
120         }
121 })
122
123 minetest.register_craft({
124         output = "xdecor:enderchest",
125         recipe = {
126                 {"", "default:obsidian", ""},
127                 {"default:obsidian", "default:chest", "default:obsidian"},
128                 {"", "default:obsidian", ""}
129         }
130 })
131
132 minetest.register_craft({
133         output = "xdecor:enchantment_table",
134         recipe = {
135                 {"", "default:book", ""},
136                 {"default:diamond", "default:obsidian", "default:diamond"},
137                 {"default:obsidian", "default:obsidian", "default:obsidian"}
138         }
139 })
140
141 minetest.register_craft({
142         output = "xdecor:flint_steel",
143         recipe = {
144                 {"default:obsidian_shard", "default:steel_ingot"}
145         }
146 })
147
148 minetest.register_craft({
149         output = "xdecor:frame",
150         recipe = {
151                 {"group:stick", "group:stick", "group:stick"},
152                 {"group:stick", "default:paper", "group:stick"},
153                 {"group:stick", "group:stick", "group:stick"}
154         }
155 })
156         
157 minetest.register_craft({
158         output = "xdecor:hammer",
159         recipe = {
160                 {"default:steel_ingot", "group:stick", "default:steel_ingot"},
161                 {"", "group:stick", ""}
162         }
163 })
164
165 minetest.register_craft({
166         output = "xdecor:hard_clay",
167         recipe = {
168                 {"default:clay", "default:clay"},
169                 {"default:clay", "default:clay"}
170         }
171 })
172
173 minetest.register_craft({
174         output = "xdecor:hive",
175         recipe = {
176                 {"group:stick", "group:stick", "group:stick"},
177                 {"default:paper", "default:paper", "default:paper"},
178                 {"group:stick", "group:stick", "group:stick"}
179         }
180 })
181
182 minetest.register_craft({
183         output = "xdecor:iron_lightbox",
184         recipe = {
185                 {"xpanes:bar", "default:torch", "xpanes:bar"},
186                 {"xpanes:bar", "default:glass", "xpanes:bar"},
187                 {"xpanes:bar", "default:torch", "xpanes:bar"}
188         }
189 })
190
191 minetest.register_craft({
192         output = "xdecor:ivy 4",
193         recipe = {
194                 {"group:leaves"},
195                 {"group:leaves"}
196         }
197 })
198         
199 minetest.register_craft({
200         output = "xdecor:lantern",
201         recipe = {
202                 {"default:iron_lump"},
203                 {"default:torch"},
204                 {"default:iron_lump"}
205         }
206 })
207
208 minetest.register_craft({
209         output = "xdecor:lever_off",
210         recipe = {
211                 {"group:stick"},
212                 {"group:stone"}
213         }
214 })
215
216 minetest.register_craft({
217         output = "xdecor:mailbox",
218         recipe = {
219                 {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
220                 {"dye:red", "default:paper", "dye:red"},
221                 {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}
222         }
223 })
224
225 minetest.register_craft({
226         output = "xdecor:multishelf",
227         recipe = {
228                 {"group:wood", "group:wood", "group:wood"},
229                 {"group:vessel", "group:book", "group:vessel"},
230                 {"group:wood", "group:wood", "group:wood"}
231         }
232 })
233
234 minetest.register_craft({
235         output = "xdecor:packed_ice",
236         recipe = {
237                 {"default:ice", "default:ice"},
238                 {"default:ice", "default:ice"}
239         }
240 })
241
242 minetest.register_craft({
243         output = "xdecor:painting_1",
244         recipe = {
245                 {"default:sign_wall_wood", "dye:blue"}
246         }
247 })
248
249 minetest.register_craft({
250         output = "xdecor:pressure_stone_off",
251         type = "shapeless",
252         recipe = {"group:stone", "group:stone"}
253 })
254
255 minetest.register_craft({
256         output = "xdecor:pressure_wooden_off",
257         type = "shapeless",
258         recipe = {"group:wood", "group:wood"}
259 })
260
261 minetest.register_craft({
262         output = "xdecor:rope",
263         recipe = {
264                 {"farming:string"},
265                 {"farming:string"},
266                 {"farming:string"}
267         }
268 })
269         
270 minetest.register_craft({
271         output = "xdecor:stone_tile 2",
272         recipe = {
273                 {"default:cobble", "default:cobble"},
274                 {"default:cobble", "default:cobble"}
275         }
276 })
277         
278 minetest.register_craft({
279         output = "xdecor:stone_rune 4",
280         recipe = {
281                 {"default:stone", "default:stone", "default:stone"},
282                 {"default:stone", "", "default:stone"},
283                 {"default:stone", "default:stone", "default:stone"}
284         }
285 })
286
287 minetest.register_craft({
288         output = "xdecor:stonepath 16",
289         recipe = {
290                 {"stairs:slab_cobble", "", "stairs:slab_cobble"},
291                 {"", "stairs:slab_cobble", ""},
292                 {"stairs:slab_cobble", "", "stairs:slab_cobble"}
293         }
294 })
295
296 minetest.register_craft({
297         output = "xdecor:table",
298         recipe = {
299                 {"stairs:slab_wood", "stairs:slab_wood", "stairs:slab_wood"},
300                 {"", "group:stick", ""},
301                 {"", "group:stick", ""}
302         }
303 })
304
305 minetest.register_craft({ 
306         output = "xdecor:tatami",
307         recipe = {
308                 {"farming:wheat", "farming:wheat", "farming:wheat"}
309         } 
310 })
311
312 minetest.register_craft({
313         output = "xdecor:tv",
314         recipe = {
315                 {"default:steel_ingot", "default:copper_ingot", "default:steel_ingot"},
316                 {"default:steel_ingot", "default:glass", "default:steel_ingot"},
317                 {"default:steel_ingot", "default:copper_ingot", "default:steel_ingot"}
318         }
319 })
320
321 minetest.register_craft({
322         output = "xdecor:workbench",
323         recipe = {
324                 {"group:wood", "group:wood"},
325                 {"group:wood", "group:wood"}
326         }
327 })
328         
329 minetest.register_craft({
330         output = "xdecor:woodframed_glass",
331         recipe = {
332                 {"group:stick", "group:stick", "group:stick"},
333                 {"group:stick", "default:glass", "group:stick"},
334                 {"group:stick", "group:stick", "group:stick"}
335         }
336 })
337
338 minetest.register_craft({
339         output = "xdecor:wood_tile 2",
340         recipe = {
341                 {"", "group:wood", ""},
342                 {"group:wood", "", "group:wood"},
343                 {"", "group:wood", ""}
344         }
345 })
346
347 minetest.register_craft({
348         output = "xdecor:wooden_lightbox",
349         recipe = {
350                 {"group:stick", "default:torch", "group:stick"},
351                 {"group:stick", "default:glass", "group:stick"},
352                 {"group:stick", "default:torch", "group:stick"}
353         }
354 })
355