summaryrefslogtreecommitdiff
path: root/groovy/postInit/oredicts.groovy
blob: 2439d832ef1113fd676d6c5b1263426b32271191 (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
for (i in [
	"ingotBronze",
	"nuggetBronze",
	"blockBronze",
	"gearBronze",
	"plateBronze",

	"ingotCopper",
	"nuggetCopper",
	"blockCopper",
	"gearCopper",
	"plateCopper",

	"ingotTin",
	"nuggetTin",
	"blockTin",
	"gearTin",
	"plateTin",

	"ingotLead",
	"nuggetLead",
	"blockLead",

	"ingotSilver",
	"blockSilver",

	"ingotRedAlloy"
]) {
	oreDict.removeAll(i);
	oreDict.add(i, metaitem(i));
}