-
Notifications
You must be signed in to change notification settings - Fork 28
/
matcher.txt
1432 lines (1250 loc) · 57 KB
/
matcher.txt
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
itemGroup.fpTab.deco=itemGroup.futurepack.deco
itemGroup.fpTab.maschiens=itemGroup.futurepack.machines
itemGroup.fpTab.items=itemGroup.futurepack.items
0=itemGroup.futurepack.resources
0=itemGroup.futurepack.tools
tile.colorIron_white.name=block.futurepack.color_iron_white
tile.colorIron_orange.name=block.futurepack.color_iron_orange
tile.colorIron_magenta.name=block.futurepack.color_iron_magenta
tile.colorIron_lightBlue.name=block.futurepack.color_iron_light_blue
tile.colorIron_yellow.name=block.futurepack.color_iron_yellow
tile.colorIron_lime.name=block.futurepack.color_iron_lime
tile.colorIron_pink.name=block.futurepack.color_iron_pink
tile.colorIron_gray.name=block.futurepack.color_iron_gray
tile.colorIron_silver.name=block.futurepack.color_iron_light_gray
tile.colorIron_cyan.name=block.futurepack.color_iron_cyan
tile.colorIron_purple.name=block.futurepack.color_iron_purple
tile.colorIron_blue.name=block.futurepack.color_iron_blue
tile.colorIron_brown.name=block.futurepack.color_iron_brown
tile.colorIron_green.name=block.futurepack.color_iron_green
tile.colorIron_red.name=block.futurepack.color_iron_red
tile.colorIron_black.name=block.futurepack.color_iron_black
tile.colorLuftung_white.name=block.futurepack.color_luftung_white
tile.colorLuftung_orange.name=block.futurepack.color_luftung_orange
tile.colorLuftung_magenta.name=block.futurepack.color_luftung_magenta
tile.colorLuftung_lightBlue.name=block.futurepack.color_luftung_light_blue
tile.colorLuftung_yellow.name=block.futurepack.color_luftung_yellow
tile.colorLuftung_lime.name=block.futurepack.color_luftung_lime
tile.colorLuftung_pink.name=block.futurepack.color_luftung_pink
tile.colorLuftung_gray.name=block.futurepack.color_luftung_gray
tile.colorLuftung_silver.name=block.futurepack.color_luftung_light_gray
tile.colorLuftung_cyan.name=block.futurepack.color_luftung_cyan
tile.colorLuftung_purple.name=block.futurepack.color_luftung_purple
tile.colorLuftung_blue.name=block.futurepack.color_luftung_blue
tile.colorLuftung_brown.name=block.futurepack.color_luftung_brown
tile.colorLuftung_green.name=block.futurepack.color_luftung_green
tile.colorLuftung_red.name=block.futurepack.color_luftung_red
tile.colorLuftung_black.name=block.futurepack.color_luftung_black
tile.colorGlas_white.name=block.futurepack.color_glass_white
tile.colorGlas_orange.name=block.futurepack.color_glass_orange
tile.colorGlas_magenta.name=block.futurepack.color_glass_magenta
tile.colorGlas_lightBlue.name=block.futurepack.color_glass_light_blue
tile.colorGlas_yellow.name=block.futurepack.color_glass_yellow
tile.colorGlas_lime.name=block.futurepack.color_glass_lime
tile.colorGlas_pink.name=block.futurepack.color_glass_pink
tile.colorGlas_gray.name=block.futurepack.color_glass_gray
tile.colorGlas_silver.name=block.futurepack.color_glass_light_gray
tile.colorGlas_cyan.name=block.futurepack.color_glass_cyan
tile.colorGlas_purple.name=block.futurepack.color_glass_purple
tile.colorGlas_blue.name=block.futurepack.color_glass_blue
tile.colorGlas_brown.name=block.futurepack.color_glass_brown
tile.colorGlas_green.name=block.futurepack.color_glass_green
tile.colorGlas_red.name=block.futurepack.color_glass_red
tile.colorGlas_black.name=block.futurepack.color_glass_black
tile.colorGitter_white.name=block.futurepack.color_gitter_white
tile.colorGitter_orange.name=block.futurepack.color_gitter_orange
tile.colorGitter_magenta.name=block.futurepack.color_gitter_magenta
tile.colorGitter_lightBlue.name=block.futurepack.color_gitter_light_blue
tile.colorGitter_yellow.name=block.futurepack.color_gitter_yellow
tile.colorGitter_lime.name=block.futurepack.color_gitter_lime
tile.colorGitter_pink.name=block.futurepack.color_gitter_pink
tile.colorGitter_gray.name=block.futurepack.color_gitter_gray
tile.colorGitter_silver.name=block.futurepack.color_gitter_light_gray
tile.colorGitter_cyan.name=block.futurepack.color_gitter_cyan
tile.colorGitter_purple.name=block.futurepack.color_gitter_purple
tile.colorGitter_blue.name=block.futurepack.color_gitter_blue
tile.colorGitter_brown.name=block.futurepack.color_gitter_brown
tile.colorGitter_green.name=block.futurepack.color_gitter_green
tile.colorGitter_red.name=block.futurepack.color_gitter_red
tile.colorGitter_black.name=block.futurepack.color_gitter_black
tile.colorFence_white.name=block.futurepack.color_iron_fence_white
tile.colorFence_orange.name=block.futurepack.color_iron_fence_orange
tile.colorFence_magenta.name=block.futurepack.color_iron_fence_magenta
tile.colorFence_lightBlue.name=block.futurepack.color_iron_fence_light_blue
tile.colorFence_yellow.name=block.futurepack.color_iron_fence_yellow
tile.colorFence_lime.name=block.futurepack.color_iron_fence_lime
tile.colorFence_pink.name=block.futurepack.color_iron_fence_pink
tile.colorFence_gray.name=block.futurepack.color_iron_fence_gray
tile.colorFence_silver.name=block.futurepack.color_iron_fence_light_gray
tile.colorFence_cyan.name=block.futurepack.color_iron_fence_cyan
tile.colorFence_purple.name=block.futurepack.color_iron_fence_purple
tile.colorFence_blue.name=block.futurepack.color_iron_fence_blue
tile.colorFence_brown.name=block.futurepack.color_iron_fence_brown
tile.colorFence_green.name=block.futurepack.color_iron_fence_green
tile.colorFence_red.name=block.futurepack.color_iron_fence_red
tile.colorFence_black.name=block.futurepack.color_iron_fence_black
tile.colorPane_white.name=block.futurepack.color_gitter_pane_white
tile.colorPane_orange.name=block.futurepack.color_gitter_pane_orange
tile.colorPane_magenta.name=block.futurepack.color_gitter_pane_magenta
tile.colorPane_lightBlue.name=block.futurepack.color_gitter_pane_light_blue
tile.colorPane_yellow.name=block.futurepack.color_gitter_pane_yellow
tile.colorPane_lime.name=block.futurepack.color_gitter_pane_lime
tile.colorPane_pink.name=block.futurepack.color_gitter_pane_pink
tile.colorPane_gray.name=block.futurepack.color_gitter_pane_gray
tile.colorPane_silver.name=block.futurepack.color_gitter_pane_light_gray
tile.colorPane_cyan.name=block.futurepack.color_gitter_pane_cyan
tile.colorPane_purple.name=block.futurepack.color_gitter_pane_purple
tile.colorPane_blue.name=block.futurepack.color_gitter_pane_blue
tile.colorPane_brown.name=block.futurepack.color_gitter_pane_brown
tile.colorPane_green.name=block.futurepack.color_gitter_pane_green
tile.colorPane_red.name=block.futurepack.color_gitter_pane_red
tile.colorPane_black.name=block.futurepack.color_gitter_pane_black
tile.color_gate_0.name=block.futurepack.color_iron_fence_gate_white
tile.color_gate_1.name=block.futurepack.color_iron_fence_gate_orange
tile.color_gate_2.name=block.futurepack.color_iron_fence_gate_magenta
tile.color_gate_3.name=block.futurepack.color_iron_fence_gate_light_blue
tile.color_gate_4.name=block.futurepack.color_iron_fence_gate_yellow
tile.color_gate_5.name=block.futurepack.color_iron_fence_gate_lime
tile.color_gate_6.name=block.futurepack.color_iron_fence_gate_pink
tile.color_gate_7.name=block.futurepack.color_iron_fence_gate_gray
tile.color_gate_8.name=block.futurepack.color_iron_fence_gate_light_gray
tile.color_gate_9.name=block.futurepack.color_iron_fence_gate_cyan
tile.color_gate_10.name=block.futurepack.color_iron_fence_gate_purple
tile.color_gate_11.name=block.futurepack.color_iron_fence_gate_blue
tile.color_gate_12.name=block.futurepack.color_iron_fence_gate_brown
tile.color_gate_13.name=block.futurepack.color_iron_fence_gate_green
tile.color_gate_14.name=block.futurepack.color_iron_fence_gate_red
tile.color_gate_15.name=block.futurepack.color_iron_fence_gate_black
tile.colorIronTreppe_white.name=block.futurepack.color_iron_stair_white
tile.colorIronTreppe_orange.name=block.futurepack.color_iron_stair_orange
tile.colorIronTreppe_magenta.name=block.futurepack.color_iron_stair_magenta
tile.colorIronTreppe_lightBlue.name=block.futurepack.color_iron_stair_light_blue
tile.colorIronTreppe_yellow.name=block.futurepack.color_iron_stair_yellow
tile.colorIronTreppe_lime.name=block.futurepack.color_iron_stair_lime
tile.colorIronTreppe_pink.name=block.futurepack.color_iron_stair_pink
tile.colorIronTreppe_gray.name=block.futurepack.color_iron_stair_gray
tile.colorIronTreppe_silver.name=block.futurepack.color_iron_stair_light_gray
tile.colorIronTreppe_cyan.name=block.futurepack.color_iron_stair_cyan
tile.colorIronTreppe_purple.name=block.futurepack.color_iron_stair_purple
tile.colorIronTreppe_blue.name=block.futurepack.color_iron_stair_blue
tile.colorIronTreppe_brown.name=block.futurepack.color_iron_stair_brown
tile.colorIronTreppe_green.name=block.futurepack.color_iron_stair_green
tile.colorIronTreppe_red.name=block.futurepack.color_iron_stair_red
tile.colorIronTreppe_black.name=block.futurepack.color_iron_stair_black
tile.colorGitterTreppe_white.name=block.futurepack.color_gitter_stair_white
tile.colorGitterTreppe_orange.name=block.futurepack.color_gitter_stair_orange
tile.colorGitterTreppe_magenta.name=block.futurepack.color_gitter_stair_magenta
tile.colorGitterTreppe_lightBlue.name=block.futurepack.color_gitter_stair_light_blue
tile.colorGitterTreppe_yellow.name=block.futurepack.color_gitter_stair_yellow
tile.colorGitterTreppe_lime.name=block.futurepack.color_gitter_stair_lime
tile.colorGitterTreppe_pink.name=block.futurepack.color_gitter_stair_pink
tile.colorGitterTreppe_gray.name=block.futurepack.color_gitter_stair_gray
tile.colorGitterTreppe_silver.name=block.futurepack.color_gitter_stair_light_gray
tile.colorGitterTreppe_cyan.name=block.futurepack.color_gitter_stair_cyan
tile.colorGitterTreppe_purple.name=block.futurepack.color_gitter_stair_purple
tile.colorGitterTreppe_blue.name=block.futurepack.color_gitter_stair_blue
tile.colorGitterTreppe_brown.name=block.futurepack.color_gitter_stair_brown
tile.colorGitterTreppe_green.name=block.futurepack.color_gitter_stair_green
tile.colorGitterTreppe_red.name=block.futurepack.color_gitter_stair_red
tile.colorGitterTreppe_black.name=block.futurepack.color_gitter_stair_black
tile.colorIronStep_white.name=block.futurepack.color_iron_slab_white
tile.colorIronStep_orange.name=block.futurepack.color_iron_slab_orange
tile.colorIronStep_magenta.name=block.futurepack.color_iron_slab_magenta
tile.colorIronStep_lightBlue.name=block.futurepack.color_iron_slab_light_blue
tile.colorIronStep_yellow.name=block.futurepack.color_iron_slab_yellow
tile.colorIronStep_lime.name=block.futurepack.color_iron_slab_lime
tile.colorIronStep_pink.name=block.futurepack.color_iron_slab_pink
tile.colorIronStep_gray.name=block.futurepack.color_iron_slab_gray
tile.colorIronStep_silver.name=block.futurepack.color_iron_slab_light_gray
tile.colorIronStep_cyan.name=block.futurepack.color_iron_slab_cyan
tile.colorIronStep_purple.name=block.futurepack.color_iron_slab_purple
tile.colorIronStep_blue.name=block.futurepack.color_iron_slab_blue
tile.colorIronStep_brown.name=block.futurepack.color_iron_slab_brown
tile.colorIronStep_green.name=block.futurepack.color_iron_slab_green
tile.colorIronStep_red.name=block.futurepack.color_iron_slab_red
tile.colorIronStep_black.name=block.futurepack.color_iron_slab_black
tile.colorGitterStep_white.name=block.futurepack.color_gitter_slab_white
tile.colorGitterStep_orange.name=block.futurepack.color_gitter_slab_orange
tile.colorGitterStep_magenta.name=block.futurepack.color_gitter_slab_magenta
tile.colorGitterStep_lightBlue.name=block.futurepack.color_gitter_slab_light_blue
tile.colorGitterStep_yellow.name=block.futurepack.color_gitter_slab_yellow
tile.colorGitterStep_lime.name=block.futurepack.color_gitter_slab_lime
tile.colorGitterStep_pink.name=block.futurepack.color_gitter_slab_pink
tile.colorGitterStep_gray.name=block.futurepack.color_gitter_slab_gray
tile.colorGitterStep_silver.name=block.futurepack.color_gitter_slab_light_gray
tile.colorGitterStep_cyan.name=block.futurepack.color_gitter_slab_cyan
tile.colorGitterStep_purple.name=block.futurepack.color_gitter_slab_purple
tile.colorGitterStep_blue.name=block.futurepack.color_gitter_slab_blue
tile.colorGitterStep_brown.name=block.futurepack.color_gitter_slab_brown
tile.colorGitterStep_green.name=block.futurepack.color_gitter_slab_green
tile.colorGitterStep_red.name=block.futurepack.color_gitter_slab_red
tile.colorGitterStep_black.name=block.futurepack.color_gitter_slab_black
tile.colorLuftungStep_white.name=block.futurepack.color_luftung_slab_white
tile.colorLuftungStep_orange.name=block.futurepack.color_luftung_slab_orange
tile.colorLuftungStep_magenta.name=block.futurepack.color_luftung_slab_magenta
tile.colorLuftungStep_lightBlue.name=block.futurepack.color_luftung_slab_light_blue
tile.colorLuftungStep_yellow.name=block.futurepack.color_luftung_slab_yellow
tile.colorLuftungStep_lime.name=block.futurepack.color_luftung_slab_lime
tile.colorLuftungStep_pink.name=block.futurepack.color_luftung_slab_pink
tile.colorLuftungStep_gray.name=block.futurepack.color_luftung_slab_gray
tile.colorLuftungStep_silver.name=block.futurepack.color_luftung_slab_light_gray
tile.colorLuftungStep_cyan.name=block.futurepack.color_luftung_slab_cyan
tile.colorLuftungStep_purple.name=block.futurepack.color_luftung_slab_purple
tile.colorLuftungStep_blue.name=block.futurepack.color_luftung_slab_blue
tile.colorLuftungStep_brown.name=block.futurepack.color_luftung_slab_brown
tile.colorLuftungStep_green.name=block.futurepack.color_luftung_slab_green
tile.colorLuftungStep_red.name=block.futurepack.color_luftung_slab_red
tile.colorLuftungStep_black.name=block.futurepack.color_luftung_slab_black
tile.colorPlasmaLamp_white.name=block.futurepack.color_plasma_lamp_white
tile.colorPlasmaLamp_orange.name=block.futurepack.color_plasma_lamp_orange
tile.colorPlasmaLamp_magenta.name=block.futurepack.color_plasma_lamp_magenta
tile.colorPlasmaLamp_lightBlue.name=block.futurepack.color_plasma_lamp_light_blue
tile.colorPlasmaLamp_yellow.name=block.futurepack.color_plasma_lamp_yellow
tile.colorPlasmaLamp_lime.name=block.futurepack.color_plasma_lamp_lime
tile.colorPlasmaLamp_pink.name=block.futurepack.color_plasma_lamp_pink
tile.colorPlasmaLamp_gray.name=block.futurepack.color_plasma_lamp_gray
tile.colorPlasmaLamp_silver.name=block.futurepack.color_plasma_lamp_light_gray
tile.colorPlasmaLamp_cyan.name=block.futurepack.color_plasma_lamp_cyan
tile.colorPlasmaLamp_purple.name=block.futurepack.color_plasma_lamp_purple
tile.colorPlasmaLamp_blue.name=block.futurepack.color_plasma_lamp_blue
tile.colorPlasmaLamp_brown.name=block.futurepack.color_plasma_lamp_brown
tile.colorPlasmaLamp_green.name=block.futurepack.color_plasma_lamp_green
tile.colorPlasmaLamp_red.name=block.futurepack.color_plasma_lamp_red
tile.colorPlasmaLamp_black.name=block.futurepack.color_plasma_lamp_black
tile.erzBlocke_metal_block.name=block.futurepack.metal_block
tile.erzBlocke_metal_block_luftschacht.name=block.futurepack.metal_block_ventilation
tile.uncolorGitter.name=block.futurepack.metal_block_gitter
0=block.futurepack.metal_glass
tile.metalSlap_metal.name=block.futurepack.metal_slab
tile.metalSlap_luftung.name=block.futurepack.metal_ventilation_slab
tile.metalSlap_gitter.name=block.futurepack.metal_gitter_slab
tile.metalTreppe_yellow.name=block.futurepack.metal_stair
tile.metalTreppe_white.name=block.futurepack.metal_stair_gitter
tile.metalFence_metal.name=block.futurepack.metal_fence
tile.uncolorPane.name=block.futurepack.metal_gitter_pane
tile.metalFenceGate.name=block.futurepack.metal_fence_gate
tile.erzBlocke_zinn_block.name=block.futurepack.block_tin
tile.erzBlocke_zink_block.name=block.futurepack.block_zinc
tile.erzBlocke_kupfer_block.name=block.futurepack.block_copper
tile.erzBlocke_kristall_block_neon.name=block.futurepack.block_crystal_neon
tile.erzBlocke_kristall_block_retium.name=block.futurepack.block_crystal_retium
tile.erzBlocke_kristall_block_glowtit.name=block.futurepack.block_crystal_glowtite
tile.erzBlocke_kristall_block_bioterium.name=block.futurepack.block_crystal_bioterium
tile.erzBlocke_kristall_block_alutin.name=block.futurepack.block_crystal_alutin
tile.erzBlocke_bneon_block.name=block.futurepack.block_compressed_neon
tile.erzBlocke_bretium_block.name=block.futurepack.block_compressed_retium
tile.erzBlocke_bglowtite_block.name=block.futurepack.block_compressed_glowtite
tile.erzBlocke_bbioterium_block.name=block.futurepack.block_compressed_bioterium
tile.erzBlocke_bquantanium_block.name=block.futurepack.block_compressed_quantanium
tile.erzBlocke_bwakurum_block.name=block.futurepack.block_compressed_wakurium
tile.erzBlocke_baluminium_block.name=block.futurepack.block_compressed_aluminium
tile.eisenleiter.name=block.futurepack.ironladder
tile.colorNeonLamp_white.name=block.futurepack.color_neon_lamp_white
tile.colorNeonLamp_orange.name=block.futurepack.color_neon_lamp_orange
tile.colorNeonLamp_magenta.name=block.futurepack.color_neon_lamp_magenta
tile.colorNeonLamp_lightBlue.name=block.futurepack.color_neon_lamp_light_blue
tile.colorNeonLamp_yellow.name=block.futurepack.color_neon_lamp_yellow
tile.colorNeonLamp_lime.name=block.futurepack.color_neon_lamp_lime
tile.colorNeonLamp_pink.name=block.futurepack.color_neon_lamp_pink
tile.colorNeonLamp_gray.name=block.futurepack.color_neon_lamp_gray
tile.colorNeonLamp_silver.name=block.futurepack.color_neon_lamp_light_gray
tile.colorNeonLamp_cyan.name=block.futurepack.color_neon_lamp_cyan
tile.colorNeonLamp_purple.name=block.futurepack.color_neon_lamp_purple
tile.colorNeonLamp_blue.name=block.futurepack.color_neon_lamp_blue
tile.colorNeonLamp_brown.name=block.futurepack.color_neon_lamp_brown
tile.colorNeonLamp_green.name=block.futurepack.color_neon_lamp_green
tile.colorNeonLamp_red.name=block.futurepack.color_neon_lamp_red
tile.colorNeonLamp_black.name=block.futurepack.color_neon_lamp_black
0=block.futurepack.deco_armee
0=block.futurepack.deco_forscher
0=block.futurepack.deco_industrial
0=block.futurepack.quartz_glass
tile.neonbricks_Neonbrick.name=block.futurepack.neon_brick
tile.neonbricks_Retiumbrick.name=block.futurepack.retium_brick
tile.neonbricks_Glowtitbrick.name=block.futurepack.glowtite_brick
tile.neonbricks_Bioteriumbrick.name=block.futurepack.bioterium_brick
0=block.futurepack.quantanium_brick
0=block.futurepack.wakurium_brick
item.composite_door.name=block.futurepack.composite_door
0=block.futurepack.thruster_white_light_blue
0=block.futurepack.thruster_white_yellow
0=block.futurepack.thruster_white_lime
0=block.futurepack.thruster_white_orange
0=block.futurepack.thruster_white_purple
0=block.futurepack.thruster_light_gray_light_blue
0=block.futurepack.thruster_light_gray_yellow
0=block.futurepack.thruster_light_gray_lime
0=block.futurepack.thruster_light_gray_orange
0=block.futurepack.thruster_light_gray_purple
0=block.futurepack.thruster_black_light_blue
0=block.futurepack.thruster_black_yellow
0=block.futurepack.thruster_black_lime
0=block.futurepack.thruster_black_orange
0=block.futurepack.thruster_black_purple
tile.erze_bauxit.name=block.futurepack.ore_bauxite
tile.erze_kupfer.name=block.futurepack.ore_copper
tile.erze_zinn.name=block.futurepack.ore_tin
tile.erze_zink.name=block.futurepack.ore_zinc
tile.erze_coal_m.name=block.futurepack.ore_coal_m
tile.erze_magnetit.name=block.futurepack.ore_magnetite
tile.erze_kupfer_m.name=block.futurepack.ore_copper_m
tile.erze_quartz_m.name=block.futurepack.ore_quartz_m
tile.stone_cobbleM.name=block.futurepack.cobblestone_m
tile.stone_stoneM.name=block.futurepack.stone_m
0=block.futurepack.cobblestone_m_slab
0=block.futurepack.stone_m_slab
0=block.futurepack.stonebrick_m_slab
0=block.futurepack.cobblestone_m_stair
0=block.futurepack.stone_m_stair
0=block.futurepack.stonebrick_m_stair
0=block.futurepack.cobblestone_frozen
0=block.futurepack.stone_frozen
tile.stone_brickM.name=block.futurepack.stonebrick_m
tile.stone_crackedM.name=block.futurepack.stonebrick_cracked_m
tile.stone_sandM.name=block.futurepack.sandstone_m
tile.stone_smoothsandM.name=block.futurepack.sandstone_smooth_m
tile.stone_chiseledsandM.name=block.futurepack.sandstone_chiseled_m
tile.sand_M.name=block.futurepack.sand_m
tile.gravel_M.name=block.futurepack.gravel_m
tile.dirt_M.name=block.futurepack.dirt_m
0=block.futurepack.grass_t
tile.wood_menelaus.name=block.futurepack.log_mushroom
tile.wood_tyros.name=block.futurepack.log_tyros
0=block.futurepack.log_palirie
0=block.futurepack.leaves_mushroom
0=block.futurepack.leaves_palirie
0=block.futurepack.leaves_tyros
tile.planks_menelaus_mushroom.name=block.futurepack.planks_mushroom
tile.planks_tyros.name=block.futurepack.planks_tyros
0=block.futurepack.planks_palirie
0=block.futurepack.planks_mushroom_slab
0=block.futurepack.planks_tyros_slab
0=block.futurepack.planks_palirie_slab
0=block.futurepack.planks_mushroom_stair
0=block.futurepack.planks_tyros_stair
0=block.futurepack.planks_palirie_stair
0=block.futurepack.planks_mushroom_fence
0=block.futurepack.planks_tyros_fence
0=block.futurepack.planks_palirie_fence
0=block.futurepack.planks_mushroom_gate
0=block.futurepack.planks_tyros_gate
0=block.futurepack.planks_palirie_gate
tile.cristall_0.name=block.futurepack.crystal_neon
tile.cristall_4.name=block.futurepack.crystal_alutin
tile.cristall_1.name=block.futurepack.crystal_retium
tile.cristall_2.name=block.futurepack.crystal_glowtite
tile.cristall_3.name=block.futurepack.crystal_bioterium
tile.neonsand_neon.name=block.futurepack.sand_neon
tile.neonsand_alutin.name=block.futurepack.sand_alutin
tile.neonsand_retium.name=block.futurepack.sand_retium
tile.neonsand_glowtit.name=block.futurepack.sand_glowtite
tile.neonsand_bioterium.name=block.futurepack.sand_bioterium
0=block.futurepack.fireflies
0=block.futurepack.crawler_hive
tile.prismid_stone.name=block.futurepack.prismide_stone
tile.prismid.name=block.futurepack.prismide
tile.huge_mycel.name=block.futurepack.huge_mycel
tile.menelaus_mushroom_rotkappe.name=block.futurepack.peakhead
tile.menelaus_mushroom_hyticus.name=block.futurepack.hyticus
tile.menelaus_mushroom_blasenpilz.name=block.futurepack.bubbleshroom
tile.menelaus_mushroom_blauling.name=block.futurepack.blueshroom
tile.ionCollector.name=block.futurepack.ion_collector_white
tile.ionCollector.name=block.futurepack.ion_collector_gray
tile.ionCollector.name=block.futurepack.ion_collector_black
tile.optiBench.name=block.futurepack.opti_bench_white
tile.optiBench.name=block.futurepack.opti_bench_gray
tile.optiBench.name=block.futurepack.opti_bench_black
tile.efurnace.name=block.futurepack.neon_furnace_white
tile.efurnace.name=block.futurepack.neon_furnace_gray
tile.efurnace.name=block.futurepack.neon_furnace_black
tile.solarpanel.name=block.futurepack.solar_panel_white
tile.solarpanel.name=block.futurepack.solar_panel_gray
tile.solarpanel.name=block.futurepack.solar_panel_black
tile.crusher.name=block.futurepack.crusher_white
tile.crusher.name=block.futurepack.crusher_gray
tile.crusher.name=block.futurepack.crusher_black
tile.sorter.name=block.futurepack.sorter
tile.plasmaGenerator.name=block.futurepack.infusion_generator_white
tile.plasmaGenerator.name=block.futurepack.infusion_generator_gray
tile.plasmaGenerator.name=block.futurepack.infusion_generator_black
tile.industrial_neon_furnace.name=block.futurepack.industrial_neon_furnace_white
tile.industrial_neon_furnace.name=block.futurepack.industrial_neon_furnace_gray
tile.industrial_neon_furnace.name=block.futurepack.industrial_neon_furnace_black
tile.zentrifuge.name=block.futurepack.zentrifuge_white
tile.zentrifuge.name=block.futurepack.zentrifuge_gray
tile.zentrifuge.name=block.futurepack.zentrifuge_black
tile.recycler.name=block.futurepack.recycler_white
tile.recycler.name=block.futurepack.recycler_gray
tile.recycler.name=block.futurepack.recycler_black
tile.opti_assembler.name=block.futurepack.opti_assembler_white
tile.opti_assembler.name=block.futurepack.opti_assembler_gray
tile.opti_assembler.name=block.futurepack.opti_assembler_black
tile.gasturbine.name=block.futurepack.gas_turbine_white
tile.gasturbine.name=block.futurepack.gas_turbine_gray
tile.gasturbine.name=block.futurepack.gas_turbine_black
tile.entityeater_rocket.name=block.futurepack.rocket_launcher
tile.entityeater_killer.name=block.futurepack.entity_killer
tile.entityeater_healer.name=block.futurepack.entity_healer
tile.entityeater_eater.name=block.futurepack.entity_eater
tile.elektroMagnet.name=block.futurepack.electro_magnet
tile.externalCore.name=block.futurepack.external_core
tile.fp_fluid_pump.name=block.futurepack.fluid_pump
tile.wasserTurbine.name=block.futurepack.water_turbine_white
tile.wasserTurbine.name=block.futurepack.water_turbine_gray
tile.wasserTurbine.name=block.futurepack.water_turbine_black
tile.techtable.name=block.futurepack.techtable
tile.scanner.name=block.futurepack.scanner_block_white
tile.scanner.name=block.futurepack.scanner_block_gray
tile.scanner.name=block.futurepack.scanner_block_black
tile.forscher.name=block.futurepack.researcher_white
tile.forscher.name=block.futurepack.researcher_gray
tile.forscher.name=block.futurepack.researcher_black
tile.industrieFurnace.name=block.futurepack.industrial_furnace
tile.assemblytable.name=block.futurepack.assembly_table_white
tile.assemblytable.name=block.futurepack.assembly_table_gray
tile.assemblytable.name=block.futurepack.assembly_table_black
tile.brennstoff_generator.name=block.futurepack.t0_generator
tile.bateriebox.name=block.futurepack.battery_box_white
tile.bateriebox.name=block.futurepack.battery_box_gray
tile.bateriebox.name=block.futurepack.battery_box_black
tile.composite_chest.name=block.futurepack.composite_chest
tile.flashserver.name=block.futurepack.flash_server_white
tile.flashserver.name=block.futurepack.flash_server_gray
tile.flashserver.name=block.futurepack.flash_server_black
tile.partpress.name=block.futurepack.part_press
tile.pucher.name=block.futurepack.pusher
tile.wandrobe.name=block.futurepack.wardrobe_white_normal_1
tile.wandrobe.name=block.futurepack.wardrobe_white_normal_2
tile.wandrobe.name=block.futurepack.wardrobe_white_large_1
tile.wandrobe.name=block.futurepack.wardrobe_white_large_2
tile.wandrobe.name=block.futurepack.wardrobe_light_gray_normal_1
tile.wandrobe.name=block.futurepack.wardrobe_light_gray_normal_2
tile.wandrobe.name=block.futurepack.wardrobe_light_gray_large_1
tile.wandrobe.name=block.futurepack.wardrobe_light_gray_large_2
tile.wandrobe.name=block.futurepack.wardrobe_black_normal_1
tile.wandrobe.name=block.futurepack.wardrobe_black_normal_2
tile.wandrobe.name=block.futurepack.wardrobe_black_large_1
tile.wandrobe.name=block.futurepack.wardrobe_black_large_2
tile.blockBreaker.name=block.futurepack.block_breaker
tile.block_placer.name=block.futurepack.block_placer
tile.fuelcell.name=block.futurepack.fuel_cell
tile.DroneStation.name=block.futurepack.drone_station
tile.modul.1.name=block.futurepack.modul_1_white
tile.modul.1.name=block.futurepack.modul_1_gray
tile.modul.1.name=block.futurepack.modul_1_black
tile.modul.2.name=block.futurepack.modul_2_white
tile.modul.2.name=block.futurepack.modul_2_gray
tile.modul.2.name=block.futurepack.modul_2_black
tile.modul.3.name=block.futurepack.modul_3_white
tile.modul.3.name=block.futurepack.modul_3_gray
tile.modul.3.name=block.futurepack.modul_3_black
tile.modul1_calc.name=block.futurepack.modul_1_calculation_white
tile.modul1_calc.name=block.futurepack.modul_1_calculation_gray
tile.modul1_calc.name=block.futurepack.modul_1_calculation_black
tile.boardcomputer.name=block.futurepack.board_computer_white
tile.boardcomputer.name=block.futurepack.board_computer_gray
tile.boardcomputer.name=block.futurepack.board_computer_black
tile.advanced_boardcomputer.name=block.futurepack.advanced_board_computer_white
tile.advanced_boardcomputer.name=block.futurepack.advanced_board_computer_gray
tile.advanced_boardcomputer.name=block.futurepack.advanced_board_computer_black
tile.waterCooler.name=block.futurepack.water_cooler
tile.quantanium.name=block.futurepack.quantanium
tile.externCooler.name=block.futurepack.extern_cooler
tile.bedrock_rift.name=block.futurepack.bedrock_rift
tile.antenne.name=block.futurepack.antenna_white
tile.antenne.name=block.futurepack.antenna_gray
tile.antenne.name=block.futurepack.antenna_black
tile.beam_.name=block.futurepack.teleporter
tile.beam_up.name=block.futurepack.teleporter_up
tile.beam_down.name=block.futurepack.teleporter_down
tile.beam_button.name=block.futurepack.teleporter_both
tile.beam_inf.name=block.futurepack.beam
tile.beam_inf_up.name=block.futurepack.beam_up
tile.beam_inf_down.name=block.futurepack.beam_down
tile.beam_inf_button.name=block.futurepack.beam_both
0=block.futurepack.sapling_holder_plains
0=block.futurepack.sapling_holder_desert
0=block.futurepack.sapling_holder_nether
tile.neonengine.name=block.futurepack.neon_engine
tile.pulsit.name=block.futurepack.gravity_pulser
tile.Magnet.name=block.futurepack.magnet
tile.rs_timer.name=block.futurepack.rs_timer
tile.force_field.name=block.futurepack.force_field
tile.dungeon_spawner.name=block.futurepack.dungeon_spawner
tile.dungeon_spawner.tooltip=block.futurepack.dungeon_spawner.tooltip
tile.wr_receiver.name=block.futurepack.wr_receiver
tile.wr_transmitter.name=block.futurepack.wr_transmitter
tile.wr_transmitter_i.name=block.futurepack.wr_transmitter_i
tile.spacedoor.name=block.futurepack.airlock_door
tile.dungeon_core.name=block.futurepack.dungeon_core
0=block.futurepack.fp_lever
0=block.futurepack.button
tile.rf_ne_converter.name=block.futurepack.rf2ne_converter_white
tile.rf_ne_converter.name=block.futurepack.rf2ne_converter_gray
tile.rf_ne_converter.name=block.futurepack.rf2ne_converter_black
tile.modular_door.name=block.futurepack.modular_door
tile.blockFish.name=block.futurepack.fish_block
tile.claime.name=block.futurepack.claime
tile.pipe_0.name=block.futurepack.pipe_normal
tile.pipe_2.name=block.futurepack.pipe_neon
tile.pipe_3.name=block.futurepack.pipe_support
tile.pipe_1.name=block.futurepack.pipe_redstone
tile.wire_0.name=block.futurepack.wire_normal
tile.wire_3.name=block.futurepack.wire_support
tile.wire_4.name=block.futurepack.wire_network
tile.wire_2.name=block.futurepack.wire_super
tile.wire_1.name=block.futurepack.wire_redstone
0=block.futurepack.insert_node
tile.laser_transmitter.name=block.futurepack.laser_transmitter
tile.syncronizer.name=block.futurepack.syncronizer
tile.monorail.name=block.futurepack.monorail
tile.monorail_station.name=block.futurepack.monorail_station
tile.monorail_waypoint.name=block.futurepack.monorail_waypoint
tile.monorail_booster.name=block.futurepack.monorail_booster
tile.monorail_charger.name=block.futurepack.monorail_charger
tile.monorail_detector.name=block.futurepack.monorail_detector
tile.monorail_oneway.name=block.futurepack.monorail_oneway
0=block.futurepack.monorail_lift
0=block.futurepack.plasma_pipe_t1
tile.fluid_tube.name=block.futurepack.fluid_tube
tile.fluid_tank.name=block.futurepack.fluid_tank
tile.fluid_intake.name=block.futurepack.fluid_intake
tile.ftl_drive.name=block.futurepack.ftl_drive
tile.deep_core_miner.name=block.futurepack.deepcore_miner
item.LogicChip.name=item.futurepack.chip_logic
item.KIChip.name=item.futurepack.chip_ai
item.LogistcChip.name=item.futurepack.chip_transport
item.NavigationChip.name=item.futurepack.chip_navigation
item.NetworkChip.name=item.futurepack.chip_network
item.ProduktionChip.name=item.futurepack.chip_industrie
item.RedstoneChip.name=item.futurepack.chip_redstone
item.SuportChip.name=item.futurepack.chip_support
item.TacticChip.name=item.futurepack.chip_tactic
item.UltimateChip.name=item.futurepack.chip_ultimate
item.DamageControlChip.name=item.futurepack.chip_damage_control
item.Standart-Core.name=item.futurepack.core_standart
item.A1-Core.name=item.futurepack.core_a1
item.P2-Core.name=item.futurepack.core_p2
item.TCT-Core.name=item.futurepack.core_tct
item.Master-Core.name=item.futurepack.core_master
item.Non-Core.name=item.futurepack.core_non
item.Dungon-Core.name=item.futurepack.core_dungeon
item.Univ-Core.name=item.futurepack.core_torus
item.Zombie-Core.name=item.futurepack.core_zombie
item.Entronium-Core.name=item.futurepack.core_entronium
item.Standart-ram.name=item.futurepack.ram_standart
item.A-ram.name=item.futurepack.ram_a
item.P-ram.name=item.futurepack.ram_p
item.TCT-ram.name=item.futurepack.ram_tct
item.Master-ram.name=item.futurepack.ram_master
item.Non-ram.name=item.futurepack.ram_non
item.Dungon-ram.name=item.futurepack.ram_dungeon
item.Univ-ram.name=item.futurepack.ram_torus
item.Zombie-ram.name=item.futurepack.ram_zombie
item.Entronium-ram.name=item.futurepack.ram_entronium
item.toasted_chip.name=item.futurepack.toasted_chip
item.toasted_ram.name=item.futurepack.toasted_ram
item.toasted_core.name=item.futurepack.toasted_core
item.Tank.name=item.futurepack.lack_tank_empty
item.record_fp_entros.name=item.futurepack.record_fp_entros
item.record.fp_entros.desc=item.futurepack.record_fp_entros.desc
item.record_fp_envia.name=item.futurepack.record_fp_envia
item.record.fp_envia.desc=item.futurepack.record_fp_envia.desc
item.record_futurepack.name=item.futurepack.record_futurepack
item.record.futurepack.desc=item.futurepack.record_futurepack.desc
item.record_fp_menelaus.name=item.futurepack.record_fp_menelaus
item.record.fp_menelaus.desc=item.futurepack.record_fp_menelaus.desc
item.record_fp_tyros.name=item.futurepack.record_fp_tyros
item.record.fp_tyros.desc=item.futurepack.record_fp_tyros.desc
item.record_fp_unknown.name=item.futurepack.record_fp_unknown
item.record.fp_unknown.desc=item.futurepack.record_fp_unknown.desc
item.aiflash0.name=item.futurepack.aiflash0
item.aiflash1.name=item.futurepack.aiflash1
item.aiflash2.name=item.futurepack.aiflash2
item.aiflash3.name=item.futurepack.aiflash3
item.aiflash4.name=item.futurepack.aiflash4
item.aiflash5.name=item.futurepack.aiflash5
item.Battery_N_full.name=item.futurepack.battery_n
item.Battery_L_full.name=item.futurepack.battery_l
item.NeonBattery_full.name=item.futurepack.battery_neon
item.EnergyCell_full.name=item.futurepack.energy_cell
item.CompactEnergyCell_full.name=item.futurepack.compact_energy_cell
item.CrystalEnergyCell_full.name=item.futurepack.crystal_energy_cell
item.recipe.name=item.futurepack.crafting_recipe
item.recipe_assembly.name=item.futurepack.assembly_recipe
item.itemMonitor.name=item.futurepack.display
item.linse_r.name=item.futurepack.lense_red
item.linse_g.name=item.futurepack.lense_green
item.linse_w.name=item.futurepack.lense_white
item.linse_l.name=item.futurepack.lense_purple
item.kompost.name=item.futurepack.kompost
item.shredder.name=item.futurepack.shredder
item.fp_analyzer.name=item.futurepack.analyzer
item.lasercutter.name=item.futurepack.lasercutter
item.timemanipulator.name=item.futurepack.timemanipulator
item.granate.name=item.futurepack.grenade_normal
item.blazegranate.name=item.futurepack.grenade_blaze
item.plasmagranate.name=item.futurepack.grenade_plasma
item.schleimgranate.name=item.futurepack.grenade_slime
item.futtergranate.name=item.futurepack.grenade_futter
item.saatgranate.name=item.futurepack.grenade_saat
item.kompostgranate.name=item.futurepack.grenade_kompost
item.rocket.name=item.futurepack.rocket
item.rocket_plasma.name=item.futurepack.rocket_plasma
item.rocket_blaze.name=item.futurepack.rocket_blaze
item.rocket_bioterium.name=item.futurepack.rocket_bioterium
item.telescope.name=item.futurepack.telescope
0=item.futurepack.script_filter
item.Iron_Stick.name=item.futurepack.iron_stick
item.drone_engine.name=item.futurepack.drone_engine
item.astrofood_empty.name=item.futurepack.astrofood_empty
item.laserdiode.name=item.futurepack.laserdiode
item.fragment_core.name=item.futurepack.fragment_core
item.fragment_ram.name=item.futurepack.fragment_ram
item.fuel_cell.name=item.futurepack.fuel_rods
item.fibers.name=item.futurepack.fibers
item.sword_handle.name=item.futurepack.sword_handle
item.hack_schnitzel.name=item.futurepack.wood_chips
item.dungeon_key_0.name=item.futurepack.dungeon_key_0
item.dungeon_key_1.name=item.futurepack.dungeon_key_1
item.dungeon_key_2.name=item.futurepack.dungeon_key_2
item.dungeon_key_3.name=item.futurepack.dungeon_key_3
item.topinambur_flower.name=item.futurepack.topinambur_flower
item.mendel_flower.name=item.futurepack.mendel_flower
0=item.futurepack.chemicals_a
0=item.futurepack.chemicals_b
0=item.futurepack.chemicals_c
item.granate_leer.name=item.futurepack.grenade_empty
item.itemErze_zinnbarren.name=item.futurepack.ingot_tin
item.itemErze_zinkbarren.name=item.futurepack.ingot_zinc
item.itemErze_kupferbarren.name=item.futurepack.ingot_copper
item.itemErze_magnet.name=item.futurepack.ingot_magnet
item.Aluminiumplatten.name=item.futurepack.ingot_aluminium
item.Silizium.name=item.futurepack.ingot_silicon
item.itemErze_neon_ingot.name=item.futurepack.ingot_neon
item.itemErze_retium_ingot.name=item.futurepack.ingot_retium
item.itemErze_glowtit_ingot.name=item.futurepack.ingot_glowtite
item.itemErze_bioterium_ingot.name=item.futurepack.ingot_bioterium
item.itemErze_ingot_wakurum.name=item.futurepack.ingot_wakurium
item.itemErze_ingot_quantanium.name=item.futurepack.ingot_quantanium
item.itemErze_ingot_seltenerde.name=item.futurepack.ingot_rare_earth
item.itemErze_ingot_gadolinium.name=item.futurepack.ingot_gadolinium
item.itemErze_ingot_lithium.name=item.futurepack.ingot_lithium
item.itemErze_ingot_neodymium.name=item.futurepack.ingot_neodymium
item.itemErze_ingot_bitripentium.name=item.futurepack.ingot_bitripentium
item.Verbuntmetall.name=item.futurepack.composite_metal
item.keramik.name=item.futurepack.ceramic
item.fasern.name=item.futurepack.polymer
item.CopperCoil.name=item.futurepack.coil_copper
item.IronCoil.name=item.futurepack.coil_iron
item.NeonCoil.name=item.futurepack.coil_neon
item.GoldCoil.name=item.futurepack.coil_gold
item.quantanium_coil.name=item.futurepack.coil_quantanium
item.Eisenteile.name=item.futurepack.parts_iron
item.Diamandteile.name=item.futurepack.parts_diamond
item.Quarzteile.name=item.futurepack.parts_quartz
item.Neonteile.name=item.futurepack.parts_neon
item.Kupferteile.name=item.futurepack.parts_copper
item.goldteile.name=item.futurepack.parts_gold
0=item.futurepack.dust_aluminium
0=item.futurepack.dust_bioterium
0=item.futurepack.dust_copper
0=item.futurepack.dust_glowtite
0=item.futurepack.dust_gold
0=item.futurepack.dust_iron
0=item.futurepack.dust_magnet
0=item.futurepack.dust_neon
item.dust_obsidian.name=item.futurepack.dust_obsidian
0=item.futurepack.dust_quantanium
0=item.futurepack.dust_retium
0=item.futurepack.dust_tin
0=item.futurepack.dust_wakurium
0=item.futurepack.dust_zinc
tile.sapling_tyros.name=block.futurepack.sapling_tyros
tile.sapling_menelaus.name=block.futurepack.sapling_mushroom
item.AirBrush.name=item.futurepack.airbrush
item.grablingHook.name=item.futurepack.grappling_hook
item.plasmaschneider.name=item.futurepack.plasma_cutter
item.hologramcontroler.name=item.futurepack.hologram_controler
item.logistic_editor.ENERGIE.name=item.futurepack.logistic_editor.ENERGIE
item.logistic_editor.SUPPORT.name=item.futurepack.logistic_editor.SUPPORT
item.logistic_editor.NETWORK.name=item.futurepack.logistic_editor.NETWORK
item.logistic_editor.ITEMS.name=item.futurepack.logistic_editor.ITEMS
item.logistic_editor.FLUIDS.name=item.futurepack.logistic_editor.FLUIDS
item.escenner.name=item.futurepack.escanner
item.composite_pickaxe.name=item.futurepack.composite_pickaxe
item.composite_axe.name=item.futurepack.composite_axe
item.composite_hoe.name=item.futurepack.composite_hoe
item.composite_spade.name=item.futurepack.composite_spade
item.helmetMagnetit.name=item.futurepack.magnet_helmet
item.chestplateMagnetit.name=item.futurepack.magnet_chestplate
item.leggingsMagnetit.name=item.futurepack.magnet_leggings
item.bootsMagnetit.name=item.futurepack.magnet_boots
item.helmet_composite.name=item.futurepack.composite_helmet
item.chestplate_composite.name=item.futurepack.composite_chestplate
item.leggings_composite.name=item.futurepack.composite_leggings
item.boots_composite.name=item.futurepack.composite_boots
item.modul_battery.name=item.futurepack.modul_battery
item.modul_shield.name=item.futurepack.modul_shield
item.modul_oxygen_mask.name=item.futurepack.modul_oxygen_mask
item.modul_oxygen_tank.name=item.futurepack.modul_oxygen_tank
item.modul_paraglider.name=item.futurepack.modul_paraglider
item.modul_magnet.name=item.futurepack.modul_magnet
item.modul_dynamo.name=item.futurepack.modul_dynamo
item.sauerstofftank.name=item.futurepack.oxygen_tank
item.gleiter.name=item.futurepack.gleiter
item.sword_neon.name=item.futurepack.sword_neon
item.sword_retium.name=item.futurepack.sword_retium
item.sword_glowtite.name=item.futurepack.sword_glowtite
item.sword_bioterium.name=item.futurepack.sword_bioterium
item.scrench.name=item.futurepack.scrench
item.composite_fishing_rod.name=item.futurepack.composite_fishing_rod
item.spawnerchest.name=item.futurepack.spawner_chest
item.minerbox.name=item.futurepack.minerbox
item.forstmasterbox.name=item.futurepack.forstmasterbox
item.monocartbox.name=item.futurepack.monocartbox
item.entityegger.name=item.futurepack.entity_egger
item.pearlegger.name=item.futurepack.pearl_egger
item.laser_riffle.name=item.futurepack.laser_rifle
item.laserBow.name=item.futurepack.laser_bow
item.grenade_launcher.name=item.futurepack.grenade_launcher
item.LackTank0.name=item.futurepack.lack_tank_white
item.LackTank1.name=item.futurepack.lack_tank_orange
item.LackTank2.name=item.futurepack.lack_tank_magenta
item.LackTank3.name=item.futurepack.lack_tank_light_blue
item.LackTank4.name=item.futurepack.lack_tank_yellow
item.LackTank5.name=item.futurepack.lack_tank_lime
item.LackTank6.name=item.futurepack.lack_tank_pink
item.LackTank7.name=item.futurepack.lack_tank_gray
item.LackTank8.name=item.futurepack.lack_tank_light_gray
item.LackTank9.name=item.futurepack.lack_tank_cyan
item.LackTank10.name=item.futurepack.lack_tank_purple
item.LackTank11.name=item.futurepack.lack_tank_blue
item.LackTank12.name=item.futurepack.lack_tank_brown
item.LackTank13.name=item.futurepack.lack_tank_green
item.LackTank14.name=item.futurepack.lack_tank_red
item.LackTank15.name=item.futurepack.lack_tank_black
0=item.futurepack.room_analyzer
item.mendel_berry.name=item.futurepack.mendel_berry
tile.glowmelo.name=block.futurepack.glowmelo
item.astrofood1.name=item.futurepack.astrofood1
item.astrofood2.name=item.futurepack.astrofood2
item.astrofood3.name=item.futurepack.astrofood3
item.astrofood4.name=item.futurepack.astrofood4
item.ersemarmelade.name=item.futurepack.ersemarmelade
item.ersebrot.name=item.futurepack.ersebrot
item.glowshroom_raw.name=item.futurepack.glowshroom_raw
item.glowshroom_stew.name=item.futurepack.glowshroom_stew
item.salad.name=item.futurepack.salad
item.hufsteak.name=item.futurepack.hufsteak
item.grillhufsteak.name=item.futurepack.grillhufsteak
tile.topinambur.name=block.futurepack.topinambur
tile.erse.name=block.futurepack.erse
item.mendel_seed.name=item.futurepack.mendel_seed
tile.oxades.name=block.futurepack.oxades
item.spawnnote.name=item.futurepack.spawn_note
item.research_blueprint.name=item.futurepack.research_blueprint
0=block.futurepack.door_tyros
0=block.futurepack.door_palirie
0=block.futurepack.door_menelaus_mushroom
0=block.futurepack.trapdoor_tyros
0=block.futurepack.trapdoor_palirie
0=block.futurepack.trapdoor_menelaus_mushroom
0=block.futurepack.sapling_palirie
0=tooltip.futurepack.block.conduct.neon
0=tooltip.futurepack.block.conduct.redstone
0=tooltip.futurepack.block.conduct.support
tile.insert_node.name=tooltip.futurepack.items.insertnode.joke
0=tooltip.futurepack.item.chip_power
0=tooltip.futurepack.item.core_power
0=tooltip.futurepack.item.shutdown_temp
0=tooltip.futurepack.item.max_temp
0=tooltip.futurepack.item.ram_speed
0=tooltip.futurepack.item.neon
0=tooltip.futurepack.item.support
0=tooltip.futurepack.item.grenade.power
advancements.futurepack.root.title=0
advancements.futurepack.root.description=0
advancements.futurepack.sushi.title=0
advancements.futurepack.sushi.description=0
advancements.futurepack.erse.title=0
advancements.futurepack.erse.description=0
advancements.futurepack.the_impalpable.title=0
advancements.futurepack.the_impalpable.description=0
advancements.futurepack.labor.title=0
advancements.futurepack.labor.description=0
advancements.futurepack.mainboard.title=0
advancements.futurepack.mainboard.description=0
advancements.futurepack.neon_energy.title=0
advancements.futurepack.neon_energy.description=0
advancements.futurepack.not_diamond.title=0
advancements.futurepack.not_diamond.description=0
advancements.futurepack.need_bucket.title=0
advancements.futurepack.need_bucket.description=0
advancements.futurepack.composite.title=0
advancements.futurepack.composite.description=0
advancements.futurepack.menelaus.title=0
advancements.futurepack.menelaus.description=0
advancements.futurepack.metalhaltig.title=0
advancements.futurepack.metalhaltig.description=0
advancements.futurepack.tyros.title=0
advancements.futurepack.tyros.description=0
advancements.futurepack.glowmelow.title=0
advancements.futurepack.glowmelow.description=0
advancements.futurepack.crys_neon.title=0
advancements.futurepack.crys_neon.description=0
advancements.futurepack.crys_alutin.title=0
advancements.futurepack.crys_alutin.description=0
advancements.futurepack.crys_glowtite.title=0
advancements.futurepack.crys_glowtite.description=0
advancements.futurepack.crys_retium.title=0
advancements.futurepack.crys_retium.description=0
advancements.futurepack.crys_bioterium.title=0
advancements.futurepack.crys_bioterium.description=0
advancements.futurepack.laserbow.title=0
advancements.futurepack.laserbow.description=0
0=advancements.futurepack.brain_touch.title
0=advancements.futurepack.brain_touch.description
harvest.tool.shovel.0=0
harvest.tool.pickaxe.0=0
harvest.tool.pickaxe.1=0
harvest.tool.pickaxe.2=0
harvest.tool.pickaxe.3=0
harvest.tool.axe.0=0
harvest.tool.scoop.0=0
scanner.button.0.name=0
scanner.button.1.name=0
scanner.button.2.name=0
scanner.button.3.name=0
gui.scanner.start.name=0
0=gui.futurepack.machine.scrench
0=gui.futurepack.machine.burned
chat.escanner.athmosphere.breathable=0
chat.escanner.athmosphere.filled=0
material.metall=0
chat.beam.noBlockAbove=0
chat.beam.noBlockBelow=0
chat.beam.lowEnergie=0
chat.spaceship.open=0
chat.spaceship.missingEngine=0
chat.spaceship.missingThruster=0
chat.spaceship.lowEnergie=0
chat.spaceship.missingBeam=0
chat.spaceship.missingFuel=0
chat.research.add=0
chat.plasma_core.toobig=0
chat.plasma_core.wrongblock=0
aspect.geologie.name=0
aspect.chemie.name=0
aspect.tierhaltung.name=0
aspect.logistik.name=0
aspect.biologie.name=0
aspect.morphologie.name=0
aspect.metallurgie.name=0
aspect.maschinenbau.name=0
aspect.thermodynamic.name=0
aspect.energieverbindung.name=0
aspect.neonenergie.name=0
aspect.hydraulic.name=0
key.categories.futurepack=0
key.fp.gleiter=0
key.fp.compositearmor=0
key.fp.modul_magnet=0
research.need.advancements.futurepack=0
research.page.base.name=0