forked from Eternal-Snowstorm/CodeNameCIM2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobal.js
More file actions
631 lines (619 loc) · 17.8 KB
/
Global.js
File metadata and controls
631 lines (619 loc) · 17.8 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
// priority: 100
let $TinkerTags$Items =
Java.loadClass("slimeknights.tconstruct.common.TinkerTags$Items")
// 整合包状态
let modPackState = "Beta"
// 是否为热修复版本
let isHotfix = false
// Modpack数字版本号
let modpackNumberVersion = "2.5.0"
/*
* Modpack总版本
* 根据是否为热修复版本, 生成不同的版本号并保存到global并被读取
*/
if (isHotfix) {
global.modPackMainVersion = `§0CMI ${modPackState}-${modpackNumberVersion}-hf`
} else {
global.modPackMainVersion = `§0CMI ${modPackState}-${modpackNumberVersion}`
}
// 输出查看
console.log(global.modPackMainVersion)
// 桶容量
global.BUCKET_CAPACITY = 1000
// 扳手Tag
global.WRENCH_PICKUP = "create:wrench_pickup"
/**
* 设定全局开发人员名单
* @type {string[]}
*/
global.debugUserName = [
"Qi_Month",
"EternalSnowstorm",
"Re_Construction",
"117458866249",
"Ye_Anqing",
"KEYboardManDesu",
"oooooooo_zane",
"Flash_Yi"
]
/**
* 挖掘等级
*
* @type {{ [key: any]: ResourceLocation_ }}
*/
global.MiningLevel = {
wooden: "minecraft:needs_wooden_tool",
stone: "minecraft:needs_stone_tool",
iron: "minecraft:needs_iron_tool",
gold: "forge:needs_gold_tool",
diamond: "minecraft:needs_diamond_tool",
nether: "forge:needs_netherite_tool"
}
/**
* 挖掘工具类型
*
* @type {{ [key: any]: ResourceLocation_ }}
*/
global.ToolType = {
sword: "forge:mineable/sword",
pickaxe: "minecraft:mineable/pickaxe",
axe: "minecraft:mineable/axe",
shovel: "minecraft:mineable/shovel",
hoe: "minecraft:mineable/hoe"
}
/**
* 所有染料颜色
*
* @type {string[]}
*/
global.dyeColorGroup = [
"black",
"blue",
"brown",
"cyan",
"gray",
"green",
"light_blue",
"light_gray",
"lime",
"magenta",
"orange",
"pink",
"purple",
"red",
"white",
"yellow"
]
// /**
// * 所有废弃流体
// *
// * @type {string[]}
// */
// global.wasteFluid = [
// "thermal_extra:gasoline"
// ]
/**
* 所有构件
*
* @type {string[]}
*/
global.mechanismGroup = [
"wooden",
"stone",
"iron",
"nature",
"pig_iron",
"potion",
"colorful",
"enchanted",
"nether",
"sculk",
"ender",
"copper",
"andesite",
"bronze",
"railway",
"light_engineering",
"heavy_engineering",
"coil",
"smart",
"cobalt",
"photosensitive",
"thermal",
"reinforced",
"gold",
"basic_mekanism",
"advanced_mekanism",
"elite_mekanism",
"ultimate_mekanism",
"computing",
"air_tight",
"tier_1_aviation",
"tier_2_aviation",
"tier_3_aviation",
"tier_4_aviation",
"nuclear",
"antimatter",
"creative",
]
/**
* 所有金属(用于兼容性配方)
* @type {string[]}
*/
global.metalGroup = [
"andesite_alloy",
"tungsten_steel",
"aluminum",
"brass",
"bronze",
"cobalt",
"constantan",
"copper",
"cast_iron",
"electrum",
"gold",
"invar",
"iron",
"siltsteel",
"lead",
"lumium",
"netherite",
"nickel",
"osmium",
"signalum",
"silver",
"steel",
"tin",
"zinc",
"rose_gold",
"hepatizon",
"manyullyn",
"amethyst_bronze",
"vanadium",
"chromium",
"enderium",
"platinum",
"uranium",
"desh",
"ostrum",
"calorite",
"prismalium",
"melodium",
"stellarium",
"soul_infused",
"shellite",
"twinite",
"dragonsteel",
"abyssal",
"stainless_steel",
"slimesteel",
"pig_iron",
"cinderslime",
"queens_slime",
"industrial_iron",
"refined_obsidian",
"refined_glowstone",
"magnesium",
"sodium",
"potassium",
"calcium",
"tungsten",
"etrium",
"scarlet_neodymium",
"azure_neodymium",
"shadow_steel",
"refined_radiance",
"quantum_alloy",
"titanium"
]
/**
* 各金属的熔点(单位C°)
*
* null = 虚构金属, 熔点为随意设定值
*
* 熔炉1000
* 高炉, 热力电炉1500
* 车窑, 电弧炉2000
* Mek熔炉全部可熔炼
*
* @type {{ [key: string]: number }}
*/
global.meltingPoints = {
"andesite_alloy": 760, // null
"tungsten_steel": 2524,
"aluminum": 660,
"brass": 930,
"bronze": 820,
"cobalt": 1495,
"constantan": 1200,
"copper": 1085,
"cast_iron": 1200,
"electrum": 1060,
"gold": 1064,
"invar": 1425,
"iron": 1535,
"siltsteel": 1386, // null
"lead": 327,
"lumium": 993, // null
"netherite": 2042, // null
"nickel": 1455,
"osmium": 3033,
"signalum": 1231, // null
"silver": 962,
"steel": 1370,
"tin": 232,
"zinc": 419,
"rose_gold": 960,
"hepatizon": 990, // null
"manyullyn": 1617, // null
"amethyst_bronze": 1043, // null
"tungsten": 3410,
"vanadium": 1910,
"chromium": 1907,
"enderium": 1501, // null
"platinum": 1768,
"uranium": 1132,
"desh": 3094, // null
"ostrum": 3687, // null
"calorite": 4003, // null
"prismalium": 1741, // null
"melodium": 1755, // null
"stellarium": 1873, // null
"soul_infused": 1901, // null
"shellite": 1562, // null
"twinite": 1671, // null
"dragonsteel": 2115, // null
"abyssal": 1953, // null
"stainless_steel": 1510,
"slimesteel": 1098, // null
"pig_iron": 1145,
"cinderslime": 1288, // null
"queens_slime": 1193, // null
"industrial_iron": 1507, // null
"refined_obsidian": 1413, // null
"refined_glowstone": 943, // null
"magnesium": 650,
"sodium": 98,
"potassium": 64,
"calcium": 842,
"etrium": 1486, //null
"azure_neodymium": 1024, // null
"scarlet_neodymium": 1024, // null
"shadow_steel": 2106, // null
"refined_radiance": 2106, // null
"titanium": 1668,
}
/**
* 命名空间
* v代表该材料是由TIC本体添加的
* t代表该材料是由热力工匠添加的
* c代表该材料是由制作组自定义的
* n代表无此材料
*
* @type {{ [key:string]: string }}
*/
global.materialNamespace = {
"andesite_alloy": "c",
"tungsten_steel": "c",
"aluminum": "v",
"brass": "c",
"bronze": "v",
"cobalt": "v",
"constantan": "v",
"copper": "v",
"cast_iron": "c",
"electrum": "v",
"gold": "v",
"invar": "n",
"iron": "v",
"siltsteel": "n",
"lead": "v",
"lumium": "t",
"netherite": "v",
"nickel": "n",
"osmium": "v",
"signalum": "t",
"silver": "v",
"steel": "v",
"tin": "n",
"zinc": "v",
"rose_gold": "v",
"hepatizon": "v",
"manyullyn": "v",
"amethyst_bronze": "v",
"vanadium": "n",
"chromium": "n",
"enderium": "t",
"platinum": "n",
"uranium": "v",
"desh": "c",
"ostrum": "c",
"calorite": "c",
"prismalium": "t",
"melodium": "t",
"stellarium": "t",
"soul_infused": "t",
"shellite": "t",
"twinite": "t",
"dragonsteel": "t",
"abyssal": "t",
"stainless_steel": "c",
"slimesteel": "v",
"pig_iron": "v",
"cinderslime": "v",
"queens_slime": "v",
"industrial_iron": "c",
"refined_obsidian": "v",
"refined_glowstone": "t",
"magnesium": "c",
"sodium": "c",
"potassium": "c",
"calcium": "c",
"tungsten": "v",
"azure_neodymium": "c",
"scarlet_neodymium": "c",
"shadow_steel": "c",
"refined_radiance": "c",
"titanium": "c"
}
/**
* 熔炉等级: 不同熔炼设备可处理的金属集合
* key 可以是数值(表示温度上限)或 "above"(2000C°以上)
* @type {{ [key: number]: string[] }}
*/
global.meltingLevels = {
1000: [
"lead",
"tin",
"zinc",
"sodium",
"potassium",
"calcium",
"aluminum",
"magnesium",
"brass",
"bronze",
"silver",
"rose_gold",
"lumium",
"hepatizon",
"electrum",
"gold",
"copper",
],
1500: [
"uranium",
"pig_iron",
"refined_obsidian",
"siltsteel",
"constantan",
"andesite_alloy",
"cast_iron",
"queens_slime",
"signalum",
"invar",
"nickel",
"cobalt",
"industrial_iron",
"shellite",
"enderium",
"steel",
"slimesteel",
"cinderslime",
"stainless_steel",
"iron",
"etrium",
"azure_neodymium",
"scarlet_neodymium",
],
2000: [
"titanium",
"manyullyn",
"twinite",
"prismalium",
"melodium",
"platinum",
"stellarium",
"vanadium",
"chromium",
"soul_infused",
"abyssal",
"amethyst_bronze",
"tungsten_steel"
],
"above": [
"osmium",
"desh",
"tungsten",
"ostrum",
"calorite",
"netherite",
"dragonsteel",
"shadow_steel",
"refined_radiance"
]
}
/**
* @type {string[]} 燃料列表
*/
global.fuelList = [
"minecraft:lava",
"ad_astra:cryo_fuel",
"cmi:delta_unstable_solution",
"ad_astra:fuel",
"thermal:crude_oil",
"createdieselgenerators:crude_oil",
"ad_astra:oil",
"thermal:refined_fuel",
"cmi:turbid_waste_liquid",
"tconstruct:blazing_blood",
"immersiveengineering:ethanol",
"immersiveengineering:plantoil",
"immersiveengineering:creosote",
"createdieselgenerators:ethanol",
"createdieselgenerators:plant_oil",
"createdieselgenerators:biodiesel",
"createdieselgenerators:diesel",
"createdieselgenerators:gasoline"
]
/**
* 燃料温度
* @type {{ [key: string]: number }}
*/
global.fuelTemperatures = {
"minecraft:lava": 1346,
"ad_astra:cryo_fuel": 4225,
"cmi:delta_unstable_solution": 1206,
"ad_astra:fuel": 1417,
"thermal:crude_oil": 1220,
"createdieselgenerators:crude_oil": 1220,
"ad_astra:oil": 1220,
"thermal:refined_fuel": 2041,
"cmi:turbid_waste_liquid": 1189,
"tconstruct:blazing_blood": 2638,
"immersiveengineering:ethanol": 1132,
"createdieselgenerators:ethanol": 1132,
"createdieselgenerators:plant_oil": 1027,
"immersiveengineering:plantoil": 1027,
"createdieselgenerators:biodiesel": 1636,
"createdieselgenerators:diesel": 2113,
"createdieselgenerators:gasoline": 2043,
"immersiveengineering:creosote": 1300
}
/**
* 匠魂物品标签
*
* @type {{ [key: any]: string }}
*/
global.TinkerItemTags = {
STAFFS: $TinkerTags$Items.STAFFS.location().toString(),
RED_SAND_CASTS: $TinkerTags$Items.RED_SAND_CASTS.location().toString(),
BOOK_ARMOR: $TinkerTags$Items.BOOK_ARMOR.location().toString(),
PATTERNS: $TinkerTags$Items.PATTERNS.location().toString(),
LOOT_CAPABLE_TOOL: $TinkerTags$Items.LOOT_CAPABLE_TOOL.location().toString(),
GOLDEN_ARMOR: $TinkerTags$Items.GOLDEN_ARMOR.location().toString(),
NUGGETS_NETHERITE: $TinkerTags$Items.NUGGETS_NETHERITE.location().toString(),
FOUNDRY_DEBUG: $TinkerTags$Items.FOUNDRY_DEBUG.location().toString(),
BLACKSTONE: $TinkerTags$Items.BLACKSTONE.location().toString(),
STONESHIELDS: $TinkerTags$Items.STONESHIELDS.location().toString(),
MULTIPART_TOOL: $TinkerTags$Items.MULTIPART_TOOL.location().toString(),
RAW_BLOCK_COBALT: $TinkerTags$Items.RAW_BLOCK_COBALT.location().toString(),
GENERAL_STRUCTURE_DEBUG: $TinkerTags$Items.GENERAL_STRUCTURE_DEBUG.location().toString(),
RANGED: $TinkerTags$Items.RANGED.location().toString(),
BARTERED_PARTS: $TinkerTags$Items.BARTERED_PARTS.location().toString(),
HARVEST_PRIMARY: $TinkerTags$Items.HARVEST_PRIMARY.location().toString(),
ORES_COBALT: $TinkerTags$Items.ORES_COBALT.location().toString(),
AUTOSMELT_BLACKLIST: $TinkerTags$Items.AUTOSMELT_BLACKLIST.location().toString(),
UNSALVAGABLE: $TinkerTags$Items.UNSALVAGABLE.location().toString(),
TABLES: $TinkerTags$Items.TABLES.location().toString(),
SEARED_BLOCKS: $TinkerTags$Items.SEARED_BLOCKS.location().toString(),
CONGEALED_SLIME: $TinkerTags$Items.CONGEALED_SLIME.location().toString(),
SMELTERY: $TinkerTags$Items.SMELTERY.location().toString(),
GLASS_PANES_SILICA: $TinkerTags$Items.GLASS_PANES_SILICA.location().toString(),
NUGGETS_NETHERITE_SCRAP: $TinkerTags$Items.NUGGETS_NETHERITE_SCRAP.location().toString(),
INTERACTABLE_ARMOR: $TinkerTags$Items.INTERACTABLE_ARMOR.location().toString(),
SLIMY_LOGS: $TinkerTags$Items.SLIMY_LOGS.location().toString(),
SHIELDS: $TinkerTags$Items.SHIELDS.location().toString(),
DEEPSLATE: $TinkerTags$Items.DEEPSLATE.location().toString(),
SEARED_BRICKS: $TinkerTags$Items.SEARED_BRICKS.location().toString(),
INTERACTABLE_DUAL: $TinkerTags$Items.INTERACTABLE_DUAL.location().toString(),
BLANK_SINGLE_USE_CASTS: $TinkerTags$Items.BLANK_SINGLE_USE_CASTS.location().toString(),
SLIMY_PLANKS: $TinkerTags$Items.SLIMY_PLANKS.location().toString(),
ANVIL_METAL: $TinkerTags$Items.ANVIL_METAL.location().toString(),
COPPER_PLATFORMS: $TinkerTags$Items.COPPER_PLATFORMS.location().toString(),
SPECIAL_TOOLS: $TinkerTags$Items.SPECIAL_TOOLS.location().toString(),
INTERACTABLE_CHARGE: $TinkerTags$Items.INTERACTABLE_CHARGE.location().toString(),
FOUNDRY: $TinkerTags$Items.FOUNDRY.location().toString(),
DEFAULT_PATTERNS: $TinkerTags$Items.DEFAULT_PATTERNS.location().toString(),
MELEE_PRIMARY: $TinkerTags$Items.MELEE_PRIMARY.location().toString(),
SMELTERY_DEBUG: $TinkerTags$Items.SMELTERY_DEBUG.location().toString(),
TRIM: $TinkerTags$Items.TRIM.location().toString(),
BOOTS: $TinkerTags$Items.BOOTS.location().toString(),
SCYTHES: $TinkerTags$Items.SCYTHES.location().toString(),
UNARMED: $TinkerTags$Items.UNARMED.location().toString(),
STONE_HARVEST: $TinkerTags$Items.STONE_HARVEST.location().toString(),
ANCIENT_TOOLS: $TinkerTags$Items.ANCIENT_TOOLS.location().toString(),
DYEABLE: $TinkerTags$Items.DYEABLE.location().toString(),
SLIMY_SAPLINGS: $TinkerTags$Items.SLIMY_SAPLINGS.location().toString(),
HELMETS: $TinkerTags$Items.HELMETS.location().toString(),
BONUS_SLOTS: $TinkerTags$Items.BONUS_SLOTS.location().toString(),
EMBELLISHMENT_WOOD: $TinkerTags$Items.EMBELLISHMENT_WOOD.location().toString(),
GUIDEBOOKS: $TinkerTags$Items.GUIDEBOOKS.location().toString(),
PARRY: $TinkerTags$Items.PARRY.location().toString(),
PROXY_TANK_BLACKLIST: $TinkerTags$Items.PROXY_TANK_BLACKLIST.location().toString(),
MIGHTY_ARMOR: $TinkerTags$Items.MIGHTY_ARMOR.location().toString(),
URANIUM_INGOTS: $TinkerTags$Items.URANIUM_INGOTS.location().toString(),
STONE: $TinkerTags$Items.STONE.location().toString(),
WORKSTATION_ROCK: $TinkerTags$Items.WORKSTATION_ROCK.location().toString(),
ENDERBARK_ROOTS: $TinkerTags$Items.ENDERBARK_ROOTS.location().toString(),
SLIMY_VINES: $TinkerTags$Items.SLIMY_VINES.location().toString(),
CHEST_PARTS: $TinkerTags$Items.CHEST_PARTS.location().toString(),
INTERACTABLE_RIGHT: $TinkerTags$Items.INTERACTABLE_RIGHT.location().toString(),
DIORITE: $TinkerTags$Items.DIORITE.location().toString(),
NON_SINGULAR_ORE_RATES: $TinkerTags$Items.NON_SINGULAR_ORE_RATES.location().toString(),
TABLE_EMPTY_CASTS: $TinkerTags$Items.TABLE_EMPTY_CASTS.location().toString(),
EMBELLISHMENT_SLIME: $TinkerTags$Items.EMBELLISHMENT_SLIME.location().toString(),
SLIME_BLOCK: $TinkerTags$Items.SLIME_BLOCK.location().toString(),
INGOTS_NETHERITE_SCRAP: $TinkerTags$Items.INGOTS_NETHERITE_SCRAP.location().toString(),
TRADER_TOOLS: $TinkerTags$Items.TRADER_TOOLS.location().toString(),
CROSSBOWS: $TinkerTags$Items.CROSSBOWS.location().toString(),
SEEDS: $TinkerTags$Items.SEEDS.location().toString(),
WITHER_BONES: $TinkerTags$Items.WITHER_BONES.location().toString(),
DURABILITY: $TinkerTags$Items.DURABILITY.location().toString(),
BOOKS: $TinkerTags$Items.BOOKS.location().toString(),
BASALT: $TinkerTags$Items.BASALT.location().toString(),
INTERACTABLE_LEFT: $TinkerTags$Items.INTERACTABLE_LEFT.location().toString(),
FANTASTIC_ARMOR: $TinkerTags$Items.FANTASTIC_ARMOR.location().toString(),
VARIANT_LOGS: $TinkerTags$Items.VARIANT_LOGS.location().toString(),
GRANITE: $TinkerTags$Items.GRANITE.location().toString(),
TINKERS_GUIDES: $TinkerTags$Items.TINKERS_GUIDES.location().toString(),
VARIANT_PLANKS: $TinkerTags$Items.VARIANT_PLANKS.location().toString(),
BASIN_EMPTY_CASTS: $TinkerTags$Items.BASIN_EMPTY_CASTS.location().toString(),
SEARED_TANKS: $TinkerTags$Items.SEARED_TANKS.location().toString(),
GADGETRY_ARMOR: $TinkerTags$Items.GADGETRY_ARMOR.location().toString(),
FOUNDRY_BRICKS: $TinkerTags$Items.FOUNDRY_BRICKS.location().toString(),
INTERACTABLE: $TinkerTags$Items.INTERACTABLE.location().toString(),
SMALL_TOOLS: $TinkerTags$Items.SMALL_TOOLS.location().toString(),
CHRYSOPHILITE_ORES: $TinkerTags$Items.CHRYSOPHILITE_ORES.location().toString(),
WORKBENCHES: $TinkerTags$Items.WORKBENCHES.location().toString(),
BOWS: $TinkerTags$Items.BOWS.location().toString(),
CASTS: $TinkerTags$Items.CASTS.location().toString(),
SAND_CASTS: $TinkerTags$Items.SAND_CASTS.location().toString(),
SLIMY_LEAVES: $TinkerTags$Items.SLIMY_LEAVES.location().toString(),
GOLD_CASTS: $TinkerTags$Items.GOLD_CASTS.location().toString(),
LEGGINGS: $TinkerTags$Items.LEGGINGS.location().toString(),
CHESTPLATES: $TinkerTags$Items.CHESTPLATES.location().toString(),
TANKS: $TinkerTags$Items.TANKS.location().toString(),
SCORCHED_TANKS: $TinkerTags$Items.SCORCHED_TANKS.location().toString(),
MODIFIABLE: $TinkerTags$Items.MODIFIABLE.location().toString(),
WORN_ARMOR: $TinkerTags$Items.WORN_ARMOR.location().toString(),
ANDESITE: $TinkerTags$Items.ANDESITE.location().toString(),
TOOL_INVENTORY_BLACKLIST: $TinkerTags$Items.TOOL_INVENTORY_BLACKLIST.location().toString(),
HELD: $TinkerTags$Items.HELD.location().toString(),
MELEE: $TinkerTags$Items.MELEE.location().toString(),
FIREBALLS: $TinkerTags$Items.FIREBALLS.location().toString(),
NUGGETS_COPPER: $TinkerTags$Items.NUGGETS_COPPER.location().toString(),
SPLASH_BOTTLE: $TinkerTags$Items.SPLASH_BOTTLE.location().toString(),
LONGBOWS: $TinkerTags$Items.LONGBOWS.location().toString(),
TOOL_PARTS: $TinkerTags$Items.TOOL_PARTS.location().toString(),
AOE: $TinkerTags$Items.AOE.location().toString(),
LINGERING_BOTTLE: $TinkerTags$Items.LINGERING_BOTTLE.location().toString(),
BASIC_ARMOR: $TinkerTags$Items.BASIC_ARMOR.location().toString(),
MULTI_USE_CASTS: $TinkerTags$Items.MULTI_USE_CASTS.location().toString(),
DUCT_CONTAINERS: $TinkerTags$Items.DUCT_CONTAINERS.location().toString(),
SLIMY_SEEDS: $TinkerTags$Items.SLIMY_SEEDS.location().toString(),
PLANKLIKE: $TinkerTags$Items.PLANKLIKE.location().toString(),
HARVEST: $TinkerTags$Items.HARVEST.location().toString(),
SCORCHED_BLOCKS: $TinkerTags$Items.SCORCHED_BLOCKS.location().toString(),
SINGLE_USE_CASTS: $TinkerTags$Items.SINGLE_USE_CASTS.location().toString(),
SINGLEPART_TOOL: $TinkerTags$Items.SINGLEPART_TOOL.location().toString(),
MELEE_WEAPON: $TinkerTags$Items.MELEE_WEAPON.location().toString(),
SMELTERY_BRICKS: $TinkerTags$Items.SMELTERY_BRICKS.location().toString(),
REUSABLE_PATTERNS: $TinkerTags$Items.REUSABLE_PATTERNS.location().toString(),
RAW_COBALT: $TinkerTags$Items.RAW_COBALT.location().toString(),
SWORD: $TinkerTags$Items.SWORD.location().toString(),
ARMOR: $TinkerTags$Items.ARMOR.location().toString(),
BROAD_TOOLS: $TinkerTags$Items.BROAD_TOOLS.location().toString(),
PUNY_ARMOR: $TinkerTags$Items.PUNY_ARMOR.location().toString(),
HELD_ARMOR: $TinkerTags$Items.HELD_ARMOR.location().toString(),
}