-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPam_39_s_Harvest_Craft.zs
More file actions
96 lines (87 loc) · 3.95 KB
/
Pam_39_s_Harvest_Craft.zs
File metadata and controls
96 lines (87 loc) · 3.95 KB
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
//Cutting Board
recipes.remove(<harvestcraft:cuttingboardItem>);
recipes.addShaped(<harvestcraft:cuttingboardItem>,
[[null, null, null],
[null, <gregtech:gt.metatool.01:36>, null],
[null, <ore:slabWood>, null]]);
//Saucepan
recipes.remove(<harvestcraft:saucepanItem>);
recipes.addShaped(<harvestcraft:saucepanItem>,
[[null, null, <gregtech:gt.meta.stick:260>],
[null, <gregtech:gt.meta.plate:260>, null],
[null, null, null]]);
//Bakeware
recipes.remove(<harvestcraft:bakewareItem>);
recipes.addShaped(<harvestcraft:bakewareItem>,
[[<minecraft:brick>, null, <minecraft:brick>],
[<minecraft:brick>, <minecraft:brick>, <minecraft:brick>],
[null, null, null]]);
//Pot
recipes.remove(<harvestcraft:potItem>);
recipes.addShaped(<harvestcraft:potItem>,
[[<gregtech:gt.meta.stick:260>, <gregtech:gt.meta.plate:260>, <gregtech:gt.meta.plate:260>],
[null, <gregtech:gt.meta.plate:260>, <gregtech:gt.meta.plate:260>],
[null, null, null]]);
//Skillet
recipes.remove(<harvestcraft:skilletItem>);
recipes.addShaped(<harvestcraft:skilletItem>,
[[null, null, <gregtech:gt.meta.plate:260>],
[null, <gregtech:gt.meta.plate:260>, null],
[<gregtech:gt.meta.stick:260>, null, null]]);
//Mortar and Pestle
recipes.remove(<harvestcraft:mortarandpestleItem>);
recipes.addShaped(<harvestcraft:mortarandpestleItem>,
[[null, null, null],
[<gregtech:gt.meta.plate:260>, <gregtech:gt.meta.stick:8222>, <gregtech:gt.meta.plate:260>],
[null, <gregtech:gt.meta.plate:260>, null]]);
//Presser
recipes.remove(<harvestcraft:presser>);
recipes.addShaped(<harvestcraft:presser>,
[[<gregtech:gt.meta.plate:260>, <minecraft:piston>, <gregtech:gt.meta.plate:260>],
[<gregtech:gt.meta.plate:260>, null, <gregtech:gt.meta.plate:260>],
[<gregtech:gt.meta.plate:260>, <minecraft:piston>, <gregtech:gt.meta.plate:260>]]);
//Oven
recipes.remove(<harvestcraft:oven>);
recipes.addShaped(<harvestcraft:oven>,
[[<gregtech:gt.meta.plate:260>, <minecraft:iron_bars>, <gregtech:gt.meta.plate:260>],
[<gregtech:gt.meta.plate:260>, <minecraft:furnace>, <gregtech:gt.meta.plate:260>],
[<gregtech:gt.meta.plate:260>, <gregtech:gt.meta.plate:260>, <gregtech:gt.meta.plate:260>]]);
//Apiary
recipes.remove(<harvestcraft:apiary>);
recipes.addShaped(<harvestcraft:apiary>,
[[<ore:plankWood>, <minecraft:trapdoor>, <ore:plankWood>],
[<ore:plankWood>, <ore:beeComb>, <ore:plankWood>],
[<ore:plankWood>, <minecraft:trapdoor>, <ore:plankWood>]]);
furnace.remove(<harvestcraft:ricecakeItem>);
furnace.remove(<minecraft:cooked_porkchop>);
//furnace.remove(<minecraft:cooked_fished>);
furnace.remove(<minecraft:cooked_fished:1>);
furnace.remove(<minecraft:cooked_beef>);
furnace.remove(<minecraft:cooked_chicken>);
furnace.remove(<minecraft:cooked_fished>);
furnace.remove(<harvestcraft:calamaricookedItem>);
furnace.remove(<harvestcraft:scallopcookedItem>);
furnace.remove(<harvestcraft:crayfishcookedItem>);
furnace.remove(<harvestcraft:crabcookedItem>);
furnace.remove(<harvestcraft:frogcookedItem>);
furnace.remove(<harvestcraft:turtlecookedItem>);
furnace.remove(<harvestcraft:clamcookedItem>);
furnace.remove(<harvestcraft:snailcookedItem>);
//furnace.remove(<harvestcraft:venisoncookedItem>);
//furnace.remove(<harvestcraft:turkeycookedItem>);
furnace.remove(<harvestcraft:muttoncookedItem>);
furnace.remove(<harvestcraft:octopuscookedItem>);
furnace.remove(<harvestcraft:shrimpcookedItem>);
furnace.remove(<harvestcraft:toastedcoconutItem>);
furnace.remove(<harvestcraft:grilledmushroomItem>);
furnace.remove(<harvestcraft:grilledasparagusItem>);
furnace.remove(<harvestcraft:roastedpumpkinseedsItem>);
furnace.remove(<harvestcraft:toastedsesameseedsItem>);
furnace.remove(<harvestcraft:popcornItem>);
furnace.remove(<harvestcraft:grilledeggplantItem>);
furnace.remove(<harvestcraft:vanillaItem>);
furnace.remove(<harvestcraft:bakedsweetpotatoItem>);
furnace.remove(<harvestcraft:roastedchestnutItem>);
furnace.remove(<minecraft:baked_potato>);
furnace.remove(<harvestcraft:raisinsItem>);
furnace.remove(<harvestcraft:toastItem>);