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
|
//Disable duplicate items from JEI
for (i in [
//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),
//Aluminium ingot
item('nuclearcraft:ingot', 12),
//Aluminium block
item('nuclearcraft:ingot_block', 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),
//Stainless steel ingot
item('qmd:ingot_alloy', 2),
//Beryllium ingot
item('nuclearcraft:ingot', 9),
//Manganese ingot
item('nuclearcraft:ingot', 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),
//Titanium ingot
item('qmd:ingot', 3)
]) {
mods.jei.ingredient.yeet(i);
}
|