11//Created by DreamMasterXXL
2+ // --- Edited by *error user name found* ---
23
3- //remove Recipes
4+ // --- Variables ---
5+ val Torch = < minecraft :torch > ;
6+ val CarpentersBlock = < CarpentersBlocks :blockCarpentersBlock > ;
7+ val Slope = < CarpentersBlocks :blockCarpentersSlope > ;
8+
9+ // remove Recipes
10+
11+ // --- Chest
12+ recipes . remove(Chest);
13+
14+ // --- Fence
15+ recipes . remove(Fence);
16+
17+ // --- Fence Gate
18+ recipes . remove(FenceGate);
19+
20+ // --- Piston
21+ recipes . remove(Piston);
422
523//Chisel
624recipes . remove(< CarpentersBlocks :itemCarpentersChisel > );
@@ -29,49 +47,136 @@ recipes.remove(<CarpentersBlocks:blockCarpentersGarageDoor>);
2947recipes . addShaped(< CarpentersBlocks :itemCarpentersChisel > , [
3048[null , null , < ore :toolHeadSawIron > ],
3149[null , < ore :stickIron > , null ],
32- [< CarpentersBlocks : blockCarpentersBlock > ,null , null ]]);
50+ [CarpentersBlock , null , null ]]);
3351//Hammer
3452recipes . addShaped(< CarpentersBlocks :itemCarpentersHammer > , [
3553[null , null , < ore :toolHeadHammerIron > ],
3654[null , < ore :stickIron > , null ],
37- [< CarpentersBlocks :blockCarpentersBlock > , null , null ]]);
38- //Torch
39- recipes . addShaped(< CarpentersBlocks :blockCarpentersTorch > *8 , [
40- [< minecraft :coal:* > , null , null ],
41- [< CarpentersBlocks :blockCarpentersBlock > , null , null ],
42- [< CarpentersBlocks :blockCarpentersBlock > , null , null ]]);
55+ [CarpentersBlock, null , null ]]);
56+
57+ // Torch
58+ recipes . addShaped(< CarpentersBlocks :blockCarpentersTorch > * 8 , [
59+ [Torch, Torch, Torch],
60+ [Torch, CarpentersBlock, Torch],
61+ [Torch, Torch, Torch]]);
62+
4363//Carpenters Tile
4464recipes . addShaped(< CarpentersBlocks :itemCarpentersTile > *6 , [
4565[< minecraft :hardened_clay > , < minecraft :hardened_clay > , < minecraft :hardened_clay > ],
46- [< CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > ],
66+ [CarpentersBlock, CarpentersBlock, CarpentersBlock ],
4767[null , null , null ]]);
4868
4969//Safe
5070recipes . addShaped(< CarpentersBlocks :blockCarpentersSafe > , [
51- [< CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > ],
52- [< CarpentersBlocks : blockCarpentersBlock > , < ore :craftingSafe > , < CarpentersBlocks : blockCarpentersBlock > ],
53- [< CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > ]]);
71+ [CarpentersBlock, CarpentersBlock, CarpentersBlock ],
72+ [CarpentersBlock , < ore :craftingSafe > , CarpentersBlock ],
73+ [CarpentersBlock, CarpentersBlock, CarpentersBlock ]]);
5474
5575//Barrier
5676recipes . addShaped(< CarpentersBlocks :blockCarpentersBarrier > * 4 , [
57- [< CarpentersBlocks : blockCarpentersBlock > , < ore :stickWood > , < CarpentersBlocks : blockCarpentersBlock > ],
58- [< CarpentersBlocks : blockCarpentersBlock > , < ore :stickWood > , < CarpentersBlocks : blockCarpentersBlock > ],
59- [< CarpentersBlocks : blockCarpentersBlock > , null , < CarpentersBlocks : blockCarpentersBlock > ]]);
77+ [CarpentersBlock , < ore :stickWood > , CarpentersBlock ],
78+ [CarpentersBlock , < ore :stickWood > , CarpentersBlock ],
79+ [CarpentersBlock , null , CarpentersBlock ]]);
6080
6181//Ladder
6282recipes . addShaped(< CarpentersBlocks :blockCarpentersLadder > * 2 , [
63- [< CarpentersBlocks : blockCarpentersBlock > , < ore :stickWood > , < CarpentersBlocks : blockCarpentersBlock > ],
64- [< CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > ],
65- [< CarpentersBlocks : blockCarpentersBlock > , < ore :stickWood > , < CarpentersBlocks : blockCarpentersBlock > ]]);
83+ [CarpentersBlock , < ore :stickWood > , CarpentersBlock ],
84+ [CarpentersBlock, CarpentersBlock, CarpentersBlock ],
85+ [CarpentersBlock , < ore :stickWood > , CarpentersBlock ]]);
6686
6787//Daylight Detector
6888recipes . addShaped(< CarpentersBlocks :blockCarpentersDaylightSensor > , [
6989[< ore :wireGt01RedAlloy > , < minecraft :daylight_detector > , < ore :wireGt01RedAlloy > ],
7090[< ore :wireGt01RedAlloy > , < ore :plateLapis > , < ore :wireGt01RedAlloy > ],
71- [< CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > , < CarpentersBlocks : blockCarpentersBlock > ]]);
91+ [CarpentersBlock, CarpentersBlock, CarpentersBlock ]]);
7292
7393//Garage Door
7494recipes . addShaped(< CarpentersBlocks :blockCarpentersGarageDoor > * 5 , [
75- [< CarpentersBlocks :blockCarpentersBlock > , < ore :ringIron > , < CarpentersBlocks :blockCarpentersBlock > ],
76- [< ore :ringIron > , < CarpentersBlocks :blockCarpentersBlock > , < ore :ringIron > ],
77- [< CarpentersBlocks :blockCarpentersBlock > , < ore :ringIron > , < CarpentersBlocks :blockCarpentersBlock > ]]);
95+ [CarpentersBlock, < ore :ringIron > , CarpentersBlock],
96+ [< ore :ringIron > , CarpentersBlock, < ore :ringIron > ],
97+ [CarpentersBlock, < ore :ringIron > , CarpentersBlock]]);
98+
99+ // --- Crafting Table
100+ recipes . addShaped(CraftingTable, [
101+ [CarpentersBlock, CarpentersBlock],
102+ [CarpentersBlock, CarpentersBlock]]);
103+
104+ // --- Chest
105+ recipes . addShaped(Chest, [
106+ [Slope, CarpentersBlock, CarpentersBlock],
107+ [CarpentersBlock, IronScrew, CarpentersBlock],
108+ [CarpentersBlock, CarpentersBlock, CarpentersBlock]]);
109+ //-from MC.zs
110+ recipes . addShaped(Chest, [
111+ [Log, Plank, Log],
112+ [Plank, Flint, Plank],
113+ [Log, Plank, Log]]);
114+
115+ // --- Fence
116+ recipes . addShaped(Fence * 2 , [
117+ [null , null , null ],
118+ [Stick, CarpentersBlock, Stick],
119+ [Stick, CarpentersBlock, Stick]]);
120+ // -
121+ recipes . addShaped(Fence * 4 , [
122+ [IronScrew, Screwdriver, IronScrew],
123+ [Stick, CarpentersBlock, Stick],
124+ [Stick, CarpentersBlock, Stick]]);
125+ // -
126+ recipes . addShaped(Fence * 6 , [
127+ [SteelScrew, Screwdriver, SteelScrew],
128+ [Stick, CarpentersBlock, Stick],
129+ [Stick, CarpentersBlock, Stick]]);
130+ // -from MC.zs
131+ recipes . addShaped(Fence, [
132+ [null , null , null ],
133+ [Stick, Plank, Stick],
134+ [Stick, Plank, Stick]]);
135+ // -
136+ recipes . addShaped(Fence * 2 , [
137+ [IronScrew, Screwdriver, IronScrew],
138+ [Stick, Plank, Stick],
139+ [Stick, Plank, Stick]]);
140+ // -
141+ recipes . addShaped(Fence * 4 , [
142+ [SteelScrew, Screwdriver, SteelScrew],
143+ [Stick, Plank, Stick],
144+ [Stick, Plank, Stick]]);
145+
146+
147+ // --- Fence Gate
148+ recipes . addShaped(FenceGate * 2 , [
149+ [null , null , null ],
150+ [CarpentersBlock, Stick, CarpentersBlock],
151+ [CarpentersBlock, Stick, CarpentersBlock]]);
152+ // -
153+ recipes . addShaped(FenceGate * 4 , [
154+ [IronScrew, Screwdriver, IronScrew],
155+ [CarpentersBlock, Stick, CarpentersBlock],
156+ [CarpentersBlock, Stick, CarpentersBlock]]);
157+ // -
158+ recipes . addShaped(FenceGate * 6 , [
159+ [SteelScrew, Screwdriver, SteelScrew],
160+ [CarpentersBlock, Stick, CarpentersBlock],
161+ [CarpentersBlock, Stick, CarpentersBlock]]);
162+ // -from MC.zs
163+ recipes . addShaped(FenceGate, [
164+ [Flint, null , Flint],
165+ [Plank, Stick, Plank],
166+ [Plank, Stick, Plank]]);
167+ // -
168+ recipes . addShaped(FenceGate * 2 , [
169+ [IronScrew, Screwdriver, IronScrew],
170+ [Plank, Stick, Plank],
171+ [Plank, Stick, Plank]]);
172+ // -
173+ recipes . addShaped(FenceGate * 4 , [
174+ [SteelScrew, Screwdriver, SteelScrew],
175+ [Plank, Stick, Plank],
176+ [Plank, Stick, Plank]]);
177+
178+ // --- Piston
179+ recipes . addShaped(Piston, [
180+ [CarpentersBlock, CarpentersBlock, CarpentersBlock],
181+ [IronScrew, IronPlate, IronScrew],
182+ // [WoodGear, RedAlloyWire, WoodGear]]);
0 commit comments