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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
|
#Creative Tab Name
itemGroup.TecTech=TecTech Interdimensional
itemGroup.EM=TecTech Elemental Matter
#Blocks
tile.quantumStuff.name=Quantum Stuff
tile.Eye of Harmony Renderer.name=Eye of Harmony Renderer
tile.quantumGlass.name=Quantum Glass
tile.quantumGlass.desc.0=Dense yet transparent
tile.quantumGlass.desc.1=Glassy & Classy
tile.spatiallyTranscendentGravitationalLens.name=Spatially Transcendent Gravitational Lens Block
tile.godforgeGlass.desc.0=Gravitational lensing taken literal
tile.godforgeGlass.desc.1=GraviLens 9000!
tile.reactorSim.name=Reactor Simulator
tile.reactorSim.desc.0=Fission Reaction Uncertainty Resolver 9001
tile.reactorSim.desc.1=Explodes, but not as much...
#Items
item.em.programmer.name=AVR programmer
item.em.programmer.desc.0=Current PC
item.em.programmer.desc.1=Awoken
item.em.programmer.desc.2=Active
item.em.programmer.desc.3=Debug
item.em.programmer.desc.4=Delay
item.em.debugContainer.name=Debug EM Container
item.em.debugContainer.desc.0=Contains
item.em.debugContainer.desc.1=Container for elemental matter
item.em.debugContainer.desc.2=Right click on elemental hatches
item.em.debugContainer.desc.3=---Unexpected Termination---
item.em.definitionContainer.name=EM Recipe Hint
item.em.definitionContainer.desc.0=Should Contain
item.em.definitionContainer.desc.1=Recipe Hint
item.em.definitionContainer.desc.2=---Unexpected Termination---
item.em.definitionScanStorage.name=EM Scan Storage
item.em.definitionScanStorage.desc.0=Contains scan result
item.em.definitionScanStorage.desc.1=Use to read
item.em.definitionScanStorage.desc.2=Storage for matter scan data
item.em.definitionScanStorage.desc.3=---Unexpected Termination---
item.em.constructable.name=Multiblock Machine Blueprint
item.em.constructable.desc.0=Triggers Constructable Interface
item.em.constructable.desc.1=Shows multiblock construction details,
item.em.constructable.desc.2=just Use on a multiblock controller.
item.em.constructable.desc.3=(Sneak Use in creative to build)
item.em.constructable.desc.4=Quantity affects tier/mode/type
item.em.EuMeterGT.name=GT EU meter
item.em.EuMeterGT.desc.0=Measures basic EU related stuff
item.em.EuMeterGT.desc.1=Just right click on blocks.
item.em.frontRotate.name=Front Rotation Scrench
item.em.frontRotate.desc.0=Triggers Front Rotation Interface
item.em.frontRotate.desc.1=Rotates only the front panel,
item.em.frontRotate.desc.2=which allows structure rotation.
item.em.parametrizerMemoryCard.name=Parametrizer Memory Card
item.em.parametrizerMemoryCard.name.paste=Parametrizer Memory Card (Paste Mode)
item.em.parametrizerMemoryCard.name.copy=Parametrizer Memory Card (Copy Mode)
item.em.parametrizerMemoryCard.desc.0=Stores Parameters
item.em.parametrizerMemoryCard.desc.1=Use on Multiblock Controller to configure it
item.em.parametrizerMemoryCard.desc.2=Use on Multiblock Controller to store parameters
item.em.parametrizerMemoryCard.desc.3=Sneak right click to lock/unlock
item.tm.teslaCoilCapacitor.0.name=LV Tesla Capacitor
item.tm.teslaCoilCapacitor.1.name=MV Tesla Capacitor
item.tm.teslaCoilCapacitor.2.name=HV Tesla Capacitor
item.tm.teslaCoilCapacitor.3.name=EV Tesla Capacitor
item.tm.teslaCoilCapacitor.4.name=IV Tesla Capacitor
item.tm.teslaCoilCapacitor.5.name=LuV Tesla Capacitor
item.tm.teslaCoilCapacitor.6.name=ZPM Tesla Capacitor
item.tm.teslaCoilCapacitor.desc.0=Stores
item.tm.teslaCoilCapacitor.desc.1=EU in a tesla tower at
item.tm.teslaCoilCapacitor.desc.2=Yeet this broken item into some spicy water!
item.tm.teslaCoilCapacitor.desc.3=Insert into a Capacitor hatch of a Tesla Tower
item.tm.teslaCoilCapacitor.desc.4=Capacitors are the same thing as batteries, right?
item.tm.itemTeslaComponent.0.name=Electrum Tesla Windings
item.tm.itemTeslaComponent.1.name=Superconductive Tesla Windings
item.tm.itemTeslaComponent.desc=Tesla bois need these!
item.tm.teslaCover.0.name=Tesla Coil Cover
item.tm.teslaCover.1.name=Tesla Coil Cover Rich Edition
item.tm.teslaCover.desc.0=Tesla-Enables Machines!
item.tm.teslaCover.desc.1=Tesla-Enables Machines! (BUT LOUDER!!)
item.tm.teslaCover.desc.2=Yeet this broken item into some spicy water!
item.tm.teslaCover.desc.3=Use on top of a machine to enable Tesla capabilities
item.tm.teslaCover.desc.4=Who the hell uses cables anyway?
item.tm.teslaStaff.name=Tesla Staff
item.tm.teslaStaff.desc=Power of the gods, at the whim of a mortal!
item.tm.enderfluidlinkcover.name=Ender Fluid Link Cover
item.tm.enderfluidlinkcover.desc.0=Ender-Fluid-Enables Machines!
item.tm.enderfluidlinkcover.desc.1=Use on any side of a fluid tank to link it to the Ender
item.tm.enderfluidlinkcover.desc.2=Ender Tanks so are laggy -Bot from the Chads of NH
item.tm.powerpassupgradecover.name=Power Pass Upgrade Cover
item.tm.powerpassupgradecover.desc.0=Add power pass functionality to TecTech Multiblocks
item.tm.powerpassupgradecover.desc.1=Active transformer in a can??
item.tm.powerpassupgradecover.desc.2=Chain them up like Christmas lights!
item.tm.itemAstralArrayFabricator.name=Astral Array Fabricator
item.tm.itemAstralArrayFabricator.desc0=Parallel dimensions?!
item.tm.itemAstralArrayFabricator.desc1=Device capable of enhancing the Eye of Harmony's spatial compression,
item.tm.itemAstralArrayFabricator.desc2=reaching into the space beyond.
item.tm.itemAstralArrayFabricator.desc3=Allows for recipe parallelism.
#Death Messages
death.attack.microwaving=%1$s was dehydrated by radiation.
death.attack.microwaving.player=%1$s was dehydrated by radiation while fighting %2$s.
death.attack.elementalPollution=%1$s was vaping from the wrong hole.
death.attack.elementalPollution.player=%1$s was vaping from the wrong hole while fighting %2$s.
death.attack.subspace=%1$s was N-th dimensionally displeased.
death.attack.subspace.player=%1$s N-th dimensionally displeased while fighting %2$s.
#Machine hulls
gt.blockmachines.hull.tier.10.name=UEV Machine Hull
gt.blockmachines.hull.tier.11.name=UIV Machine Hull
gt.blockmachines.hull.tier.12.name=UMV Machine Hull
gt.blockmachines.hull.tier.13.name=UXV Machine Hull
gt.blockmachines.hull.tier.14.name=MAX Machine Hull
#Transformers
gt.blockmachines.wetransformer.tier.00.name=Ultra Low Voltage Power Transformer
gt.blockmachines.wetransformer.tier.00.desc=LV -> ULV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.01.name=Low Voltage Power Transformer
gt.blockmachines.wetransformer.tier.01.desc=MV -> LV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.02.name=Medium Voltage Power Transformer
gt.blockmachines.wetransformer.tier.02.desc=HV -> MV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.03.name=High Voltage Power Transformer
gt.blockmachines.wetransformer.tier.03.desc=EV -> HV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.04.name=Extreme Power Transformer
gt.blockmachines.wetransformer.tier.04.desc=IV -> EV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.05.name=Insane Power Transformer
gt.blockmachines.wetransformer.tier.05.desc=LuV -> IV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.06.name=Ludicrous Power Transformer
gt.blockmachines.wetransformer.tier.06.desc=ZPM -> LuV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.07.name=ZPM Voltage Power Transformer
gt.blockmachines.wetransformer.tier.07.desc=UV -> ZPM (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.08.name=Ultimate Power Transformer
gt.blockmachines.wetransformer.tier.08.desc=UHV -> UV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.09.name=Highly Ultimate Power Transformer
gt.blockmachines.wetransformer.tier.09.desc=UEV -> UHV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.10.name=Extremely Ultimate Power Transformer
gt.blockmachines.wetransformer.tier.10.desc=UIV -> UEV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.11.name=Insanely Ultimate Power Transformer
gt.blockmachines.wetransformer.tier.11.desc=UMV -> UIV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.12.name=Mega Ultimate Power Transformer
gt.blockmachines.wetransformer.tier.12.desc=UXV -> UMV (Use Soft Mallet to invert)
gt.blockmachines.wetransformer.tier.13.name=Extended Mega Ultimate Power Transformer
gt.blockmachines.wetransformer.tier.13.desc=MAX -> UXV (Use Soft Mallet to invert)
gt.blockmachines.tt.transformer.tier.09.name=Highly Ultimate Transformer
gt.blockmachines.tt.transformer.tier.09.desc=UEV -> UHV (Use Soft Mallet to invert)
gt.blockmachines.tt.transformer.tier.10.name=Extremely Ultimate Transformer
gt.blockmachines.tt.transformer.tier.10.desc=UIV -> UEV (Use Soft Mallet to invert)
gt.blockmachines.tt.transformer.tier.11.name=Insanely Ultimate Transformer
gt.blockmachines.tt.transformer.tier.11.desc=UMV -> UIV (Use Soft Mallet to invert)
gt.blockmachines.tt.transformer.tier.12.name=Mega Ultimate Transformer
gt.blockmachines.tt.transformer.tier.12.desc=UXV -> UMV (Use Soft Mallet to invert)
gt.blockmachines.tt.transformer.tier.13.name=Extended Mega Ultimate Transformer
gt.blockmachines.tt.transformer.tier.13.desc=MAX -> UXV (Use Soft Mallet to invert)
gt.blockmachines.transformer.ha.tier.09.name=Highly Ultimate Hi-Amp Transformer
gt.blockmachines.transformer.ha.tier.09.desc=UEV -> UHV (Use Soft Mallet to invert
gt.blockmachines.transformer.ha.tier.10.name=Extremely Ultimate Hi-Amp Transformer
gt.blockmachines.transformer.ha.tier.10.desc=UIV -> UEV (Use Soft Mallet to invert)
gt.blockmachines.transformer.ha.tier.11.name=Insanely Ultimate Hi-Amp Transformer
gt.blockmachines.transformer.ha.tier.11.desc=UMV -> UIV (Use Soft Mallet to invert)
gt.blockmachines.transformer.ha.tier.12.name=Mega Ultimate Hi-Amp Transformer
gt.blockmachines.transformer.ha.tier.12.desc=UXV -> UMV (Use Soft Mallet to invert)
gt.blockmachines.transformer.ha.tier.13.name=Extended Mega Ultimate Hi-Amp Transformer
gt.blockmachines.transformer.ha.tier.13.desc=MAX -> UXV (Use Soft Mallet to invert)
#Hatches
tt.base.emhatch.desc.0=Max stacks amount:
tt.base.emhatch.desc.1=Stack capacity:
tt.base.emhatch.desc.2=Place Overflow Hatch behind,on top or below
tt.base.emhatch.desc.3=to provide overflow protection while this block
tt.base.emhatch.desc.4=is not attached to multi block.
tt.base.emhatch.desc.5=Transport range can be extended in straight
tt.base.emhatch.desc.6=line up to 15 blocks with quantum tunnels.
tt.base.emhatch.desc.7=Must be painted to work
gt.blockmachines.hatch.emmuffler.tier.08.name=UV Overflow Output Hatch
gt.blockmachines.hatch.emmuffler.tier.09.name=UHV Overflow Output Hatch
gt.blockmachines.hatch.emmuffler.tier.10.name=UEV Overflow Output Hatch
gt.blockmachines.hatch.emmuffler.tier.11.name=UIV Overflow Output Hatch
gt.blockmachines.hatch.emmuffler.tier.12.name=UMV Overflow Output Hatch
gt.blockmachines.hatch.emmuffler.tier.13.name=UXV Overflow Output Hatch
gt.blockmachines.hatch.emmuffler.desc.0=Disposes excess elemental Matter
gt.blockmachines.hatch.emmuffler.desc.1=Mass capacity
gt.blockmachines.hatch.emmuffler.desc.2=Disposal Speed
gt.blockmachines.hatch.emmuffler.desc.3=DO NOT OBSTRUCT THE OUTPUT!
gt.blockmachines.hatch.energymulti04.tier.05.name=IV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.05.name=IV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.05.name=IV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.06.name=LuV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.06.name=LuV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.06.name=LuV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.07.name=ZPM 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.07.name=ZPM 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.07.name=ZPM 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.08.name=UV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.08.name=UV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.08.name=UV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.09.name=UHV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.09.name=UHV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.09.name=UHV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.10.name=UEV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.10.name=UEV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.10.name=UEV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.11.name=UIV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.11.name=UIV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.11.name=UIV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.12.name=UMV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.12.name=UMV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.12.name=UMV 64A Energy Hatch
gt.blockmachines.hatch.energymulti04.tier.13.name=UXV 4A Energy Hatch
gt.blockmachines.hatch.energymulti16.tier.13.name=UXV 16A Energy Hatch
gt.blockmachines.hatch.energymulti64.tier.13.name=UXV 64A Energy Hatch
gt.blockmachines.hatch.energymulti.desc.0=Multiple Ampere Energy Injector for Multiblocks
gt.blockmachines.hatch.energymulti.desc.1=Amperes In
gt.blockmachines.hatch.energymulti.desc.2=Accepts up to %d Amps from energy network
gt.blockmachines.hatch.energymulti.desc.3=Provides up to %d Amps to the multiblock
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.04=EV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.04=EV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.04=EV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.05=IV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.05=IV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.05=IV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.06=LuV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.06=LuV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.06=LuV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.07=ZPM 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.07=ZPM 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.07=ZPM 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.08=UV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.08=UV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.08=UV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.09=UHV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.09=UHV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.09=UHV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.10=UEV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.10=UEV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.10=UEV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.11=UIV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.11=UIV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.11=UIV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.12=UMV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.12=UMV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.12=UMV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.13=UXV 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.13=UXV 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.13=UXV 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.14=MAX 4A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.14=MAX 16A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.14=MAX 64A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.04.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.04.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.04.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.05.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.05.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.05.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.06.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.06.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.06.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.07.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.07.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.07.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.08.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.08.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.08.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.09.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.09.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.09.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.10.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.10.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.10.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.11.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.11.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.11.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.12.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.12.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.12.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.13.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.13.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.13.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti04.tier.14.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti16.tier.14.desc=Multi Amp Wireless Energy!
achievement.gt.blockmachines.hatch.energywirelessmulti64.tier.14.desc=Multi Amp Wireless Energy!
gt.blockmachines.hatch.energywirelesstunnel1.tier.13.name=UXV 256A Wireless Energy Hatch
gt.blockmachines.hatch.energywirelesstunnel2.tier.13.name=UXV 1,024A Wireless Energy Hatch
gt.blockmachines.hatch.energywirelesstunnel3.tier.13.name=UXV 4,096A Wireless Energy Hatch
gt.blockmachines.hatch.energywirelesstunnel4.tier.13.name=UXV 16,384A Wireless Energy Hatch
gt.blockmachines.hatch.energywirelesstunnel5.tier.13.name=UXV 65,536A Wireless Energy Hatch
gt.blockmachines.hatch.energywirelesstunnel6.tier.13.name=UXV 262,144A Wireless Energy Hatch
gt.blockmachines.hatch.energywirelesstunnel7.tier.13.name=UXV 1,048,576A Wireless Energy Hatch
achievement.gt.blockmachines.hatch.energywirelesstunnel1.tier.13.desc=High Amp Wireless Energy at last!
achievement.gt.blockmachines.hatch.energywirelesstunnel2.tier.13.desc=High Amp Wireless Energy at last!
achievement.gt.blockmachines.hatch.energywirelesstunnel3.tier.13.desc=High Amp Wireless Energy at last!
achievement.gt.blockmachines.hatch.energywirelesstunnel4.tier.13.desc=High Amp Wireless Energy at last!
achievement.gt.blockmachines.hatch.energywirelesstunnel5.tier.13.desc=High Amp Wireless Energy at last!
achievement.gt.blockmachines.hatch.energywirelesstunnel6.tier.13.desc=High Amp Wireless Energy at last!
achievement.gt.blockmachines.hatch.energywirelesstunnel7.tier.13.desc=High Amp Wireless Energy at last!
gt.blockmachines.hatch.energytunnel1.tier.05.name=IV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.05.name=IV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.05.name=IV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.05.name=IV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.05.name=IV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.05.name=IV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.05.name=IV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.06.name=LuV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.06.name=LuV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.06.name=LuV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.06.name=LuV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.06.name=LuV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.06.name=LuV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.06.name=LuV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.07.name=ZPM 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.07.name=ZPM 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.07.name=ZPM 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.07.name=ZPM 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.07.name=ZPM 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.07.name=ZPM 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.07.name=ZPM 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.08.name=UV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.08.name=UV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.08.name=UV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.08.name=UV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.08.name=UV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.08.name=UV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.08.name=UV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.09.name=UHV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.09.name=UHV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.09.name=UHV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.09.name=UHV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.09.name=UHV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.09.name=UHV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.09.name=UHV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.10.name=UEV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.10.name=UEV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.10.name=UEV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.10.name=UEV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.10.name=UEV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.10.name=UEV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.10.name=UEV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.11.name=UIV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.11.name=UIV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.11.name=UIV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.11.name=UIV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.11.name=UIV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.11.name=UIV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.11.name=UIV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.12.name=UMV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.12.name=UMV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.12.name=UMV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.12.name=UMV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.12.name=UMV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.12.name=UMV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.12.name=UMV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel1.tier.13.name=UXV 256A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel2.tier.13.name=UXV 1,024A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel3.tier.13.name=UXV 4,096A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel4.tier.13.name=UXV 16,384A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel5.tier.13.name=UXV 65,536A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel6.tier.13.name=UXV 262,144A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel7.tier.13.name=UXV 1,048,576A/t Laser Target Hatch
gt.blockmachines.hatch.energytunnel.tier.14.name=Legendary Laser Target Hatch
gt.blockmachines.hatch.energytunnel.desc.0=Energy injecting terminal for Multiblocks
gt.blockmachines.hatch.energytunnel.desc.1=Throughput
gt.blockmachines.hatch.dynamomulti04.tier.05.name=IV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.05.name=IV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.05.name=IV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.06.name=LuV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.06.name=LuV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.06.name=LuV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.07.name=ZPM 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.07.name=ZPM 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.07.name=ZPM 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.08.name=UV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.08.name=UV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.08.name=UV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.09.name=UHV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.09.name=UHV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.09.name=UHV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.10.name=UEV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.10.name=UEV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.10.name=UEV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.11.name=UIV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.11.name=UIV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.11.name=UIV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.12.name=UMV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.12.name=UMV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.12.name=UMV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti04.tier.13.name=UXV 4A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti16.tier.13.name=UXV 16A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti64.tier.13.name=UXV 64A Dynamo Hatch
gt.blockmachines.hatch.dynamomulti.desc.0=Multiple Ampere Energy Extractor for Multiblocks
gt.blockmachines.hatch.dynamomulti.desc.1=Amperes Out
gt.blockmachines.hatch.dynamotunnel1.tier.05.name=IV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.05.name=IV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.05.name=IV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.05.name=IV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.05.name=IV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.05.name=IV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.05.name=IV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.06.name=LuV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.06.name=LuV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.06.name=LuV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.06.name=LuV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.06.name=LuV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.06.name=LuV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.06.name=LuV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.07.name=ZPM 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.07.name=ZPM 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.07.name=ZPM 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.07.name=ZPM 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.07.name=ZPM 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.07.name=ZPM 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.07.name=ZPM 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.08.name=UV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.08.name=UV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.08.name=UV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.08.name=UV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.08.name=UV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.08.name=UV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.08.name=UV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.09.name=UHV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.09.name=UHV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.09.name=UHV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.09.name=UHV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.09.name=UHV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.09.name=UHV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.09.name=UHV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.10.name=UEV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.10.name=UEV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.10.name=UEV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.10.name=UEV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.10.name=UEV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.10.name=UEV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.10.name=UEV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.11.name=UIV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.11.name=UIV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.11.name=UIV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.11.name=UIV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.11.name=UIV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.11.name=UIV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.11.name=UIV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.12.name=UMV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.12.name=UMV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.12.name=UMV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.12.name=UMV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.12.name=UMV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.12.name=UMV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.12.name=UMV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel1.tier.13.name=UXV 256A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel2.tier.13.name=UXV 1,024A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel3.tier.13.name=UXV 4,096A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel4.tier.13.name=UXV 16,384A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel5.tier.13.name=UXV 65,536A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel6.tier.13.name=UXV 262,144A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel7.tier.13.name=UXV 1,048,576A/t Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel.tier.14.name=Legendary Laser Source Hatch
gt.blockmachines.hatch.dynamotunnel.desc.0=Energy extracting terminal for Multiblocks
gt.blockmachines.hatch.dynamotunnel.desc.1=Throughput
gt.blockmachines.hatch.screwdrivertooltip=Use screwdriver to adjust amperage
gt.blockmachines.emin.tier.08.name=UV Elemental Input Hatch
gt.blockmachines.emin.tier.09.name=UHV Elemental Input Hatch
gt.blockmachines.emin.tier.10.name=UEV Elemental Input Hatch
gt.blockmachines.emin.tier.11.name=UIV Elemental Input Hatch
gt.blockmachines.emin.tier.12.name=UMV Elemental Input Hatch
gt.blockmachines.emin.tier.13.name=UXV Elemental Input Hatch
gt.blockmachines.emin.desc=Elemental Input for Multiblocks
gt.blockmachines.emout.tier.08.name=UV Elemental Output Hatch
gt.blockmachines.emout.tier.09.name=UHV Elemental Output Hatch
gt.blockmachines.emout.tier.10.name=UEV Elemental Output Hatch
gt.blockmachines.emout.tier.11.name=UIV Elemental Output Hatch
gt.blockmachines.emout.tier.12.name=UMV Elemental Output Hatch
gt.blockmachines.emout.tier.13.name=UXV Elemental Output Hatch
gt.blockmachines.emout.desc=Elemental Output for Multiblocks
#TODO change tier.05 to tier.04
gt.blockmachines.hatch.param.tier.05.name=Parametrizer
gt.blockmachines.hatch.param.tier.07.name=Parametrizer X
gt.blockmachines.hatch.param.tier.10.name=Parametrizer tXt
gt.blockmachines.hatch.param.desc.0=For parametrization of Multiblocks
gt.blockmachines.hatch.param.desc.1=E=mine*craft
gt.blockmachines.hatch.certain.tier.07.name=Uncertainty Resolver
gt.blockmachines.hatch.certain.tier.10.name=Uncertainty Resolver X
gt.blockmachines.hatch.certain.desc.0=Feeling certain, or not?
gt.blockmachines.hatch.certain.desc.1=Schrödinger equation in a box
gt.blockmachines.hatch.datain.tier.07.name=Optical Reception Connector
gt.blockmachines.hatch.datain.desc.0=Quantum Data Input for Multiblocks
gt.blockmachines.hatch.datain.desc.1=High speed fibre optics connector.
gt.blockmachines.hatch.datain.desc.2=Must be painted to work
gt.blockmachines.hatch.dataout.tier.07.name=Optical Transmission Connector
gt.blockmachines.hatch.dataout.desc.0=Quantum Data Output for Multiblocks
gt.blockmachines.hatch.dataout.desc.1=High speed fibre optics connector.
gt.blockmachines.hatch.dataout.desc.2=Must be painted to work
gt.blockmachines.hatch.datainass.tier.07.name=Assembly line Reception Connector
gt.blockmachines.hatch.datainass.desc.0=ItemStack Data Input for Multiblocks
gt.blockmachines.hatch.datainass.desc.1=High speed fibre optics connector.
gt.blockmachines.hatch.datainass.desc.2=Must be painted to work
gt.blockmachines.hatch.datainasswireless.desc.0=Wireless ItemStack Data Input for Multiblocks
gt.blockmachines.hatch.datainasswireless.desc.1=High speed internet connection
gt.blockmachines.hatch.dataoutass.tier.07.name=Data Bank Transmission Connector
gt.blockmachines.hatch.dataoutass.desc.0=ItemStack Data Output for Multiblocks
gt.blockmachines.hatch.dataoutass.desc.1=High speed fibre optics connector.
gt.blockmachines.hatch.dataoutass.desc.2=Must be painted to work
gt.blockmachines.hatch.wirelessdataoutass.desc.0=Wireless ItemStack Data Output for Multiblocks
gt.blockmachines.hatch.wirelessdataoutass.desc.1=High speed internet connection
gt.blockmachines.hatch.rack.tier.08.name=Computer Rack
gt.blockmachines.hatch.rack.desc.0=4 Slot Rack
gt.blockmachines.hatch.rack.desc.1=Holds Computer Components
gt.blockmachines.hatch.holder.tier.09.name=Object Holder
gt.blockmachines.hatch.holder.desc.0=For Research Station
gt.blockmachines.hatch.holder.desc.1=Advanced Holding Mechanism!
gt.blockmachines.hatch.capacitor.tier.03.name=Capacitor Hatch
gt.blockmachines.hatch.capacitor.desc.0=For Tesla Tower
gt.blockmachines.hatch.capacitor.desc.1=Stores 'nergy! (for a while)
#Casings
gt.blockcasingsNH.10.name=UEV Machine Casing
gt.blockcasingsNH.11.name=UIV Machine Casing
gt.blockcasingsNH.12.name=UMV Machine Casing
gt.blockcasingsNH.13.name=UXV Machine Casing
gt.blockcasingsNH.14.name=MAX Machine Casing
gt.blockhintTT.desc.0=Helps while building
gt.blockhintTT.0.name=Hint 1 dot
gt.blockhintTT.1.name=Hint 2 dot
gt.blockhintTT.2.name=Hint 3 dot
gt.blockhintTT.3.name=Hint 4 dot
gt.blockhintTT.4.name=Hint 5 dot
gt.blockhintTT.5.name=Hint 6 dot
gt.blockhintTT.6.name=Hint 7 dot
gt.blockhintTT.7.name=Hint 8 dot
gt.blockhintTT.8.name=Hint 9 dot
gt.blockhintTT.9.name=Hint 10 dot
gt.blockhintTT.10.name=Hint 11 dot
gt.blockhintTT.11.name=Hint 12 dot
gt.blockhintTT.desc.1=Placeholder for a certain group.
gt.blockhintTT.12.name=Hint general
gt.blockhintTT.desc.2=General placeholder.
gt.blockhintTT.13.name=Hint air
gt.blockhintTT.desc.3=Make sure it contains Air material.
gt.blockhintTT.14.name=Hint no air
gt.blockhintTT.desc.4=Make sure it does not contain Air material.
gt.blockhintTT.15.name=Hint error
gt.blockhintTT.desc.5=ERROR, what did u expect?
gt.blockcasingsTT.0.name=High Power Casing
gt.blockcasingsTT.0.desc.0=Well suited for high power applications.
gt.blockcasingsTT.0.desc.1=The power levels are rising!
gt.blockcasingsTT.1.name=Computer Casing
gt.blockcasingsTT.1.desc.0=Nice and clean casing.
gt.blockcasingsTT.1.desc.1=Dust can break it!?
gt.3blockcasingsTT.2.name=Computer Heat Vent
gt.blockcasingsTT.2.desc.0=Air vent with a filter.
gt.blockcasingsTT.2.desc.1=Perfectly muffled sound!
gt.blockcasingsTT.3.name=Advanced Computer Casing
gt.blockcasingsTT.3.desc.0=Contains high bandwidth bus
gt.blockcasingsTT.3.desc.1=couple thousand qubits wide.
gt.blockcasingsTT.4.name=Molecular Casing
gt.blockcasingsTT.4.desc.0=Stops elemental things.
gt.blockcasingsTT.4.desc.1=Radiation and emotions too...
gt.blockcasingsTT.5.name=Advanced Molecular Casing
gt.blockcasingsTT.5.desc.0=Cooling and stabilization.
gt.blockcasingsTT.5.desc.1=A comfortable machine bed.
gt.blockcasingsTT.6.name=Containment Field Generator
gt.blockcasingsTT.6.desc.0=Creates a field that...
gt.blockcasingsTT.6.desc.1=can stop even force carriers.
gt.blockcasingsTT.7.name=Molecular Coil
gt.blockcasingsTT.7.desc.0=Well it does things too...
gt.blockcasingsTT.7.desc.1=[Use this coil!]
gt.blockcasingsTT.8.name=Hollow Casing
gt.blockcasingsTT.8.desc.0=Reinforced accelerator tunnel.
gt.blockcasingsTT.8.desc.1=Most advanced pipe ever.
gt.blockcasingsTT.9.name=Spacetime Altering Casing
gt.blockcasingsTT.9.desc.0=c is no longer the limit.
gt.blockcasingsTT.9.desc.1=Wibbly wobbly timey wimey stuff.
gt.blockcasingsTT.10.name=Teleportation Casing
gt.blockcasingsTT.10.desc.0=Remote connection.
gt.blockcasingsTT.10.desc.1=Better touch with a stick.
gt.blockcasingsTT.11.name=Dimensional Bridge Generator
gt.blockcasingsTT.11.desc.0=Interdimensional Operations.
gt.blockcasingsTT.11.desc.1=Around the universe and other places too.
gt.blockcasingsTT.12.name=Ultimate Molecular Casing
gt.blockcasingsTT.12.desc.0=Ultimate in every way.
gt.blockcasingsTT.12.desc.1=I don't know what it can't do.
gt.blockcasingsTT.13.name=Ultimate Advanced Molecular Casing
gt.blockcasingsTT.13.desc.0=More Ultimate in every way.
gt.blockcasingsTT.13.desc.1=I don't know what I am doing!
gt.blockcasingsTT.14.name=Ultimate Containment Field Generator
gt.blockcasingsTT.14.desc.0=Black Hole...
gt.blockcasingsTT.14.desc.1=Meh...
gt.blockcasingsTT.15.name=Debug Sides
gt.blockcasingsTT.15.desc.0=Lazy man way of determining sides.
gt.blockcasingsTT.15.desc.1=0, 1, 2, 3, 4, 5, 6?!
gt.blockcasingsBA0.0.name=Redstone Alloy Primary Tesla Windings
gt.blockcasingsBA0.1.name=MV Superconductor Primary Tesla Windings
gt.blockcasingsBA0.2.name=HV Superconductor Primary Tesla Windings
gt.blockcasingsBA0.3.name=EV Superconductor Primary Tesla Windings
gt.blockcasingsBA0.4.name=IV Superconductor Primary Tesla Windings
gt.blockcasingsBA0.5.name=LuV Superconductor Primary Tesla Windings
gt.blockcasingsBA0.9.name=ZPM Superconductor Primary Tesla Windings
gt.blockcasingsBA0.0.desc.0=Handles up to
gt.blockcasingsBA0.0.desc.1=What one man calls God, another calls the laws of physics.
gt.blockcasingsBA0.6.name=Tesla Base Casing
gt.blockcasingsBA0.6.desc.0=The base of a wondrous contraption
gt.blockcasingsBA0.6.desc.1=it's alive, IT'S ALIVE!
gt.blockcasingsBA0.7.name=Tesla Toroid Casing
gt.blockcasingsBA0.7.desc.0=Made out of the finest tin foil!
gt.blockcasingsBA0.7.desc.1=Faraday suits might come later
gt.blockcasingsBA0.8.name=Tesla Secondary Windings
gt.blockcasingsBA0.8.desc.0=Picks up power from a primary coil
gt.blockcasingsBA0.8.desc.1=Who wouldn't want a 32k epoxy multi?
#Multiblocks
gt.blockmachines.multimachine.em.transformer.name=Active Transformer
gt.blockmachines.multimachine.em.transformer.hint=1 - Energy IO Hatches or High Power Casing
gt.blockmachines.multimachine.em.transformer.desc.1=Can transform to and from any voltage
gt.blockmachines.multimachine.em.transformer.desc.2=Only 0.004% power loss, HAYO!
gt.blockmachines.multimachine.em.transformer.desc.3=Will explode if broken while running
gt.blockmachines.multimachine.tm.microwave.name=Microwave Grinder
gt.blockmachines.multimachine.tm.microwave.hint.0=1 - Classic Hatches or Clean Stainless Steel Casing
gt.blockmachines.multimachine.tm.microwave.hint.1=Also acts like a hopper so give it an Output Bus
gt.blockmachines.multimachine.tm.microwave.desc.0=Controller block of the Microwave Grinder
gt.blockmachines.multimachine.tm.microwave.desc.1=Starts a timer when enabled
gt.blockmachines.multimachine.tm.microwave.desc.2=While the timer is running anything inside the machine will take damage
gt.blockmachines.multimachine.tm.microwave.desc.3=The machine will also collect any items inside of it
gt.blockmachines.multimachine.tm.microwave.desc.4=Can be configured with a Parametrizer
gt.blockmachines.multimachine.tm.microwave.desc.5=(Do not insert a Wither)
gt.blockmachines.multimachine.tm.microwave.cfgi.0=Power setting
gt.blockmachines.multimachine.tm.microwave.cfgi.1=Timer setting
gt.blockmachines.multimachine.tm.microwave.cfgo.0=Timer value
gt.blockmachines.multimachine.tm.microwave.cfgo.1=Timer remaining
gt.blockmachines.multimachine.tm.teslaCoil.name=Tesla Tower
gt.blockmachines.multimachine.tm.teslaCoil.hint.0=1 - Classic Hatches, Capacitor Hatches or Tesla Base Casing
gt.blockmachines.multimachine.tm.teslaCoil.hint.1=2 - Titanium Frames
gt.blockmachines.multimachine.tm.teslaCoil.desc.0=Controller block of the Tesla Tower
gt.blockmachines.multimachine.tm.teslaCoil.desc.1=Used to transmit power to Tesla Coil Covers and Tesla Transceivers
gt.blockmachines.multimachine.tm.teslaCoil.desc.2=Can be fed with Helium/Nitrogen/Radon Plasma to increase the range
gt.blockmachines.multimachine.tm.teslaCoil.desc.3=Transmitted voltage depends on the used Tesla Capacitor tier
gt.blockmachines.multimachine.tm.teslaCoil.desc.4=Primary Tesla Windings need to be at least the same tier as the Tesla Capacitor
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.0=Hysteresis low setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.1=Hysteresis high setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.2=Tesla Towers transfer radius setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.3=Tesla Transceiver transfer radius setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.4=Tesla Ultimate Cover transfer radius setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.5=Output voltage setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.6=Output current setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.7=Scan time Min setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.8=Overdrive setting
gt.blockmachines.multimachine.tm.teslaCoil.cfgi.9=Unused
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.0=Tesla Towers transfer radius display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.1=Tesla Transceiver transfer radius display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.2=Tesla Ultimate Cover transfer radius display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.3=Output voltage display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.4=Output current display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.5=Energy Capacity display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.6=Energy Stored display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.7=Energy Fraction display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.8=Scan time display
gt.blockmachines.multimachine.tm.teslaCoil.cfgo.9=Output max display
gt.blockmachines.multimachine.em.switch.name=Network Switch With QoS
gt.blockmachines.multimachine.em.switch.hint.0=1 - Data Input/Output Hatches or Advanced computer casing
gt.blockmachines.multimachine.em.switch.hint.1=2 - Data Output Hatches or Computer casing
gt.blockmachines.multimachine.em.switch.desc.0=Controller block of the Network Switch With QoS
gt.blockmachines.multimachine.em.switch.desc.1=Routes and distributes computation
gt.blockmachines.multimachine.em.computer.name=Quantum Computer
gt.blockmachines.multimachine.em.computer.hint.0=1 - Classic/Data Hatches or Computer casing
gt.blockmachines.multimachine.em.computer.hint.1=2 - Rack Hatches or Advanced computer casing
gt.blockmachines.multimachine.em.computer.desc=You need it to process the number above
gt.blockmachines.multimachine.em.computer.cfgi.0=Overclock ratio
gt.blockmachines.multimachine.em.computer.cfgi.1=Overvoltage ratio
gt.blockmachines.multimachine.em.computer.cfgo.0=Current max. heat
gt.blockmachines.multimachine.em.computer.cfgo.1=Produced computation
gt.blockmachines.multimachine.em.computer.desc.0=Controller block of the Quantum Computer
gt.blockmachines.multimachine.em.computer.desc.1=Used to generate computation (and heat)
gt.blockmachines.multimachine.em.computer.desc.2=Use screwdriver to toggle wireless mode
gt.blockmachines.multimachine.em.databank.name=Data Bank
gt.blockmachines.multimachine.em.databank.hint.0=1 - Classic Hatches or high power casing
gt.blockmachines.multimachine.em.databank.hint.1=2 - Data Access/Data Bank Master Hatches or computer casing
gt.blockmachines.multimachine.em.databank.desc.0=Controller block of the Data Bank
gt.blockmachines.multimachine.em.databank.desc.1=Used to supply Assembly Lines with more Data Sticks
gt.blockmachines.multimachine.em.databank.desc.2=and give multiple Assembly Lines access to the same Data Stick
gt.blockmachines.multimachine.em.databank.desc.3=Use screwdriver to toggle wireless mode
gt.blockmachines.multimachine.em.junction.name=Matter Junction
gt.blockmachines.multimachine.em.junction.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.junction.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.junction.desc.0=Controller block of the Matter Junction
gt.blockmachines.multimachine.em.junction.desc.1=Used to route and distribute elemental matter
gt.blockmachines.multimachine.em.junction.desc.2=Needs a Parametrizer to be configured
gt.blockmachines.multimachine.em.mattertoem.name=Matter Quantizer
gt.blockmachines.multimachine.em.mattertoem.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.mattertoem.hint.1=2 - Elemental Output Hatch
gt.blockmachines.multimachine.em.mattertoem.hint.2=3 - Elemental Overflow Hatches or Molecular Casing
gt.blockmachines.multimachine.em.mattertoem.desc.0=Controller block of the Matter Quantizer
gt.blockmachines.multimachine.em.mattertoem.desc.1=Transforms items into their elemental form
gt.blockmachines.multimachine.em.emtomatter.name=Matter Dequantizer
gt.blockmachines.multimachine.em.emtomatter.hint.0=1 - Classic Hatches or High Power Casing"
gt.blockmachines.multimachine.em.emtomatter.hint.1=2 - Elemental Input Hatch
gt.blockmachines.multimachine.em.emtomatter.hint.2=3 - Elemental Overflow Hatches or Molecular Casing
gt.blockmachines.multimachine.em.emtomatter.desc.0=Controller block of the Matter Dequantizer
gt.blockmachines.multimachine.em.emtomatter.desc.1=Transforms elemental matter back into items
gt.blockmachines.multimachine.em.emtoessentia.name=Essentia Dequantizer
gt.blockmachines.multimachine.em.emtoessentia.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.emtoessentia.hint.1=2 - Elemental Input Hatch
gt.blockmachines.multimachine.em.emtoessentia.hint.2=3 - Elemental Overflow Hatches or Elemental Casing
gt.blockmachines.multimachine.em.emtoessentia.hint.3=General - Some sort of Essentia Storage
gt.blockmachines.multimachine.em.emtoessentia.desc.0=Controller block of the Essentia Dequantizer
gt.blockmachines.multimachine.em.emtoessentia.desc.1=Transforms elemental matter back into essentia
gt.blockmachines.multimachine.em.essentiatoem.name=Essentia Quantizer
gt.blockmachines.multimachine.em.essentiatoem.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.essentiatoem.hint.1=2 - Elemental Output Hatch
gt.blockmachines.multimachine.em.essentiatoem.hint.2=3 - Elemental Overflow Hatches or Elemental Casing
gt.blockmachines.multimachine.em.essentiatoem.hint.3=General - Some sort of Essentia Storage
gt.blockmachines.multimachine.em.essentiatoem.desc.0=Controller block of the Essentia Quantizer
gt.blockmachines.multimachine.em.essentiatoem.desc.1=Transforms essentia into their elemental form
gt.blockmachines.multimachine.em.scanner.name=Elemental Scanner
gt.blockmachines.multimachine.em.scanner.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.scanner.hint.1=2 - Elemental Input Hatches or Molecular Casing
gt.blockmachines.multimachine.em.scanner.hint.2=3 - Elemental Output Hatches or Molecular Casing
gt.blockmachines.multimachine.em.scanner.hint.3=4 - Elemental Overflow Hatches or Molecular Casing
gt.blockmachines.multimachine.em.scanner.desc.0=Controller block of the Elemental Scanner
gt.blockmachines.multimachine.em.research.type=Research Station, Scanner
gt.blockmachines.multimachine.em.research.hint.0=1 - Classic/Data Hatches or Computer casing
gt.blockmachines.multimachine.em.research.hint.1=2 - Holder Hatch
gt.blockmachines.multimachine.em.research.desc.1=Used to scan Data Sticks for Assembly Line Recipes
gt.blockmachines.multimachine.em.research.desc.2=Needs to be fed with computation to work
gt.blockmachines.multimachine.em.research.desc.3=Does not consume the item until the Data Stick is written
gt.blockmachines.multimachine.em.research.desc.4=Use screwdriver to change mode
gt.blockmachines.multimachine.em.research.mode.Assembly_line=Mode: Research Station
gt.blockmachines.multimachine.em.research.mode.Scanner=Mode: Scanner
gt.blockmachines.multimachine.em.collider.name=Matter Collider
gt.blockmachines.multimachine.em.collider.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.collider.hint.1=2 - Elemental Input Hatches or Molecular Casing
gt.blockmachines.multimachine.em.collider.hint.2=3 - Elemental Output Hatches or Molecular Casing
gt.blockmachines.multimachine.em.collider.hint.3=4 - Elemental Overflow Hatches or Molecular Casing
gt.blockmachines.multimachine.em.collider.hint.4=General - Another Controller facing opposite direction
gt.blockmachines.multimachine.em.collider.desc.0=Controller block of the Matter Collider
gt.blockmachines.multimachine.em.collider.desc.1=This machine needs a mirrored copy of it to work
gt.blockmachines.multimachine.em.collider.desc.2=One needs to be set to 'Fuse Mode' and the other to 'Collide Mode'
gt.blockmachines.multimachine.em.collider.desc.3=Fuses two elemental matter to create another (and power)
gt.blockmachines.multimachine.em.collider.mode.0=Mode: Fuse
gt.blockmachines.multimachine.em.collider.mode.1=Mode: Collide
gt.blockmachines.multimachine.em.collider.mode.2=Mode: Undefined
gt.blockmachines.multimachine.em.collider.mode.3=Currently Slaves...
gt.blockmachines.multimachine.em.collider.Structure.AdditionalCollider=Needs another Matter Collider that is mirrored to this one
gt.blockmachines.multimachine.em.infuser.name=Energy Infuser
gt.blockmachines.multimachine.em.infuser.hint=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.infuser.desc.0=Controller block of the Energy Infuser
gt.blockmachines.multimachine.em.infuser.desc.1=Can be used to charge items (lossless)
gt.blockmachines.multimachine.em.infuser.desc.2=Can be fed with UU-Matter to repair items
gt.blockmachines.multimachine.em.infuser.desc.3=Stocking Bus is not supported
gt.blockmachines.multimachine.em.infuser.Structure.HighPowerCasing=Layer 1 and 5
gt.blockmachines.multimachine.em.infuser.Structure.MolecularCoil=Layer 2 and 4
gt.blockmachines.multimachine.em.infuser.Structure.MolecularCasing=Layer 3
gt.blockmachines.multimachine.em.processing.name=Quantum Processing Machine
gt.blockmachines.multimachine.em.processing.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.processing.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.processing.desc.0=Controller block of the Quantum Processing machine
gt.blockmachines.multimachine.em.crafter.name=Matter Assembler
gt.blockmachines.multimachine.em.crafter.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.crafter.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.crafter.desc.0=Controller block of the Matter Assembler
gt.blockmachines.multimachine.em.stabilizer.name=Elemental Stabilizer
gt.blockmachines.multimachine.em.stabilizer.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.stabilizer.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.stabilizer.desc.0=Controller block of the Elemental Stabilizer
gt.blockmachines.multimachine.em.wormhole.name=Wormhole
gt.blockmachines.multimachine.em.wormhole.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.wormhole.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.wormhole.desc.0=Controller block of the Wormhole
gt.blockmachines.multimachine.em.decay.name=Decay Generator
gt.blockmachines.multimachine.em.decay.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.decay.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.decay.desc.0=Controller block of the Decay Generator
gt.blockmachines.multimachine.em.decay.desc.1=Decays elemental matter to generate power
gt.blockmachines.multimachine.em.decay.conf=Ampere divider
gt.blockmachines.multimachine.em.annihilation.name=Annihilation Generator
gt.blockmachines.multimachine.em.annihilation.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.annihilation.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.annihilation.desc.0=Controller block of the Annihilation Generator
gt.blockmachines.multimachine.em.blackholegenerator.name=Black Hole Generator
gt.blockmachines.multimachine.em.blackholegenerator.hint.0=1 - Classic Hatches or High Power Casing
gt.blockmachines.multimachine.em.blackholegenerator.hint.1=2 - Elemental Hatches or Molecular Casing
gt.blockmachines.multimachine.em.blackholegenerator.desc.0=Controller block of the Black Hole Generator
gt.blockmachines.multimachine.em.blackholegenerator.desc.1=Uses a black hole to generate power
# Eye of Harmony
achievement.gt.blockmachines.multimachine.em.eye_of_harmony=Eye of Harmony Controller
achievement.gt.blockcasingsBA0.12=Infinite Spacetime Energy Boundary Casing
gt.blockcasingsBA0.12.desc.0=Provides a stable bridge between spacetime regions.
achievement.gt.blockcasingsBA0.11=Reinforced Spatial Structure Casing
gt.blockcasingsBA0.11.desc.0=Designed to resist spatial shearing from internal volume expansion.
gt.blockcasingsBA0.11.desc.1=Can survive at least one big bang, maybe two...
achievement.gt.blockcasingsBA0.10=Reinforced Temporal Structure Casing
gt.blockcasingsBA0.10.desc.0=Resistant to temporal shearing from time dilation differences.
gt.blockcasingsBA0.10.desc.1=This block can last an eternity without any decay.
# Antimatter
gt.blockmachines.antimatterForge.name=Semi-Stable Antimatter Stabilization Sequencer
gt.blockmachines.antimatterGenerator.name=Shielded Lagrangian Annihilation Matrix
achievement.gt.spacetime_compression_field_generator.0=Crude Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.1=Primitive Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.2=Stable Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.3=Advanced Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.4=Superb Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.5=Exotic Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.6=Perfect Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.7=Tipler Spacetime Compression Field Generator
achievement.gt.spacetime_compression_field_generator.8=Gallifreyan Spacetime Compression Field Generator
achievement.gt.time_acceleration_field_generator.0=Crude Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.1=Primitive Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.2=Stable Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.3=Advanced Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.4=Superb Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.5=Exotic Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.6=Perfect Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.7=Tipler Time Dilation Field Generator
achievement.gt.time_acceleration_field_generator.8=Gallifreyan Time Dilation Field Generator
achievement.gt.stabilisation_field_generator.0=Crude Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.1=Primitive Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.2=Stable Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.3=Advanced Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.4=Superb Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.5=Exotic Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.6=Perfect Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.7=Tipler Stabilisation Field Generator
achievement.gt.stabilisation_field_generator.8=Gallifreyan Stabilisation Field Generator
# Forge of the Gods / Godforge
fog.upgrade.confirm=Construct
fog.upgrade.respec=Respec
fog.upgrade.tt.0=Forge of the Gods
fog.upgrade.tt.1=Improved Gravitational Convection Coils
fog.upgrade.tt.2=Spacetime Topology Expansion Modulator
fog.upgrade.tt.3=Cosmic Fuel Chamber Expansion
fog.upgrade.tt.4=Graviton-Induced Superconductivity System
fog.upgrade.tt.5=Fluid Dynamics Integration Module
fog.upgrade.tt.6=Superluminal Amplifier
fog.upgrade.tt.7=Gravitational Plasma Containment Inductor
fog.upgrade.tt.8=Relativistic Electron Capacitor
fog.upgrade.tt.9=Graviton Entanglement Modulator
fog.upgrade.tt.10=Closed Timelike Curve Disruption Device
fog.upgrade.tt.11=Quark-Gluon Plasma Isolation Unit
fog.upgrade.tt.12=Singularity Exposure Fuel Compression Process
fog.upgrade.tt.13=Transfinite Construction Techniques
fog.upgrade.tt.14=Gravitationally Guided Electron Beam Emitter
fog.upgrade.tt.15=Temporal Plasma Transformation Process
fog.upgrade.tt.16=Duplicity of Potency
fog.upgrade.tt.17=Critical Neutrino Tunnelling Integration
fog.upgrade.tt.18=Extreme Pulsar Exposure Chambers
fog.upgrade.tt.19=Internal Micro-Kugelblitz Generator
fog.upgrade.tt.20=Neutron Degeneracy Pressure Exposure
fog.upgrade.tt.21=Parity of Singularity
fog.upgrade.tt.22=Disparity of Rarity
fog.upgrade.tt.23=Null-Gravity Modulation Sheath
fog.upgrade.tt.24=Synthetic Element Decay Stabilization
fog.upgrade.tt.25=Paradoxical Attainment
fog.upgrade.tt.26=Cosmically Duplicate
fog.upgrade.tt.27=Transfinite Stellar Existence
fog.upgrade.tt.28=The Boundless Flow
fog.upgrade.tt.29=Effortless Existence
fog.upgrade.tt.30=Orion’s Arm Genesis Schema
fog.upgrade.tt.secret=Secret Upgrade
fog.upgrade.tt.short.0=START
fog.upgrade.tt.short.1=IGCC
fog.upgrade.tt.short.2=STEM
fog.upgrade.tt.short.3=CFCE
fog.upgrade.tt.short.4=GISS
fog.upgrade.tt.short.5=FDIM
fog.upgrade.tt.short.6=SA
fog.upgrade.tt.short.7=GPCI
fog.upgrade.tt.short.8=REC
fog.upgrade.tt.short.9=GEM
fog.upgrade.tt.short.10=CTCDD
fog.upgrade.tt.short.11=QGPIU
fog.upgrade.tt.short.12=SEFCP
fog.upgrade.tt.short.13=TCT
fog.upgrade.tt.short.14=GGEBE
fog.upgrade.tt.short.15=TPTP
fog.upgrade.tt.short.16=DoP
fog.upgrade.tt.short.17=CNTI
fog.upgrade.tt.short.18=EPEC
fog.upgrade.tt.short.19=IMKG
fog.upgrade.tt.short.20=NDPE
fog.upgrade.tt.short.21=PoS
fog.upgrade.tt.short.22=DoR
fog.upgrade.tt.short.23=NGMS
fog.upgrade.tt.short.24=SEDS
fog.upgrade.tt.short.25=PA
fog.upgrade.tt.short.26=CD
fog.upgrade.tt.short.27=TSE
fog.upgrade.tt.short.28=TBF
fog.upgrade.tt.short.29=EE
fog.upgrade.tt.short.30=END
fog.upgrade.tt.short.secret=SECRET
fog.upgrade.lore.0=The Forge of the Gods is an immensely powerful structure constructed around a stabilized neutron star – it is so advanced that its full capabilities are not yet understood. However, through continued use, one can slowly upgrade and expand the range of abilities of the Forge, and learn the power hidden in the most extreme parts of the universe: graviton shards. This esoteric material can only be found where conventional matter and degenerate neutronium crust matter on the surface of a neutron star meet. At this point in space, gravitons are far more common and irradiate this material mixture to create highly unstable graviton shards, which can be used to internally upgrade the Forge. While these shards cannot yet exist outside the extreme conditions of the Forge, with continued research and utilization it may be possible to eventually isolate and extract them outside the Forge – but for what purpose?
fog.upgrade.lore.1=The first major upgrade of the Forge of the Gods has allowed for greater processing speeds as the heat increases, thanks to the gravitational warping effects of graviton shards. This is the first of many applications of the shards, which will be discovered through continuous use of the Forge.
fog.upgrade.lore.2=Graviton shards warp the surface area of fuels used in the Forge, increasing efficiency as more material can be processed per unit of fuel. Graviton shards will prove crucial for further efficiency increases to offset the ever-increasing demands of the Forge.
fog.upgrade.lore.3=Through use of graviton shards, the space within the Forge’s fuel chambers can be increased, allowing for greater quantities of fuel to be burned, thus reaching higher temperatures. Don’t forget to reserve fuel to keep the star at the centre of the Forge alive.
fog.upgrade.lore.4=Graviton shards not only affect matter, but also energy: with high enough concentrations of stellar fuel, superconductivity is induced within the Forge purely through gravitational forces. What other properties could these Graviton shards hold?
fog.upgrade.lore.5=As usage of the Forge continues, more data on graviton shards is gathered. It has been found that they can stabilize the outputs of the Forge, allowing for the direct extraction of molten material while it is still close to the heart of the star.
fog.upgrade.lore.6=As stellar fuel consumption continues to increase the size and energy of the star, the amount of material that can be processed at once also increases. Graviton shards facilitate the manipulation of increased quantities of materials near the star in the core of the Forge.
fog.upgrade.lore.7=As understanding of graviton shards continues to improve, better control over the materials they manipulate can be achieved. Graviton shards provide an alternative to electromagnetic containment of plasma using spacetime manipulation instead, allowing the Forge to directly output processed materials as plasma.
fog.upgrade.lore.8=Adding graviton shards to the Forge’s internal energy storage allows for greater quantities of energy stored in a smaller area. By increasing energy density to relativistic levels, the Forge can be run more efficiently as the electrical potential continues to increase.
fog.upgrade.lore.9=Simply adding more graviton shards to the fuel chamber continues to amplify the ability for the Forge to consume increased quantities of stellar fuel. It even benefits from graviton shards invested in different parts of the Forge entirely – it seems shards exhibit quantum entanglement-like properties.
fog.upgrade.lore.10=Increasing the concentration of graviton shards near the material processing regions of the Forge warps spacetime so significantly that it manipulates materials from the causal future and past. This essentially doubles the material input capacity and processing capabilities.
fog.upgrade.lore.11=Using large quantities of graviton shards creates regions of space so extreme that exotic forms of matter can exist with far greater stability than usual. Unfortunately, this region is so extreme that it is essentially spatially disconnected from the rest of the Forge, unable to utilize existing upgrades to the structure and its other modules.
fog.upgrade.lore.12=Exposure to graviton-induced micro black holes can further compress stellar fuel, increasing its ability to fuel the star at the centre of the Forge through higher energy fusion reactions than usually possible in a natural star. As a result, greater heat is produced, increasing processing efficiency of the Forge.
fog.upgrade.lore.13=Increasing the concentration of graviton shards in the fuel chamber begins to exhibit infinite fractal-like properties within finite space, further increasing processing capacity. Though this requires a commensurate increase in stellar fuel to ensure energy reaches matter deep within the chamber.
fog.upgrade.lore.14=Utilising the unique energy-manipulating properties of graviton shards, electricity can be more efficiently utilised within the Forge. Guiding electrons with gravity rather than matter or electromagnetic forces results in less power loss and thus greater processing speeds.
fog.upgrade.lore.15=Similar to the Quantum Force Transformer, the quantum-mechanical properties of graviton shards facilitate the ability for the Forge to complete a complex series of nuclear fusion processes in a single event by directly manipulating the subatomic particles of the materials themselves.
fog.upgrade.lore.16=Another instance of the entanglement-like effects of graviton shards, the simple Power Forge module now also exhibits the improvements made to the Melting Core module of the Forge. This allows for greater efficiency in both processing and allocation of the precious few graviton shards that can be obtained.
fog.upgrade.lore.17=Typical smelting techniques for exotic materials become too inefficient even at extreme temperatures. Graviton shards facilitate the tunnelling of unprecedented numbers of critically energized neutrinos for vastly improved heat transfer to the target material, one of the most efficient methods of transforming electrical energy into heat for materials.
fog.upgrade.lore.18=Graviton shards can manipulate not just processing matter, but the star at the centre of the Forge itself. By rotating the star at relativistic speeds, the resulting pulsar bursts can impart more energy per unit of time than mere static exposure. This results in faster processing of larger quantities of materials.
fog.upgrade.lore.19=Continual improvements to energy storage density using graviton shards improves both the efficiency of the Forge and improvements to heat utilisation for processing. Reaching the singularity threshold of energy has a twofold effect on processing efficiency: the gravitational effects can be used to manipulate the matter itself, while the micro-kugelblitzes paradoxically make their energy more available for use in the Forge.
fog.upgrade.lore.20=Normally increasing heat indefinitely has extreme diminishing returns when processing materials, but graviton shards allow for other heating options than standard electrically generated heat. Using graviton shards, encasing the target material in extremely degenerate matter compresses it so greatly that it heats up beyond what would be typically possible in the Forge.
fog.upgrade.lore.21=Using the entanglement-like properties of graviton shards, it is possible to utilize the increasingly extreme differences in spacetime between regions of the Forge to improve the processing capacity of the molten module. As space becomes more warped, more material can be moved closer to the star, increasing production capacity.
fog.upgrade.lore.22=Returning to the first upgrade of the Forge with the myriad discoveries about graviton shards allows it to run much faster than previously possible. It is sometimes important to review the most basic of assumptions when working outside the known laws of physics, for the simplest facts may be the most powerful.
fog.upgrade.lore.23=The stress of maintaining such a large structure around such a gravitationally dense object as a neutron star is alleviated through graviton shards. A sheath of gravitational-neutralising material is installed across the Forge to protect the more conventional machinery and only improves efficiency the larger the structure becomes.
fog.upgrade.lore.24=Improvements in understanding of the gravitational containment effects of graviton shards allow the Forge to process and handle the most exotic of plasmas, including typically nanosecond-lived synthetic transactinide elements. It also extends their lifetime for external usage by stabilizing the atomic nucleus with small quantities of gravitons.
fog.upgrade.lore.25=Further utilisation of the quantum entanglement-like properties of graviton shards allows the effects of other module upgrades to also apply to the exotic module. However, because of the extreme nature of spacetime within this module and the materials it handles, these benefits are reduced as per the inverse square law.
fog.upgrade.lore.26=As additional rings are placed closer to the star at the centre of the Forge, the gravitational stress drastically increases on the structure. Graviton shards alleviate these stresses while also creating localized spacetime bridges to link the two rings and their modules’ respective upgrades.
fog.upgrade.lore.27=A huge development in the capabilities of the Forge has been achieved with the use of large quantities of graviton shards – the ability to indefinitely feed the star with stellar fuel. While this has diminishing returns, the star can exist indefinitely despite the extremely accelerated energy expenditure from endless material processing.
fog.upgrade.lore.28=The usage of graviton shards in electrical systems to create localised miniature energy wormholes has allowed for such efficient power transfer that effectively unlimited electricity may be utilized by the Forge. More power means faster processing, quicker material movement, and better utilization of graviton shard related upgrades.
fog.upgrade.lore.29=The final external structural upgrade to the Forge requires the most advanced understanding of graviton shards and their applications in extreme environments. With this, the last 4 module slots of the Forge of the Gods are available to construct, ascending your operation to unseen heights of technological mastery.
fog.upgrade.lore.30=With total mastery of the Forge of the Gods achieved, it is possible to begin a new universe-spanning initiative. It is now possible to quantize and extract graviton shards for use outside the Forge in powerful new technological endeavours; produce the most exotic plasmas beyond merely periodic elements; and most importantly, begin to understand the immense power of magmatter, a form of matter made entirely of magnetic monopoles with density and stability billions of times that of conventional bosonic matter. It is with this development you realise that the completion of the Forge was not the end goal, but merely a stepping stone to universal transcendence.
fog.upgrade.text.0=Unlocks the base functionality of the Forge of the Gods, meaning 8 module slots, 1 ring, the Helioflare Power Forge module, 2 billion EU/t processing voltage and 15,000K heat bonus cap.
fog.upgrade.text.1=Unlocks a recipe time reduction multiplier based on the current heat the multi is running at. This bonus is calculated via following formula: Multiplier = 1 / (Heat^0.01)
fog.upgrade.text.2=Increases fuel efficiency by multiplying the actual fuel consumption by 0.8
fog.upgrade.text.3=Multiplies the maximum fuel consumption by 1.2
fog.upgrade.text.4=Increases the base processing voltage of the multi by: Stellar Fuel Units/sec * 10^8 EU/t
fog.upgrade.text.5=Unlocks the Helioflux Melting Core module.
fog.upgrade.text.6=Unlocks a multiplier to maximum parallel based on fuel consumption rate. This bonus is calculated via this formula: Multiplier = 1 + (Stellar Fuel Units/sec) / 15
fog.upgrade.text.7=Unlocks the Heliothermal Plasma Fabricator module and basic element -> plasma processing (1 step plasmas, T3 fusion maximum).
fog.upgrade.text.8=Unlocks a configuration window for maximum battery size and increases the limit to max int. Furthermore, an energy discount multiplier is unlocked that scales with battery size (capped to 0.05, or 5%). The discount is calculated as follows: Discount = (1 - 1.05^(-0.05 * Max Battery Capacity)) / 20
fog.upgrade.text.9=Increases maximum fuel consumption by 1 Stellar Fuel Unit/sec for every purchased upgrade.
fog.upgrade.text.10=Adds a x2 multiplier to maximum parallel.
fog.upgrade.text.11=Unlocks the Heliofusion Exoticizer module and quark gluon plasma creation. At this point this module is not affected by any other multipliers or bonuses from other upgrades.
fog.upgrade.text.12=Improves the fuel consumption -> heat conversion formula. Improved formula: Heat = log1.12(Stellar Fuel Units/sec) * 1000 + 12601
fog.upgrade.text.13=Improves the formula of SA to: Multiplier = 1 + (Stellar Fuel Units/sec) / 5
fog.upgrade.text.14=Improves the OC formula from 4/2 OCs to 4/2.3 OCs.
fog.upgrade.text.15=Allows the Heliothermal Plasma Fabricator to process multi step plasmas. Tier restriction still applies.
fog.upgrade.text.16=Allows the Helioflare Power Forge to receive the full benefits of the Helioflux Melting Core upgrade path.
fog.upgrade.text.17=Increases the cap of EBF heat bonuses to 30,000K.
fog.upgrade.text.18=Unlocks a multiplier to maximum parallel based on current heat. This bonus is calculated via this formula: Multiplier = 1 + Heat / 15000
fog.upgrade.text.19=Improves the EBF energy reduction heat bonus from 5% to 8% and adds an energy discount based on the fill level of the internal battery. This bonus is calculated via this formula: Discount = (Current fill level / Max Capacity - 0.5)^2 * (-0.6) + 0.15
fog.upgrade.text.20=EBF heat bonuses are granted above 30,000K, but the heat value used in heat bonus calculations is determined by this formula: Actual Heat = 30000 + (Current Heat - 30000)^0.85
fog.upgrade.text.21=Unlocks a multiplier to maximum parallel based on total amount of purchased upgrades. This bonus is calculated via this formula: Multiplier = 1 + Upgrade Amount / 5
fog.upgrade.text.22=Improves IGCC based on current maximum parallel. Improved Formula: Multiplier = (1 / Heat^0.01) / (Parallel^0.02)
fog.upgrade.text.23=Multiplies maximum processing voltage by 4 per active ring, applies after other bonuses.
fog.upgrade.text.24=Allows the Heliothermal Plasma Fabricator to process up to T5 plasmas.
fog.upgrade.text.25=Allows the Heliofusion Exoticizer to be affected by other upgrade benefits, but those benefits are square rooted first. The overclock bonus is adjusted via the following formula: OC Factor = 2 + (Base OC Factor - 2)^2
fog.upgrade.text.26=Allows construction of the second ring and adds 4 module slots.
fog.upgrade.text.27=Uncaps maximum fuel consumption, but fuel consumption used in bonus calculations scales according to this formula: Actual FC = Current Max FC + (Current FC - Current Max FC)^0.4, where FC refers to fuel consumption and max FC refers to the max fuel consumption without this upgrade.
fog.upgrade.text.28=Uncaps maximum processing voltage. Voltage can be set in each module's GUI.
fog.upgrade.text.29=Allows construction of the third ring and adds 4 module slots.
fog.upgrade.text.30=Unlocks Magmatter production in the Heliofusion Exoticizer, creation of exotic plasmas in the Heliothermal Plasma Fabricator and Graviton Shard ejection & injection.
fog.debug.resetbutton.text=Reset
fog.debug.resetbutton.tooltip=Resets all upgrades to zero
fog.debug.unlockall.text=Unlock all upgrades
fog.debug.gravitonshardsetter.tooltip=Set the amount of availabe graviton shards
fog.button.fuelconfig.tooltip=Fuel Configuration Menu
fog.button.furnacemode.tooltip.01=Blast Mode
fog.button.furnacemode.tooltip.02=Furnace Mode
fog.button.magmattermode.tooltip.01=Quark-Gluon Plasma Mode
fog.button.magmattermode.tooltip.02=Magmatter Mode
fog.button.magmattermode.tooltip.03=Magmatter Mode locked, missing upgrade
fog.button.battery.tooltip.01=Toggle Battery Charging
fog.button.battery.tooltip.02=Right click to open configuration menu (if unlocked)
fog.button.voltageconfig.tooltip.01=Open voltage config
fog.button.voltageconfig.tooltip.02=Voltage config locked, missing upgrade
fog.button.structurecheck.tooltip=Refresh module connection status
fog.button.milestones.tooltip=Milestone Overview
fog.button.materialrequirements.tooltip=Upgrade needs additional materials
fog.button.materialrequirementsmet.tooltip=All materials supplied
fog.button.materialrequirements.tooltip.clickhere=Click to open material insertion window
fog.button.ejection.tooltip=Toggle Graviton Shard Ejection
fog.button.formatting.tooltip=Toggle Number Formatting
fog.button.exoticinputs.tooltip=Click to display expected inputs
fog.button.reciperefresh.tooltip=Click to reset recipe
fog.button.refreshtimer.tooltip=Reset ready in
fog.button.seconds=Seconds
fog.button.thanks.tooltip=List of Contributors
fog.button.color.tooltip=Cosmetics Menu
achievement.gt.blockmachines.multimachine.em.forge_of_gods=Forge of the Gods
achievement.gt.godforgecasing.0=Singularity Reinforced Stellar Shielding Casing
achievement.gt.godforgecasing.1=Celestial Matter Guidance Casing
achievement.gt.godforgecasing.2=Boundless Gravitationally Severed Structure Casing
achievement.gt.godforgecasing.3=Transcendentally Amplified Magnetic Confinement Casing
achievement.gt.godforgecasing.4=Stellar Energy Siphon Casing
achievement.gt.godforgecasing.5=Remote Graviton Flow Modulator
achievement.gt.godforgecasing.6=Medial Graviton Flow Modulator
achievement.gt.godforgecasing.7=Central Graviton Flow Modulator
gt.blockmachines.multimachine.FOG.parallel=Parallel
gt.blockmachines.multimachine.FOG.batch=Batch Size
gt.blockmachines.multimachine.FOG.fuelconsumption=Stellar Fuel Consumption Factor
gt.blockmachines.multimachine.FOG.fuelinfo.0=The Stellar Fuel Consumption Factor is the main determining factor in calculating the total stellar fuel consumption per second. Each fuel type has different scaling, which is as follows:
gt.blockmachines.multimachine.FOG.fuelinfo.1=Dimensionally Transcendent Residue: factor*300*1.15^factor
gt.blockmachines.multimachine.FOG.fuelinfo.2=Condensed Raw Stellar Plasma Mixture: factor*2*1.08^factor
gt.blockmachines.multimachine.FOG.fuelinfo.3=Magnetohydrodynamically Constrained Star Matter: factor/25
gt.blockmachines.multimachine.FOG.fuelinfo.4=This factor also determines the base heat of the multiblock: Heat=log1.5(factor)*1000+12601
gt.blockmachines.multimachine.FOG.fuelinfo.5=Upgrades can influence these formulas, the changes are listed in the respective upgrades' descriptions.
gt.blockmachines.multimachine.FOG.fueltype=Click to Select Fuel Type
gt.blockmachines.multimachine.FOG.fuelusage=Fuel Usage
gt.blockmachines.multimachine.FOG.plasmamultistep=Multi-Step plasma
gt.blockmachines.multimachine.FOG.plasmarecipetier=Fusion Tier
gt.blockmachines.multimachine.FOG.storedfuel=Stored fuel amount:
gt.blockmachines.multimachine.FOG.storedstartupfuel=Star Fuel amount:
gt.blockmachines.multimachine.FOG.batteryinfo=Set battery size
gt.blockmachines.multimachine.FOG.shardcost=Graviton Shard cost:
gt.blockmachines.multimachine.FOG.availableshards=Available Graviton Shards:
gt.blockmachines.multimachine.FOG.modulestatus=Status:
gt.blockmachines.multimachine.FOG.modulestatus.true=Connected
gt.blockmachines.multimachine.FOG.modulestatus.false=Disconnected
gt.blockmachines.multimachine.FOG.voltageinfo=Set processing voltage
gt.blockmachines.multimachine.FOG.totalprogress=Total Progress
gt.blockmachines.multimachine.FOG.milestoneprogress=Current Milestone Level
gt.blockmachines.multimachine.FOG.progress=Next Milestone at
gt.blockmachines.multimachine.FOG.milestonecomplete=Milestone Complete
gt.blockmachines.multimachine.FOG.milestoneinfo=View Milestone Progress
gt.blockmachines.multimachine.FOG.inversionactive=Inversion Active
gt.blockmachines.multimachine.FOG.inversion=Inversion
gt.blockmachines.multimachine.FOG.expectedinputs=Expected Inputs
gt.blockmachines.multimachine.FOG.inversioninfotext=Once all milestones of the Forge reach tier 7, inversion activates. This uncaps the maximum tier of all milestones and allows to scale infinitely. The scaling of each milestone changes from exponential to linear, but the granted graviton shard amount keeps increasing. The amount of progress needed for each subsequent milestone is as much as needed for the 7th tier of each milestone. The Composition milestone is once again an exception, as that continues to scale by 1 each tier, with it's own formula for calculating progress. Each module type is given a value, ranging from 1 for the Helioflare Power Forge to 5 for the Heliofusion Exoticizer in magmatter mode, then the amount of each module present is substracted by 1 and multiplied by its value. These values are added up and divided by 5, this is the final milestone tier on top of the base 7.
gt.blockmachines.multimachine.FOG.powermilestone=Charge
gt.blockmachines.multimachine.FOG.recipemilestone=Conversion
gt.blockmachines.multimachine.FOG.fuelmilestone=Catalyst
gt.blockmachines.multimachine.FOG.purchasablemilestone=Composition
gt.blockmachines.multimachine.FOG.power=EU Consumed
gt.blockmachines.multimachine.FOG.recipes=Recipes Processed
gt.blockmachines.multimachine.FOG.fuelconsumed=Fuel Units Consumed
gt.blockmachines.multimachine.FOG.extensions=Extensions Built
gt.blockmachines.multimachine.FOG.shardgain=Graviton Shards gained
gt.blockmachines.multimachine.FOG.consumeUpgradeMats=Click to consume upgrade materials, supply §4exact§r stacksizes
gt.blockmachines.multimachine.FOG.clickhere=Confused? Click here for some general info
gt.blockmachines.multimachine.FOG.introduction=§NIntroduction
gt.blockmachines.multimachine.FOG.introductioninfotext=There's a lot going on in the Forge of the Gods, which can be quite confusing at first. This menu aims to explain everything that is happening and all the capabilities/mechanics of the forge.
gt.blockmachines.multimachine.FOG.tableofcontents=§NTable of Contents:
gt.blockmachines.multimachine.FOG.fuel=Fuel
gt.blockmachines.multimachine.FOG.modules=Modules
gt.blockmachines.multimachine.FOG.upgrades=Upgrades
gt.blockmachines.multimachine.FOG.milestones=Milestones
gt.blockmachines.multimachine.FOG.fuelinfotext=Once the structure of the Forge is built and the multiblock is formed, just simply turning it on is not sufficient to make it functional. The Forge must be supplied with a certain amount of Star Fuel (the item) to actually boot up. The amount of Star Fuel needed depends on the current fuel consumption factor, which can be set in the fuel configuration menu. By default the maximum is 5, but it can be increased later on with upgrades. Star Fuel scaling is as follows: factor*25*1.2^factor. Star Fuel can be supplied via an input bus, it gets consumed periodically and stored internally. Once there is enough Star Fuel stored in the multi, it turns on for real (allowing modules to connect) and converts the consumed Star Fuel into stored Stellar Fuel. From this point onwards, the Forge must be fueled via one of the liquid fuels (type can be selected in the fuel config menu). If there isn't enough of the selected fuel present in the input hatch, the stored fuel amount will decrease and if it reaches 0, the Forge enters the previous 'off' state where modules disconnect and it has to be supplied with Star Fuel again. The amount of internally stored Stellar Fuel (liquid) can be increased by turning on battery charging, this will cause the fuel usage to double, but half of it will be stored in the internal battery.
gt.blockmachines.multimachine.FOG.moduleinfotext=There are 4 types of modules that can be used in the Forge, the Helioflare Power Forge, Helioflux Melting Core, Heliothermal Plasma Fabricator and Heliofusion Exoticizer. These modules are separate multiblocks that have to be built into the Godforge structure at their designated spots. Once built, these modules have to connect to the Godforge, which happens automatically if all requirements for the respective module are met. Alternatively, there is a button to refresh their status without waiting for the timer. Each of these modules has its specialized functionality & requirements and is affected differently by certain upgrades. The first unlocked module is the §BHelioflare Power Forge§6, which simply put is a blast furnace even more powerful than the mega version. Additionally, this module has a furnace mode, turning it into a hyper powerful multi smelter. This module is unlocked by default and has 1024 base parallel. The second unlock is the §BHelioflux Melting Core§6, which also processes blast furnace recipes, but with a twist, the outputs are ejected in their molten form instead of hot/regular ingots. If an output does not have a molten form, it will output its regular form. This module has to be unlocked by an upgrade to function and has 512 base parallel. The third module is the §BHeliothermal Plasma Fabricator§6, which possesses a unique recipemap featuring direct material to plasma conversion recipes. These recipes are grouped by two properties, fusion tier and steps required, limiting which recipes can be processed before their respective upgrades are unlocked. Unlike regular fusion, these recipes produce the plasma of the input material. This module has 384 base parallel. The fourth and last module is the §BHeliofusion Exoticizer§6, a module capable of producing quark gluon plasma and later on magmatter. This module has unique automation challenges for both materials, so it is recommended to have two of these, as they have to be locked to either one of the materials. The common rule for both modes' automation challenges is as follows: the module outputs materials at the start of a recipe cycle and waits for the correct inputs to arrive before starting the actual processing of the output material. If producing quark-gluon plasma, the module outputs up to 7 different fluids/tiny piles with amounts between 1 and 64, and their corresponding plasmas and amounts have to be returned in order for the recipe to process. For each L of fluid, a bucket of plasma and for each tiny pile an ingot's worth of plasma must be returned for the recipe to work. The tiny piles are always ejected in multiples of 9. If magmatter mode is active, the automation challenge changes. Now the module outputs 1-50L of tachyon rich temporal fluid, 51-100L of spatially enlarged fluid and one tiny pile of a high tier material. The challenge is to return both the tachyon rich and spatially enlarged fluids, plus as much plasma of the tiny pile's material (in ingots) as the difference between the amounts of spatially enlarged and tachyon rich fluid. Once all of these have been returned in the correct amounts, the recipe will start to process and output magmatter. This module has 64 base parallel.
gt.blockmachines.multimachine.FOG.upgradeinfotext=Upgrades are the heart and soul of the Godforge, they unlock most of its functionality and processing power. The upgrade tree can be accessed via its button on the main gui and each upgrade node can be clicked for more information on its effects and unlock requirements. In general, each upgrade can only be unlocked if the prior one is unlocked and there are enough available graviton shards. One exception to this is the first upgrade, as that one has no prior upgrade. Some upgrades can also have extra material costs, which are denoted next to the unlock button if applicable. If an upgrade has more than 1 connected prior upgrade, then there are two options, either the upgrade requires ALL connected prior upgrades or AT LEAST ONE (indicated by the connection's color, red means ALL, blue means AT LEAST ONE). Upgrades can be refunded by simply pressing the unlock button again, but this only works if ALL connected later upgrades are not active/unlocked. The block of upgrades following the unlock of the Heliufusion Exoticizer module are special, as they are what is considered §Bthe Split§6. As the name suggests, only one path out of the three may be chosen at first, and the others will be locked. Each path has specialized buffs that are primarily targeted towards a specific module, and thus affect other module types with reduced effect (unless stated otherwise). The amount of unlockable paths depends on the amount of rings the Godforge has, which in turn are limited by later upgrades.
gt.blockmachines.multimachine.FOG.milestoneinfotext=Milestones are essential for upgrading the Godforge, as they are the source of graviton shards, the main currency needed for unlocking upgrades. In essence, milestones are just what their name suggests, thresholds that when reached, grant graviton shards. There are four types of milestones, Charge, Conversion, Catalyst and Composition, each referring to a stat of the Godforge. Each milestone has 7 tiers, each being harder to reach than the last, but also granting more graviton shards. The first tier grants 1 graviton shard, the second 2, etc. The §BCharge§6 milestone scales off total power consumption of all modules combined, the first tier being unlocked at 1e15 EU consumed, and each subsequent milestone scaling by 9x. The §BConversion§6 milestone scales off total recipes processed across all modules (excluding the Helioflare Power Forge's furnace mode) and its first tier is unlocked at 10M processed recipes. Following tiers scale by 6x. The §BCatalyst§6 milestone is based on the Forge's fuel consumption, counted in Stellar Fuel units (the number entered in the fuel config menu). Reaching the first tier requires 10,000 fuel units to be consumed, and each tier above scales by 3x. Last but not least, the §BComposition§6 milestone works a bit differently, as it scales off the Forge's structure. Milestone levels are granted for each unique type of module present in the structure (Heliofusion Exoticizer modules on quark-gluon and magmatter mode count as unique) and for each additional ring built. Your research suggests that something strange might happen if all milestones reach their final tier... Make sure to check back!
gt.blockmachines.multimachine.FOG.contributors=Contributors
gt.blockmachines.multimachine.FOG.lead=Project Lead
gt.blockmachines.multimachine.FOG.cloud=GDCloud
gt.blockmachines.multimachine.FOG.programming=Programming
gt.blockmachines.multimachine.FOG.teg=TheEpicGamer
gt.blockmachines.multimachine.FOG.serenibyss=§dSereni§5byss
gt.blockmachines.multimachine.FOG.textures=Textures & Structure
gt.blockmachines.multimachine.FOG.ant=Ant
gt.blockmachines.multimachine.FOG.lore=Loremaster
gt.blockmachines.multimachine.FOG.deleno=Deleno
gt.blockmachines.multimachine.FOG.rendering=Rendering Wizard
gt.blockmachines.multimachine.FOG.bucket=BucketBrigade
gt.blockmachines.multimachine.FOG.playtesting=Playtesting
gt.blockmachines.multimachine.FOG.misi=Misi
gt.blockmachines.multimachine.FOG.thanks=A huge thank you to these incredible people for helping to make this a reality! -Cloud
gt.blockmachines.multimachine.FOG.hint.0=1 - Classic Hatches or Transcendentally Amplified Magnetic Confinement Casing
gt.blockmachines.multimachine.FOG.hint.1=2 - Module Controllers or Singularity Reinforced Stellar Shielding Casing
# Godforge Star Cosmetics
fog.cosmetics.header=Star Cosmetics
fog.cosmetics.color=Color
fog.cosmetics.color.red=Red
fog.cosmetics.color.green=Green
fog.cosmetics.color.blue=Blue
fog.cosmetics.color.gamma=Gamma
fog.cosmetics.selectcolor.tooltip.1=Left click to select this Star Color
fog.cosmetics.selectcolor.tooltip.2=Shift-Left click to edit this Star Color (must be a custom color)
fog.cosmetics.starcolor=Custom Star Color
fog.cosmetics.customstarcolor=Custom...
fog.cosmetics.misc=Miscellaneous
fog.cosmetics.spin=Spin
fog.cosmetics.size=Size
fog.cosmetics.cyclespeed=Cycle speed between colors
fog.cosmetics.onlyintegers=Accepts Integers
fog.cosmetics.onlydecimals=Accepts Decimals
fog.cosmetics.starcolorname=Star Color Name:
fog.cosmetics.starcolorname.tooltip.1=Set the name for this Star Color (max 15 chars)
fog.cosmetics.starcolorname.tooltip.2=Must be unique! Will have a number appended otherwise
fog.cosmetics.colorlist.tooltip.1=Left click to select this Star Color
fog.cosmetics.colorlist.tooltip.2=Right click to remove this Star Color from the list
fog.cosmetics.applycolor=Apply
fog.cosmetics.applycolor.tooltip=Apply color to selected Star Color
fog.cosmetics.addcolor=Add
fog.cosmetics.addcolor.tooltip=Add to Star Color List
fog.cosmetics.resetcolor=Reset
fog.cosmetics.resetcolor.tooltip=Reset Current Color
fog.cosmetics.savecolors=Save
fog.cosmetics.savecolors.tooltip=Save this Star Color
fog.cosmetics.deletecolors=Delete
fog.cosmetics.deletecolors.tooltip=Delete this Star Color
fog.cosmetics.importcolors=Import
fog.cosmetics.importcolors.tooltip=Import a Star Color from text
fog.cosmetics.exportcolors=Export
fog.cosmetics.exportcolors.tooltip=Save exported Star Color to clipboard
fog.cosmetics.importer.import=Import Star Color
fog.cosmetics.importer.error=Invalid Star Color
fog.cosmetics.importer.valid=Valid Star Color
fog.cosmetics.importer.apply=Apply
fog.cosmetics.importer.apply.tooltip=Apply imported Star Color to color editor
fog.cosmetics.importer.reset=Reset
fog.cosmetics.importer.reset.tooltip=Reset imported Star Color
# Optical Circuits
achievement.gt.metaitem.03.32155=Optical Assembly
achievement.gt.metaitem.03.32156=Optical Computer
achievement.gt.metaitem.03.32157=Optical Mainframe
# Parts
achievement.gt.metaitem.01.32017=Electric Motor UIV
achievement.gt.metaitem.01.32021=Electric Piston UIV
achievement.gt.metaitem.01.32025=Electric Pump UIV
achievement.gt.metaitem.01.32029=Conveyor Module UIV
achievement.gt.metaitem.01.32033=Robot Arm UIV
achievement.gt.metaitem.01.32037=Emitter UIV
achievement.gt.metaitem.01.32041=Sensor UIV
achievement.gt.metaitem.01.32045=Field Generator UIV
achievement.gt.metaitem.01.32018=Electric Motor UMV
achievement.gt.metaitem.01.32022=Electric Piston UMV
achievement.gt.metaitem.01.32026=Electric Pump UMV
achievement.gt.metaitem.01.32030=Conveyor Module UMV
achievement.gt.metaitem.01.32034=Robot Arm UMV
achievement.gt.metaitem.01.32038=Emitter UMV
achievement.gt.metaitem.01.32042=Sensor UMV
achievement.gt.metaitem.01.32046=Field Generator UMV
#Pipes
gt.blockmachines.pipe.elementalmatter.name=Quantum "Tunnel"
gt.blockmachines.pipe.elementalmatter.desc.0=Quantum tunneling device.
gt.blockmachines.pipe.elementalmatter.desc.1=Not a portal!!!
gt.blockmachines.pipe.elementalmatter.desc.2=Must be painted to work
gt.blockmachines.pipe.elementalmatter.desc.3=Do not cross, split or turn
gt.blockmachines.pipe.energystream.name=Laser Vacuum Pipe
gt.blockmachines.pipe.energystream.desc.0=Laser tunneling device.
gt.blockmachines.pipe.energystream.desc.1=Bright Vacuum!!!
gt.blockmachines.pipe.energystream.desc.2=Must be painted to work
gt.blockmachines.pipe.energystream.desc.3=Do not split or turn
gt.blockmachines.pipe.energymirror.name=Laser Vacuum Mirror
gt.blockmachines.pipe.energymirror.desc.0=Laser reflection device.
gt.blockmachines.pipe.energymirror.desc.1=Can turn but not split
gt.blockmachines.pipe.datastream.name=Optical Fiber Cable
gt.blockmachines.pipe.datastream.desc.0=Advanced data transmission
gt.blockmachines.pipe.datastream.desc.1=Don't stare at the beam!
gt.blockmachines.pipe.datastream.desc.2=Must be painted to work
gt.blockmachines.pipe.datastream.desc.3=Do not cross or split
gt.blockmachines.pipe.desc.4=Explosion proof
#Single blocks
gt.blockmachines.machine.tt.ownerdetector.name=Owner detector
gt.blockmachines.machine.tt.ownerdetector.desc.0=Screwdrive to change mode
gt.blockmachines.machine.tt.ownerdetector.desc.1=Looks for his pa
gt.blockmachines.machine.tt.ownerdetector.desc.2=Emits signal when happy
gt.blockmachines.machine.tt.datareader.name=Data Reader
gt.blockmachines.machine.tt.datareader.desc.0=Reads Data Sticks and Orbs
gt.blockmachines.machine.tt.datareader.desc.1=Power it up and
gt.blockmachines.machine.tt.datareader.desc.2=Put the data storage in
gt.blockmachines.machine.tt.buck.05.name=Insane Buck Converter
gt.blockmachines.machine.tt.buck.06.name=Ludicrous Buck Converter
gt.blockmachines.machine.tt.buck.07.name=ZPM Voltage Buck Converter
gt.blockmachines.machine.tt.buck.08.name=Ultimate Power Buck Converter
gt.blockmachines.machine.tt.buck.09.name=Highly Ultimate Buck Converter
gt.blockmachines.machine.tt.buck.10.name=Extremely Ultimate Buck Converter
gt.blockmachines.machine.tt.buck.11.name=Insanely Ultimate Buck Converter
gt.blockmachines.machine.tt.buck.12.name=Mega Ultimate Buck Converter
gt.blockmachines.machine.tt.buck.13.name=Extended Mega Ultimate Buck Converter
gt.blockmachines.machine.tt.buck.desc.0=Electronic voltage regulator
gt.blockmachines.machine.tt.buck.desc.1=Adjustable step down transformer
gt.blockmachines.machine.tt.buck.desc.2=Switching power supply...
gt.blockmachines.machine.tt.tesla.01.name=Basic Tesla Transceiver
gt.blockmachines.machine.tt.tesla.02.name=Advanced Tesla Transceiver
gt.blockmachines.machine.tt.tesla.03.name=Epyc Tesla Transceiver
gt.blockmachines.machine.tt.tesla.04.name=Ultimate Power Tesla Transceiver
gt.blockmachines.machine.tt.tesla.05.name=Insane Tesla Transceiver
gt.blockmachines.machine.tt.tesla.desc.0=Your Tesla I/O machine of choice
gt.blockmachines.machine.tt.tesla.desc.1=Lightning stoves for the rich
#Debug blocks
gt.blockmachines.debug.tt.pollutor.name=Debug Pollution Generator
gt.blockmachines.debug.tt.pollutor.desc.0=Shit genny broke!
gt.blockmachines.debug.tt.pollutor.desc.1=Infinite Producer/Consumer
gt.blockmachines.debug.tt.pollutor.desc.2=Since i wanted one?
gt.blockmachines.debug.tt.data.name=Debug Data Hatch
gt.blockmachines.debug.tt.data.desc.0=Quantum Data Output
gt.blockmachines.debug.tt.data.desc.1=High speed fibre optics connector.
gt.blockmachines.debug.tt.data.desc.2=Must be painted to work
gt.blockmachines.debug.tt.maintenance.name=Auto-Taping Maintenance Hatch
gt.blockmachines.debug.tt.maintenance.desc.0=For automatically maintaining Multiblocks
gt.blockmachines.debug.tt.maintenance.desc.1=Does fix everything but itself.
gt.blockmachines.debug.tt.maintenance.desc.2=Fixing is for plebs!
gt.blockmachines.debug.tt.genny.name=Debug Power Generator
gt.blockmachines.debug.tt.genny.desc.0=Power from nothing
gt.blockmachines.debug.tt.genny.desc.1=Infinite Producer/Consumer
gt.blockmachines.debug.tt.genny.desc.2=Since i wanted one...
gt.blockmachines.debug.tt.genny.desc.3=Change it to Laser mode with a screwdriver.
gt.blockmachines.debug.tt.writer.name=Debug Structure Writer
gt.blockmachines.debug.tt.writer.desc.0=Scans Blocks Around
gt.blockmachines.debug.tt.writer.desc.1=Prints Multiblock NonTE structure check code
gt.blockmachines.debug.tt.writer.desc.2=ABC axises aligned to machine front
gt.blockmachines.debug.tt.certain.desc.0=Feeling certain, for sure
gt.blockmachines.debug.tt.certain.desc.1=Schrödinger's cat escaped the box
GT5U.gui.text.computing=§aComputing
GT5U.gui.text.providing_data=§aProviding Data
GT5U.gui.text.routing=§aRouting
GT5U.gui.text.researching=§aResearching
GT5U.gui.text.wrongRequirements=§7Incorrect scanning item
GT5U.gui.text.scanning=§aScanning
GT5U.gui.text.charging=§aCharging
GT5U.gui.text.microwaving=§aMicrowaving
GT5U.gui.text.no_routing=§7Can't route
GT5U.gui.text.invalid_timer=§7Invalid timer
GT5U.gui.text.no_research_item=§7No valid item to research
GT5U.gui.text.no_chargeable_item=§7No chargeable item
GT5U.gui.text.no_computing=§7Can't compute
GT5U.gui.text.no_data=§7Can't output data
GT5U.gui.text.no_planet_block=§7Missing planet block
GT5U.gui.text.no_helium=§7Not enough Helium
GT5U.gui.text.no_hydrogen=§7Not enough Hydrogen
GT5U.gui.text.no_stellar_plasma=§7Not enough Stellar Plasma
GT5U.gui.text.invalid_hysteresis=§7Invalid hysteresis settings
GT5U.gui.text.invalid_transfer_radius=§7Invalid transfer radius settings
GT5U.gui.text.invalid_voltage_setting=§7Invalid voltage setting
GT5U.gui.text.invalid_current_setting=§7Invalid current setting
GT5U.gui.text.invalid_time_setting=§7Invalid time setting
GT5U.gui.text.invalid_overdrive_setting=§7Invalid overdrive setting
GT5U.gui.text.insufficient_power_no_val=§7Insufficient power
GT5U.gui.text.missing_upgrades=§7Missing upgrades
GT5U.gui.text.waiting_for_inputs=§7Waiting for inputs
GT5U.gui.text.computation_loss=§4Shut down due to computation loss.
GT5U.gui.text.researching_item=§fResearching: §b%s
GT5U.gui.text.research_progress=§fComputation: %d/%d (%s%%)
# RecipeMaps
gt.recipe.eyeofharmony=Eye of Harmony
gt.recipe.researchStation=Research Station
gt.recipe.fog_plasma=Heliothermal Plasma Fabricator
gt.recipe.fog_exotic=Heliofusion Exoticizer
gt.recipe.fog_molten=Helioflux Melting Core
# NEI
tt.nei.eoh.total_items=Total Items: %s
tt.nei.eoh.solid_mass=Percentage of Solid Mass: %s%%
tt.nei.eoh.item_count=Item Count: %s
tt.nei.research.max_eu=Max EU: %s EU
tt.nei.research.computation=Computation: %s
tt.nei.research.min_computation=Min Computation: %s /s
#Keywords and phrases
#Example: ID:3
tt.keyword.ID=ID
#Example: 32EU at 1A
tt.keyword.at=at
# Any X
tt.keyword.Structure.AnyComputerCasing=Any Computer Casing
tt.keyword.Structure.AnyHighPowerCasing=Any High Power Casing
tt.keyword.Structure.AnyHighPowerCasing1D=Any High Power Casing with 1 dot
tt.keyword.Structure.AnyHighPowerCasing2D=Any High Power Casing with 2 dots
tt.keyword.Structure.AnyHighPowerCasingFront=Any High Power Casing on the front side
tt.keyword.Structure.AnyTeslaBaseCasingOuter=Any outer Tesla Base Casing
tt.keyword.Structure.AnyComputerCasingFirstOrLastSlice=Any Computer Casing on the first or last slice
tt.keyword.Structure.AnyComputerCasingBackMain=Any Computer Casing on the backside of the main body
tt.keyword.Structure.AnyAdvComputerCasing=Any Advanced Computer Casing
tt.keyword.Structure.AnyAdvComputerCasingExceptOuter=Any Advanced Computer Casing, except the outer ones
tt.keyword.Structure.AnyMolecularCasing=Any Molecular Casing
tt.keyword.Structure.AnyMolecularCasing2D=Any Molecular Casing with 2 dots
tt.keyword.Structure.AnyMolecularCasing3D=Any Molecular Casing with 3 dots
tt.keyword.Structure.AnyMolecularCasing4D=Any Molecular Casing with 4 dots
tt.keyword.Structure.AnyOuterMolecularCasing3rd=Any outer Molecular Casing on the 3rd slice
tt.keyword.Structure.AnyOuterMolecularCasing4th=Any outer Molecular Casing on the 4th slice
tt.keyword.Structure.AnyOuterMolecularCasing3rd4th=Any outer Molecular Casing on the 3rd or 4th slice
tt.keyword.Structure.AnyOuterCasingOnBottom=Any outer casing on the bottom layer
# Optional
tt.keyword.Structure.Optional=(optional)
# Placement specification
tt.keyword.Structure.FrontCenter=Front center
tt.keyword.Structure.BackCenter=Back center
tt.keyword.Structure.SideCenter=Side center
tt.keyword.Structure.FrontCenter3rd=Front 3rd layer center
tt.keyword.Structure.CenterPillar=Center of the front pillar
tt.keyword.Structure.Center=Center
# Additional structure components
tt.keyword.Structure.DataAccessHatch=Data Access Hatch
tt.keyword.Structure.ElementalOutput=Elemental Output Hatch
tt.keyword.Structure.Elemental=Elemental Hatch
tt.keyword.Structure.ElementalOverflow=Elemental Overflow Hatch
tt.keyword.Structure.ElementalInput=Elemental Input Hatch
tt.keyword.Structure.EssentiaStorage=Essentia Storage
tt.keyword.Structure.DataConnector=Data Connector
tt.keyword.Structure.DataInput=Data Input Hatch
tt.keyword.Structure.DataOutput=Data Output Hatch
tt.keyword.Structure.SuperconductingCoilBlock=Superconducting Coil Block
tt.keyword.Structure.StainlessSteelCasing=Stainless Steel Casing
tt.wirelessInputData.config.text=Configure how much computation to pull from wireless network
tt.keyphrase.Hint_Details=Hint Details
#debug boom
tt.keyword.BOOM=BOOM!
tt.keyword.Destination=Destination
tt.keyword.Weight=Weight
tt.keyword.Source=Source
tt.keyword.Progress=Progress
tt.keyword.Computation=Computation
#Problemns as in maintanance issues
tt.keyword.Problems=Problems
tt.keyword.Efficiency=Efficiency
#Button that allows to pass power to other machines
tt.keyword.PowerPass=PowerPass
#Button that vents EM
tt.keyword.SafeVoid=SafeVoid
tt.keyword.Parametrizer=Parametrizer
tt.keyword.Value=Value
tt.keyword.Input=Input
tt.keyword.input=input
tt.keyword.output=output
tt.keyword.Status=Status
tt.keyword.Content=Content
tt.keyword.PacketHistory=PacketHistory
#Used when 0 Elemental Matter Stacks
tt.keyphrase.No_Stacks=No Stacks
tt.keyphrase.Contains_EM=Contains EM
tt.keyphrase.Contained_mass=Contained mass
tt.keyphrase.Mass_Disposal_speed=Mass Disposal speed
tt.keyphrase.Muffler_BOOM=Muffler BOOM!
tt.keyphrase.Energy_Hatches=Energy Hatches
tt.keyphrase.Probably_uses=Currently uses
tt.keyphrase.Probably_makes=Currently generates
tt.keyphrase.Tier_Rating=Tier Rating
tt.keyphrase.Amp_Rating=Amp Rating
tt.keyphrase.Computation_Available=Computation Available
tt.keyphrase.Computation_Remaining=Computation Remaining
tt.keyphrase.Content_Stack_Count=Content: Stack Count
tt.keyphrase.Base_computation=Base computation
tt.keyphrase.After_overclocking=After overclocking
tt.keyphrase.Heat_Accumulated=Heat Accumulated
tt.keyphrase.Running_interdimensional_scan=Running interdimensional scan
tt.keyphrase.Running_local_dimension_scan=Running local dimension scan
tt.keyphrase.Overdrive_disengaged=Overdrive disengaged
tt.keyphrase.Overdrive_engaged=Overdrive engaged
tt.keyphrase.Hysteresis_high_set_to=Hysteresis high set to
tt.keyphrase.Hysteresis_low_set_to=Hysteresis low set to
tt.keyphrase.Tesla_radius_set_to=Tesla radius set to
tt.keyphrase.Sending_power=Sending power
tt.keyphrase.Receiving_power=Receiving power
tt.keyphrase.Stored_energy=Stored energy
tt.keyphrase.Stored_EU=Stored EU
tt.keyphrase.Average_IO=Average I/O
tt.keyphrase.Average_IO_(max)=Voltage I/O (max)
tt.keyphrase.Average_IO_max=Voltage I/O max
tt.keyphrase.Amperage_IO_(max)=Amperage I/O (max)
tt.keyphrase.Side_capabilities=Side capabilities
tt.keyphrase.Ass_line_recipe=Assembly Line Recipe
#OpenTurrets compatibility
tile.turretHeadEM.name=Elemental Matter Turret
tile.turretBaseEM.name=Elemental Turret Base
#EM scan result
tt.keyword.scan.depth=Depth
tt.keyword.scan.class=Class
tt.keyword.scan.name=Name
tt.keyword.scan.symbol=Symbol
tt.keyword.scan.mass=Mass
tt.keyword.scan.count=Count
tt.keyword.scan.amount=Amount
tt.keyword.scan.energy=Energy
tt.keyword.scan.energyLevel=Energy Level
tt.keyword.scan.charge=Charge
tt.keyword.scan.life_mult=Life multiplier
tt.keyword.scan.half_life=Half life
tt.keyword.scan.life_time=Life time
tt.keyword.scan.age=Age
tt.keyphrase.scan.at_current_energy_level=At current energy level
tt.keyword.scan.color=Colorless
tt.keyword.scan.colorless=Colorless
tt.keyword.scan.colored=Colored
tt.keyword.short.mass=M
tt.keyword.short.count=Qty
tt.keyword.short.amount=Qty
tt.keyword.short.energy=E
tt.keyword.short.energyLevel=EL
tt.keyword.short.charge=C
tt.keyword.short.time=T
tt.keyword.unit.mass=eV/c²
tt.keyword.unit.massFlux=eV/c²s
tt.keyword.unit.count=
tt.keyword.unit.mol=mol
tt.keyword.unit.itemMols=item(s)
tt.keyword.unit.mbMols=mb
tt.keyword.unit.energy=eV
tt.keyword.unit.charge=e
tt.keyword.unit.time=s
tt.keyword.unit.tick=t
#that the thing wont decay
tt.keyword.stable=STABLE
#EM types
tt.keyword.Primitive=Primitive
tt.keyword.Element=Element
tt.keyword.Atom=Atom
tt.keyword.Isotope=Isotope
tt.keyword.Boson=Boson
tt.keyword.Fermion=Fermion
tt.keyword.GaugeBoson=Gauge boson
tt.keyword.Meson=Meson
tt.keyword.Baryon=Baryon
tt.keyword.Tetraquark=Tetraquark
tt.keyword.Pentaquark=Pentaquark
tt.keyword.Hexaquark=Hexaquark
tt.keyword.Hadron=Hadron
tt.keyword.Neutrino=Neutrino
tt.keyword.Quark=Quark
tt.keyword.ScalarBoson=Scalar boson
#em definitions
tt.keyword.PrimitiveNBTERROR=NBT ERROR
tt.keyword.PrimitiveNULLPOINTER=NULL POINTER
tt.keyword.PrimitiveSpace=Space
tt.keyword.PrimitivePresence=Presence
tt.keyword.PrimitiveMass=Mass
tt.keyword.PrimitiveDarkMass=DarkMass
tt.keyword.PrimitiveEnergy=Energy
tt.keyword.PrimitiveDarkEnergy=DarkEnergy
tt.keyword.PrimitiveMagic=Magic
tt.keyword.PrimitiveAntimagic=Antimagic
tt.keyword.Gluon=Gluon
tt.keyword.Photon=Photon
tt.keyword.Weak0=Weak
tt.keyword.WeakPlus=Weak+
tt.keyword.WeakMinus=Weak-
tt.keyword.Proton=Proton
tt.keyword.AntiProton=Antiproton
tt.keyword.Neutron=Neutron
tt.keyword.AntiNeutron=Antineutron
tt.keyword.Lepton=Lepton
tt.keyword.Electron=Electron
tt.keyword.Muon=Muon
tt.keyword.Tauon=Tauon
tt.keyword.Positron=Positron
tt.keyword.Antimuon=Antimuon
tt.keyword.Antitauon=Antitauon
tt.keyword.ElectronNeutrino=Electron neutrino
tt.keyword.MuonNeutrino=Muon neutrino
tt.keyword.TauonNeutrino=Tauon neutrino
tt.keyword.PositronNeutrino=Positron neutrino
tt.keyword.AntimuonNeutrino=Antimuon neutrino
tt.keyword.AntitauonNeutrino=Antitauon neutrino
tt.keyword.QuarkUp=Up
tt.keyword.QuarkCharm=Charm
tt.keyword.QuarkTop=Top
tt.keyword.QuarkDown=Down
tt.keyword.QuarkStrange=Strange
tt.keyword.QuarkBottom=Bottom
tt.keyword.QuarkAntiUp=Antiup
tt.keyword.QuarkAntiCharm=Anticharm
tt.keyword.QuarkAntiTop=Antitop
tt.keyword.QuarkAntiDown=Antidown
tt.keyword.QuarkAntiStrange=Antistrange
tt.keyword.QuarkAntiBottom=Antibottom
tt.keyword.Higgs=Higgs
#These are Thaumcraft aspects
tt.keyword.Air=Air
tt.keyword.Earth=Earth
tt.keyword.Fire=Fire
tt.keyword.Water=Water
tt.keyword.Order=Order
tt.keyword.Entropy=Entropy
tt.keyword.Chaos=Chaos
tt.keyword.Primal=Primal
tt.keyword.Aspect=Aspect
tt.element.Neutronium=Neutronium
tt.element.Hydrogen=Hydrogen
tt.element.Helium=Helium
tt.element.Lithium=Lithium
tt.element.Beryllium=Beryllium
tt.element.Boron=Boron
tt.element.Carbon=Carbon
tt.element.Nitrogen=Nitrogen
tt.element.Oxygen=Oxygen
tt.element.Fluorine=Fluorine
tt.element.Neon=Neon
tt.element.Sodium=Sodium
tt.element.Magnesium=Magnesium
tt.element.Aluminium=Aluminium
tt.element.Silicon=Silicon
tt.element.Phosphorus=Phosphorus
tt.element.Sulfur=Sulfur
tt.element.Chlorine=Chlorine
tt.element.Argon=Argon
tt.element.Potassium=Potassium
tt.element.Calcium=Calcium
tt.element.Scandium=Scandium
tt.element.Titanium=Titanium
tt.element.Vanadium=Vanadium
tt.element.Chromium=Chromium
tt.element.Manganese=Manganese
tt.element.Iron=Iron
tt.element.Cobalt=Cobalt
tt.element.Nickel=Nickel
tt.element.Copper=Copper
tt.element.Zinc=Zinc
tt.element.Gallium=Gallium
tt.element.Germanium=Germanium
tt.element.Arsenic=Arsenic
tt.element.Selenium=Selenium
tt.element.Bromine=Bromine
tt.element.Krypton=Krypton
tt.element.Rubidium=Rubidium
tt.element.Strontium=Strontium
tt.element.Yttrium=Yttrium
tt.element.Zirconium=Zirconium
tt.element.Niobium=Niobium
tt.element.Molybdenum=Molybdenum
tt.element.Technetium=Technetium
tt.element.Ruthenium=Ruthenium
tt.element.Rhodium=Rhodium
tt.element.Palladium=Palladium
tt.element.Silver=Silver
tt.element.Cadmium=Cadmium
tt.element.Indium=Indium
tt.element.Tin=Tin
tt.element.Antimony=Antimony
tt.element.Tellurium=Tellurium
tt.element.Iodine=Iodine
tt.element.Xenon=Xenon
tt.element.Caesium=Caesium
tt.element.Barium=Barium
tt.element.Lanthanum=Lanthanum
tt.element.Cerium=Cerium
tt.element.Praseodymium=Praseodymium
tt.element.Neodymium=Neodymium
tt.element.Promethium=Promethium
tt.element.Samarium=Samarium
tt.element.Europium=Europium
tt.element.Gadolinium=Gadolinium
tt.element.Terbium=Terbium
tt.element.Dysprosium=Dysprosium
tt.element.Holmium=Holmium
tt.element.Erbium=Erbium
tt.element.Thulium=Thulium
tt.element.Ytterbium=Ytterbium
tt.element.Lutetium=Lutetium
tt.element.Hafnium=Hafnium
tt.element.Tantalum=Tantalum
tt.element.Tungsten=Tungsten
tt.element.Rhenium=Rhenium
tt.element.Osmium=Osmium
tt.element.Iridium=Iridium
tt.element.Platinum=Platinum
tt.element.Gold=Gold
tt.element.Mercury=Mercury
tt.element.Thallium=Thallium
tt.element.Lead=Lead
tt.element.Bismuth=Bismuth
tt.element.Polonium=Polonium
tt.element.Astatine=Astatine
tt.element.Radon=Radon
tt.element.Francium=Francium
tt.element.Radium=Radium
tt.element.Actinium=Actinium
tt.element.Thorium=Thorium
tt.element.Protactinium=Protactinium
tt.element.Uranium=Uranium
tt.element.Neptunium=Neptunium
tt.element.Plutonium=Plutonium
tt.element.Americium=Americium
tt.element.Curium=Curium
tt.element.Berkelium=Berkelium
tt.element.Californium=Californium
tt.element.Einsteinium=Einsteinium
tt.element.Fermium=Fermium
tt.element.Mendelevium=Mendelevium
tt.element.Nobelium=Nobelium
tt.element.Lawrencium=Lawrencium
tt.element.Rutherfordium=Rutherfordium
tt.element.Dubnium=Dubnium
tt.element.Seaborgium=Seaborgium
tt.element.Bohrium=Bohrium
tt.element.Hassium=Hassium
tt.element.Meitnerium=Meitnerium
tt.element.Darmstadtium=Darmstadtium
tt.element.Roentgenium=Roentgenium
tt.element.Copernicium=Copernicium
tt.element.Nihonium=Nihonium
tt.element.Flerovium=Flerovium
tt.element.Moscovium=Moscovium
tt.element.Livermorium=Livermorium
tt.element.Tennessine=Tennessine
tt.element.Oganesson=Oganesson
tt.element.AntiNeutronium=Antineutronium
tt.element.AntiHydrogen=Antihydrogen
tt.element.AntiHelium=Antihelium
tt.element.AntiLithium=Antilithium
tt.element.AntiBeryllium=Antiberyllium
tt.element.AntiBoron=Antiboron
tt.element.AntiCarbon=Anticarbon
tt.element.AntiNitrogen=Antinitrogen
tt.element.AntiOxygen=Antioxygen
tt.element.AntiFluorine=Antifluorine
tt.element.AntiNeon=Antineon
tt.element.AntiSodium=Antisodium
tt.element.AntiMagnesium=Antimagnesium
tt.element.AntiAluminium=Antialuminium
tt.element.AntiSilicon=Antisilicon
tt.element.AntiPhosphorus=Antiphosphorus
tt.element.AntiSulfur=Antisulfur
tt.element.AntiChlorine=Antichlorine
tt.element.AntiArgon=Antiargon
tt.element.AntiPotassium=Antipotassium
tt.element.AntiCalcium=Anticalcium
tt.element.AntiScandium=Antiscandium
tt.element.AntiTitanium=Antititanium
tt.element.AntiVanadium=Antivanadium
tt.element.AntiChromium=Antichromium
tt.element.AntiManganese=Antimanganese
tt.element.AntiIron=Antiiron
tt.element.AntiCobalt=Anticobalt
tt.element.AntiNickel=Antinickel
tt.element.AntiCopper=Anticopper
tt.element.AntiZinc=Antizinc
tt.element.AntiGallium=Antigallium
tt.element.AntiGermanium=Antigermanium
tt.element.AntiArsenic=Antiarsenic
tt.element.AntiSelenium=Antiselenium
tt.element.AntiBromine=Antibromine
tt.element.AntiKrypton=Antikrypton
tt.element.AntiRubidium=Antirubidium
tt.element.AntiStrontium=Antistrontium
tt.element.AntiYttrium=Antiyttrium
tt.element.AntiZirconium=Antizirconium
tt.element.AntiNiobium=Antiniobium
tt.element.AntiMolybdenum=Antimolybdenum
tt.element.AntiTechnetium=Antitechnetium
tt.element.AntiRuthenium=Antiruthenium
tt.element.AntiRhodium=Antirhodium
tt.element.AntiPalladium=Antipalladium
tt.element.AntiSilver=Antisilver
tt.element.AntiCadmium=Anticadmium
tt.element.AntiIndium=Antiindium
tt.element.AntiTin=Antitin
tt.element.AntiAntimony=Antiantimony
tt.element.AntiTellurium=Antitellurium
tt.element.AntiIodine=Antiiodine
tt.element.AntiXenon=Antixenon
tt.element.AntiCaesium=Anticaesium
tt.element.AntiBarium=Antibarium
tt.element.AntiLanthanum=Antilanthanum
tt.element.AntiCerium=Anticerium
tt.element.AntiPraseodymium=Antipraseodymium
tt.element.AntiNeodymium=Antineodymium
tt.element.AntiPromethium=Antipromethium
tt.element.AntiSamarium=Antisamarium
tt.element.AntiEuropium=Antieuropium
tt.element.AntiGadolinium=Antigadolinium
tt.element.AntiTerbium=Antiterbium
tt.element.AntiDysprosium=Antidysprosium
tt.element.AntiHolmium=Antiholmium
tt.element.AntiErbium=Antierbium
tt.element.AntiThulium=Antithulium
tt.element.AntiYtterbium=Antiytterbium
tt.element.AntiLutetium=Antilutetium
tt.element.AntiHafnium=Antihafnium
tt.element.AntiTantalum=Antitantalum
tt.element.AntiTungsten=Antitungsten
tt.element.AntiRhenium=Antirhenium
tt.element.AntiOsmium=Antiosmium
tt.element.AntiIridium=Antiiridium
tt.element.AntiPlatinum=Antiplatinum
tt.element.AntiGold=Antigold
tt.element.AntiMercury=Antimercury
tt.element.AntiThallium=Antithallium
tt.element.AntiLead=Antilead
tt.element.AntiBismuth=Antibismuth
tt.element.AntiPolonium=Antipolonium
tt.element.AntiAstatine=Antiastatine
tt.element.AntiRadon=Antiradon
tt.element.AntiFrancium=Antifrancium
tt.element.AntiRadium=Antiradium
tt.element.AntiActinium=Antiactinium
tt.element.AntiThorium=Antithorium
tt.element.AntiProtactinium=Antiprotactinium
tt.element.AntiUranium=Antiuranium
tt.element.AntiNeptunium=Antineptunium
tt.element.AntiPlutonium=Antiplutonium
tt.element.AntiAmericium=Antiamericium
tt.element.AntiCurium=Anticurium
tt.element.AntiBerkelium=Antiberkelium
tt.element.AntiCalifornium=Antibalifornium
tt.element.AntiEinsteinium=Antieinsteinium
tt.element.AntiFermium=Antifermium
tt.element.AntiMendelevium=Antimendelevium
tt.element.AntiNobelium=Antinobelium
tt.element.AntiLawrencium=Antilawrencium
tt.element.AntiRutherfordium=Antirutherfordium
tt.element.AntiDubnium=Antidubnium
tt.element.AntiSeaborgium=Antiseaborgium
tt.element.AntiBohrium=Antibohrium
tt.element.AntiHassium=Antihassium
tt.element.AntiMeitnerium=Antimeitnerium
tt.element.AntiDarmstadtium=Antidarmstadtium
tt.element.AntiRoentgenium=Antiroentgenium
tt.element.AntiCopernicium=Anticopernicium
tt.element.AntiNihonium=Antinihonium
tt.element.AntiFlerovium=Antiflerovium
tt.element.AntiMoscovium=Antimoscovium
tt.element.AntiLivermorium=Antilivermorium
tt.element.AntiTennessine=Antitennessine
tt.element.AntiOganesson=Antioganesson
tt.IUPAC.n=nil
tt.IUPAC.u=un
tt.IUPAC.b=bi
tt.IUPAC.t=tri
tt.IUPAC.q=quad
tt.IUPAC.p=pent
tt.IUPAC.h=hex
tt.IUPAC.s=sept
tt.IUPAC.o=oct
tt.IUPAC.e=enn
tt.IUPAC.N=Nil
tt.IUPAC.U=Un
tt.IUPAC.B=Bi
tt.IUPAC.T=Tri
tt.IUPAC.Q=Quad
tt.IUPAC.P=Pent
tt.IUPAC.H=Hex
tt.IUPAC.S=Sept
tt.IUPAC.O=Oct
tt.IUPAC.E=Enn
tt.IUPAC.ium=ium
tt.IUPAC.Anti=Anti
tt.keyword.Weird=*
tt.chat.debug.generator=Laser mode: %s
GT5U.gui.config.general.debug=Debug
GT5U.gui.config.general.features=Features
GT5U.gui.config.general.teslatweaks=Tesla Tweaks
GT5U.gui.config.general.visual=Visual
|