summaryrefslogtreecommitdiff
path: root/groovy/postInit/disabled-items.groovy
blob: a065df030595f57e27f2f845b88dfec2ce87e7df (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
//Disable duplicate items from JEI
for (i in [
	//Iron dust
	item('appliedenergistics2:material', 49),
	item('enderio:item_material', 24),

	//Gold dust
	item('appliedenergistics2:material', 51),
	item('enderio:item_material', 25),

	//Diamond dust
	item('nuclearcraft:gem_dust'),

	//Coal dust
	item('enderio:item_material', 23),
	item('nuclearcraft:gem_dust', 7),

	//Obsidian dust
	item('enderio:item_material', 29),
	item('nuclearcraft:gem_dust', 3),

	//Lapis dust
	item('enderio:item_material', 32),

	//Ender pearl dust
	item('enderio:item_material', 28),
	item('appliedenergistics2:material', 46),

	//Quartz dust
	item('enderio:item_material', 33),
	item('nuclearcraft:gem_dust', 2),

	//End stone dust
	item('nuclearcraft:gem_dust', 11),

	//Arsenic dust
	item('nuclearcraft:gem_dust', 10),


	//Copper ingot
	item('forestry:ingot_copper'),
	item('nuclearcraft:ingot'),
	item('projectred-core:resource_item', 100),

	//Copper block
	item('forestry:resource_storage', 1),
	item('nuclearcraft:ingot_block'),

	//Copper dust
	item('nuclearcraft:dust'),
	item('enderio:item_material', 26),

	//Copper gear
	item('forestry:gear_copper'),

	//Tin ingot
	item('forestry:ingot_tin'),
	item('nuclearcraft:ingot', 1),
	item('projectred-core:resource_item', 101),

	//Tin block
	item('forestry:resource_storage', 2),
	item('nuclearcraft:ingot_block', 1),

	//Tin dust
	item('nuclearcraft:dust', 1),
	item('enderio:item_material', 27),

	//Tin gear
	item('forestry:gear_tin'),

	//Bronze ingot
	item('forestry:ingot_bronze'),
	item('nuclearcraft:alloy'),

	//Bronze block
	item('forestry:resource_storage', 3),

	//Bronze gear
	item('forestry:gear_bronze'),

	//Steel ingot
	item('nuclearcraft:alloy', 5),

	//Lead ingot
	item('nuclearcraft:ingot', 2),

	//Lead block
	item('nuclearcraft:ingot_block', 2),

	//Lead dust
	item('nuclearcraft:dust', 2),

	//Aluminium ingot
	item('nuclearcraft:ingot', 12),

	//Aluminium block
	item('nuclearcraft:ingot_block', 12),

	//Aluminium dust
	item('nuclearcraft:dust', 12),

	//Silver ingot
	item('nuclearcraft:ingot', 13),
	item('projectred-core:resource_item', 102),

	//Silver block
	item('nuclearcraft:ingot_block', 13),

	//Platinum ingot
	item('qmd:ingot', 10),

	//Platinum dust
	item('qmd:dust', 10),

	//Stainless steel ingot
	item('qmd:ingot_alloy', 2),

	//Beryllium ingot
	item('nuclearcraft:ingot', 9),

	//Beryllium dust
	item('nuclearcraft:dust', 9),

	//Manganese ingot
	item('nuclearcraft:ingot', 11),

	//Manganese block
	item('nuclearcraft:ingot_block', 11),

	//Manganese dust
	item('nuclearcraft:dust', 11),

	//Magnesium-diboride ingot
	item('nuclearcraft:alloy', 3),

	//Osmiridium ingot
	item('qmd:ingot_alloy', 4),

	//Red alloy ingot
	item('projectred-core:resource_item', 103),

	//Niobium-titanium ingot
	item('qmd:ingot_alloy', 3),

	//Nichrome ingot
	item('qmd:ingot_alloy', 5),

	//Iridium ingot
	item('qmd:ingot', 9),

	//Iridium dust
	item('qmd:dust', 9),

	//Titanium ingot
	item('qmd:ingot', 3),

	//Tungsten ingot
	item('qmd:ingot'),

	//Tungsten dust
	item('qmd:dust'),

	//Niobium ingot
	item('qmd:ingot', 1),

	//Niobium dust
	item('qmd:dust', 1),

	//Cobalt ingot
	item('qmd:ingot', 4),

	//Cobalt dust
	item('qmd:dust', 4),
	item('enderio:item_material', 31),

	//Nickel ingot
	item('qmd:ingot', 5),

	//Nickel dust
	item('qmd:dust', 5),

	//Zinc ingot
	item('qmd:ingot', 7),

	//Zinc dust
	item('qmd:dust', 7),

	//Yttrium ingot
	item('qmd:ingot2'),

	//Yttrium dust
	item('qmd:dust2'),

	//Neodymium ingot
	item('qmd:ingot2', 1),

	//Neodymium dust
	item('qmd:dust2', 1)
]) {
	mods.jei.ingredient.yeet(i);
}