-
Notifications
You must be signed in to change notification settings - Fork 46
/
en_US.lang
1874 lines (1870 loc) · 183 KB
/
en_US.lang
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
#
# Enchantments
###################################
enchantment.haste=Haste
enchantment.repair=Repair
enchantment.special.sapless=Lesser Sapping
enchantment.special.sapgreat=Greater Sapping
#
# Infusion Enchantments
###################################
enchantment.infusion.COLLECTOR=Collector
enchantment.infusion.DESTRUCTIVE=Destructive
enchantment.infusion.BURROWING=Burrowing
enchantment.infusion.SOUNDING=Sounding
enchantment.infusion.REFINING=Refining
enchantment.infusion.ARCING=Arcing
enchantment.infusion.ESSENCE=Essence Harvester
#
# Potions
###################################
potion.fluxtaint=Taint Poison
potion.soulshatter=Soul Shatter
potion.visexhaust=Flux Flu
potion.infvisexhaust=Flux Phage
potion.unhunger=Unnatural Hunger
potion.warpward=Warp Ward
potion.deathgaze=Deadly Gaze
potion.blurred=Blurred Vision
potion.sunscorned=Sun Scorned
potion.thaumarhia=Thaumarhia
#
# Warp
###################################
warp.text.1=You feel oddly drained.
warp.text.2=A sudden and unnatural hunger consumes you.
warp.text.hunger.1=Your hunger cannot be satisfied with normal food.
warp.text.hunger.2=You hunger begins to fade.
warp.text.3=Strange whispers reveal secrets to you.
warp.text.4=Your vision becomes strange and grim.
warp.text.5=The light suddenly becomes overwhelmingly bright and burns your skin.
warp.text.6=A thick fog appears from nowhere. Something stirs in its depths.
warp.text.7=They're everywhere! Run!
warp.text.8=Surely there must be a way to stop these headaches?
warp.text.9=You suddenly feel reluctant to break things.
warp.text.10=Your perception suddenly expands.
warp.text.11=What was that noise? Something is behind you.
warp.text.12=Something is following you.
warp.text.13=Something is watching you. Maybe it is time to stop.
warp.text.14=You have a moment of clarity.
warp.text.15=Your stomach suddenly gurgles very strangely.
warp.text.16=The faint sound of chanting can be heard nearby.
#
# Entities
###################################
entity.Thaumcraft.AuraNode.name=Aura Node
entity.Thaumcraft.Golem.name=Golem
entity.Thaumcraft.ThaumSlime.name=Thaumic Slime
entity.Thaumcraft.GolemDart.name=Golem Dart
entity.Thaumcraft.PrimalArrow.name=Primal Arrow
entity.Thaumcraft.FrostShard.name=Frost Shard
entity.Thaumcraft.ExplosiveOrb.name=Explosive Fireball
entity.Thaumcraft.ShockOrb.name=Shocking Orb
entity.Thaumcraft.GolemOrb.name=Energy Orb
entity.Thaumcraft.BottleTaint.name=Bottled Taint
entity.Thaumcraft.Firebat.name=Firebat
entity.Thaumcraft.Wisp.name=Wisp
entity.Thaumcraft.Alumentum.name=Alumentum
entity.Thaumcraft.GiantBrainyZombie.name=Furious Zombie
entity.Thaumcraft.BrainyZombie.name=Angry Zombie
entity.Thaumcraft.FollowItem.name=Following Item
entity.Thaumcraft.SpecialItem.name=Magic Item
entity.Thaumcraft.FallingTaint.name=Tainted Crust
entity.Thaumcraft.AspectOrb.name=Aspect Orb
entity.Thaumcraft.TaintCrawler.name=Tainted Crawler
entity.Thaumcraft.Taintacle.name=Taintacle
entity.Thaumcraft.TaintacleTiny.name=Taint Tendril
entity.Thaumcraft.TaintacleGiant.name=Giant Taintacle
entity.Thaumcraft.TaintSpore.name=Taint Spore
entity.Thaumcraft.TaintSwarmer.name=Taint Spore Swarmer
entity.Thaumcraft.TaintSwarm.name=Taint Swarm
entity.Thaumcraft.TaintedVillager.name=Tainted Villager
entity.Thaumcraft.TaintedChicken.name=Tainted Chicken
entity.Thaumcraft.TaintedRabbit.name=Tainted Rabbit
entity.Thaumcraft.TaintedPig.name=Tainted Pig
entity.Thaumcraft.TaintedSheep.name=Tainted Sheep
entity.Thaumcraft.TaintedCow.name=Tainted Cow
entity.Thaumcraft.TaintedCreeper.name=Tainted Creeper
entity.Thaumcraft.Pech.name=Pech Forager
entity.Thaumcraft.Pech.1.name=Pech Mage
entity.Thaumcraft.Pech.2.name=Pech Stalker
entity.Thaumcraft.PrimalOrb.name=Orb of Primal Energy
entity.Thaumcraft.TravelingTrunk.name=Traveling Trunk
entity.trunk.guiname='s Trunk
entity.trunk.move=The trunk will now follow you
entity.trunk.stay=The trunk will stay where it is
entity.Thaumcraft.MindSpider.name=Mind Spider
entity.Thaumcraft.EldritchGuardian.name=Eldritch Guardian
entity.Thaumcraft.EldritchWarden.name=Eldritch Warden
entity.Thaumcraft.EldritchWarden.name.custom=%s the %d
entity.Thaumcraft.EldritchGolem.name=Eldritch Construct
entity.Thaumcraft.EldritchGolem.name.custom=%s Eldritch Construct
entity.Thaumcraft.EldritchOrb.name=Eldritch Orb
entity.Thaumcraft.CultistKnight.name=Crimson Knight
entity.Thaumcraft.CultistCleric.name=Crimson Cleric
entity.Thaumcraft.CultistLeader.name=Crimson Praetor
entity.Thaumcraft.CultistLeader.name.custom=Praetor %s the %d
entity.Thaumcraft.CultistPortalGreater.name=Greater Crimson Portal
entity.Thaumcraft.CultistPortalLesser.name=Lesser Crimson Portal
entity.Thaumcraft.EldritchCrab.name=Eldritch Crab
entity.Thaumcraft.InhabitedZombie.name=Shambling Husk
entity.Thaumcraft.TurretBasic.name=Automated Crossbow
entity.Thaumcraft.TurretAdvanced.name=Advanced Automated Crossbow
entity.Thaumcraft.TurretFocus.name=Autocaster
entity.Thaumcraft.TurretEldritch.name=Ancient Autocaster
entity.Thaumcraft.NodeMagnet.name=Node Magnet
#
champion.mod.bold=Bold
champion.mod.spine=Spined
champion.mod.armor=Armored
champion.mod.mighty=Mighty
champion.mod.grim=Grim
champion.mod.warded=Warded
champion.mod.warp=Warped
champion.mod.undying=Undying
champion.mod.fiery=Fiery
champion.mod.sickly=Sickly
champion.mod.venomous=Venomous
champion.mod.vampiric=Vampiric
champion.mod.infested=Infested
#
tc.boss.crimson=A ruby portal opens nearby heralding the arrival of the Crimson Cult. You must close the portal quickly!
tc.boss.golem=A lone sentinel stands frozen in this room, but as energy starts crackling through its ancient frame you know it will not stay frozen for long.
tc.boss.warden=Black energy bubbles on the distant pedestal. Something is coming...
tc.boss.taint=An organic rustling comes from the room beyond. The sound of something wrong... something growing...
#
# Blocks
###################################
# World
tile.ore_amber.name=Amber Bearing Stone
tile.ore_cinnabar.name=Cinnabar Ore
tile.crystal_aer.name=Air Crystal
tile.crystal_ignis.name=Fire Crystal
tile.crystal_aqua.name=Water Crystal
tile.crystal_terra.name=Earth Crystal
tile.crystal_ordo.name=Order Crystal
tile.crystal_perditio.name=Entropy Crystal
tile.crystal_vitium.name=Flux Crystal
tile.log.greatwood.name=Greatwood Log
tile.log.silverwood.name=Silverwood Log
tile.leaf.greatwood.name=Greatwood Leaves
tile.leaf.silverwood.name=Silverwood Leaves
tile.taint_log.taintwood.name=Taintwood Log
tile.taint_leaf.taintwood.name=Taintwood Leaves
tile.sapling.greatwood.name=Greatwood Sapling
tile.sapling.silverwood.name=Silverwood Sapling
tile.plank.greatwood.name=Greatwood Planks
tile.plank.silverwood.name=Silverwood Planks
tile.greatwood_stairs.name=Greatwood Stairs
tile.silverwood_stairs.name=Silverwood stairs
tile.stone.arcane.name=Arcane Stone
tile.stone.arcane_brick.name=Arcane Stone Brick
tile.stone.ancient.name=Ancient Stone
tile.stone.ancient_rock.name=Ancient Rock
tile.stone.eldritch.name=Eldritch Stone
tile.stone.ancient_tile.name=Ancient Stone Tile
tile.stone.crust.name=Crusted Stone
tile.stone.crust_glow.name=Glowing Crusted Stone
tile.stone.matrix_speed.name=Infusion Speed Stone
tile.stone.matrix_cost.name=Infusion Cost Stone
tile.stone.ancient_doorway.name=Ancient Doorway
tile.stone.glyphed.name=Glyphed Stone
tile.stone.bedrock.name=Starry Void
tile.stone.porous.name=Porous Stone
tile.arcane_stairs.name=Arcane Stone Stairs
tile.arcane_brick_stairs.name=Arcane Brick Stairs
tile.ancient_stairs.name=Ancient Stone Stairs
tile.translucent.amber_block.name=Amber Block
tile.translucent.amber_brick.name=Amber Bricks
tile.translucent.empty.name=Empty space
tile.slab_wood.greatwood.name=Greatwood Slab
tile.slab_wood.silverwood.name=Silverwood Slab
tile.slab_stone.arcane.name=Arcane Stone Slab
tile.slab_stone.arcane_brick.name=Arcane Brick Slab
tile.slab_stone.ancient.name=Ancient Stone Slab
tile.slab_stone.eldritch.name=Eldritch Stone Slab
tile.shimmerleaf.name=Shimmerleaf
tile.cinderpearl.name=Cinderpearl
tile.vishroom.name=Vishroom
tile.bloom.name=Ethereal Bloom
tile.flux_goo.name=Flux Goo
tile.taint_dust.name=Degraded Taint Dust
tile.loot_urn.common.name=Common Urn
tile.loot_urn.uncommon.name=Uncommon Urn
tile.loot_urn.rare.name=Rare Urn
tile.loot_crate.common.name=Common Crate
tile.loot_crate.uncommon.name=Uncommon Crate
tile.loot_crate.rare.name=Rare Crate
tile.taint_fibre.name=Fibrous Taint
tile.taint.crust.name=Crusted Taint
tile.taint.soil.name=Tainted Soil
tile.taint.geyser.name=Taint Geyser
tile.taint.rock.name=Tainted Rock
tile.taint_feature.name=Swollen Taint
tile.eldritch.altar.name=Eldritch Altar
tile.eldritch.obelisk_base.name=Eldritch Obelisk
tile.eldritch.obelisk_body.name=Eldritch Obelisk
tile.eldritch.cap.name=Eldritch Capstone
tile.eldritch.lock.name=Ancient Locking Mechanism
tile.eldritch.door.name=Ancient Doorway
tile.eldritch.teleporter.name=Eldritch Portal
tile.eldritch.crabspawner.name=Crusted Opening
tile.grass_ambient.name=Ambient Grass Block
#
# Doodads
tile.table_stone.name=Stone Table
tile.table_wood.name=Wood Table
tile.candle.white.name=White Tallow Candle
tile.candle.orange.name=Orange Tallow Candle
tile.candle.magenta.name=Magenta Tallow Candle
tile.candle.light_blue.name=Light Blue Tallow Candle
tile.candle.yellow.name=Yellow Tallow Candle
tile.candle.lime.name=Lime Tallow Candle
tile.candle.pink.name=Pink Tallow Candle
tile.candle.gray.name=Gray Tallow Candle
tile.candle.silver.name=Light Gray Tallow Candle
tile.candle.cyan.name=Cyan Tallow Candle
tile.candle.purple.name=Purple Tallow Candle
tile.candle.blue.name=Blue Tallow Candle
tile.candle.brown.name=Brown Tallow Candle
tile.candle.green.name=Green Tallow Candle
tile.candle.red.name=Red Tallow Candle
tile.candle.black.name=Black Tallow Candle
tile.pedestal.normal.name=Arcane Pedestal
tile.pedestal.eldritch.name=Eldritch Pedestal
tile.pedestal.ancient.name=Ancient Pedestal
tile.nitor.white.name=White Nitor
tile.nitor.orange.name=Orange Nitor
tile.nitor.magenta.name=Magenta Nitor
tile.nitor.light_blue.name=Light Blue Nitor
tile.nitor.yellow.name=Yellow Nitor
tile.nitor.lime.name=Lime Nitor
tile.nitor.pink.name=Pink Nitor
tile.nitor.gray.name=Gray Nitor
tile.nitor.silver.name=Light Gray Nitor
tile.nitor.cyan.name=Cyan Nitor
tile.nitor.purple.name=Purple Nitor
tile.nitor.blue.name=Blue Nitor
tile.nitor.brown.name=Brown Nitor
tile.nitor.green.name=Green Nitor
tile.nitor.red.name=Red Nitor
tile.nitor.black.name=Black Nitor
tile.banner.cultist.name=Crimson Cult Banner
tile.banner.white.name=White Banner
tile.banner.orange.name=Orange Banner
tile.banner.magenta.name=Magenta Banner
tile.banner.light_blue.name=Light Blue Banner
tile.banner.yellow.name=Yellow Banner
tile.banner.lime.name=Lime Banner
tile.banner.pink.name=Pink Banner
tile.banner.gray.name=Gray Banner
tile.banner.silver.name=Light Gray Banner
tile.banner.cyan.name=Cyan Banner
tile.banner.purple.name=Purple Banner
tile.banner.blue.name=Blue Banner
tile.banner.brown.name=Brown Banner
tile.banner.green.name=Green Banner
tile.banner.red.name=Red Banner
tile.banner.black.name=Black Banner
tile.metal.thaumium.name=Thaumium Block
tile.metal.void.name=Void Metal Block
tile.metal.alchemical.name=Alchemical Construct
tile.metal.advanced_alchemical.name=Advanced Alchemical Construct
tile.metal.brass.name=Brass Block
tile.paving_stone.barrier.name=Barrier Stone
tile.paving_stone.travel.name=Paving Stone of Travel
tile.flesh_block.name=Block of Flesh
tile.redstone_relay.name=Redstone Relay
tile.pattern_crafter.name=Arcane Pattern Crafter
#
# Misc
tile.hole.name=Dimensional Tear
tile.vacuum.name=Deadly Void
tile.effect.shock.name=Static Field
tile.effect.sapping.name=Sapping Field
tile.effect.glimmer.name=Glimmer
tile.purifying_fluid.name=Purifying Fluid
tile.liquid_death.name=Liquid Death
tile.placeholder.furnace_brick.name=Infernal Furnace
tile.placeholder.furnace_obsidian.name=Infernal Furnace
tile.placeholder.gb_anvil.name=Golem Press
tile.placeholder.gb_table.name=Golem Press
tile.placeholder.gb_bars.name=Golem Press
tile.placeholder.gb_cauldron.name=Golem Press
tile.barrier.name=Warding Aura
#
# Machines
tile.research_table.name=Research Table
tile.arcane_workbench.name=Arcane Workbench
tile.arcane_workbench_charger.name=Arcane Workbench Charger
tile.wand_workbench.name=Focal Manipulator
tile.crucible.name=Crucible
tile.arcane_ear.name=Arcane Ear
tile.levitator.name=Arcane Levitator
tile.bellows.name=Arcane Bellows
tile.dioptra.name=Thaumic Dioptra
tile.water_jug.name=Everfull Urn
tile.recharge_pedestal.name=Recharge Pedestal
tile.hungry_chest.name=Hungry Chest
tile.lamp_arcane.name=Arcane Lamp
tile.lamp_growth.name=Lamp of Growth
tile.lamp_fertility.name=Lamp of Fertility
tile.jar.jar_normal.name=Warded Jar
tile.jar.jar_void.name=Void Jar
tile.jar.jar_brain.name=Brain in a Jar
tile.tube.tube_normal.name=Essentia Tube
tile.tube.tube_valve.name=Essentia Valve
tile.tube.tube_filter.name=Filtered Essentia Tube
tile.tube.tube_restrict.name=Restricted Essentia Tube
tile.tube.tube_oneway.name=Directional Essentia Tube
tile.tube.tube_buffer.name=Essentia Buffer
tile.smelter_basic.name=Essentia Smeltery
tile.smelter_thaumium.name=Thaumium Essentia Smeltery
tile.smelter_void.name=Void Metal Essentia Smeltery
tile.alembic.alembic_normal.name=Arcane Alembic
tile.smelter_aux.name=Auxiliary Slurry Pump
tile.smelter_vent.name=Auxiliary Venting Port
tile.arcane_bore_base.name=Arcane Bore Base
tile.arcane_bore.name=Arcane Bore
tile.thaumatorium.name=Thaumatorium
tile.brain_box.name=Mnemonic Matrix
tile.pillar.pillar_normal.name=Infusion Pillar
tile.pillar.pillar_ancient.name=Ancient Infusion Pillar
tile.pillar.pillar_eldritch.name=Eldritch Infusion Pillar
tile.infusion_matrix.name=Runic Matrix
tile.aura_totem.push.name=Aura Totem of Dispersal
tile.aura_totem.pull.name=Aura Totem of Attraction
tile.aura_totem.pole_inner.name=Totem Pole Inner
tile.aura_totem.pole_outer.name=Totem Pole Outer
tile.aura_totem.pole_pure.name=Stabilizing Totem Pole
tile.centrifuge.name=Essentia Centrifuge
tile.crystallizer.name=Essentia Crystallizer
tile.spa.name=Arcane Spa
tile.mirror.name=Magic Mirror
tile.mirror_essentia.name=Essentia Mirror
tile.golem_builder.name=Golem Press
tile.node_stabilizer.name=Node Stabilizer
tile.essentia_input.name=Filling Essentia Transfuser
tile.essentia_output.name=Emptying Essentia Transfuser
#
# Items
###################################
# Raw Materials
item.amber.name=Amber
item.quicksilver.name=Quicksilver
item.shard.air.name=Air Shard
item.shard.fire.name=Fire Shard
item.shard.water.name=Water Shard
item.shard.earth.name=Earth Shard
item.shard.order.name=Order Shard
item.shard.entropy.name=Entropy Shard
item.shard.balanced.name=Balanced Shard
item.shard.flux.name=Tainted Shard
item.ingot.thaumium.name=Thaumium Ingot
item.ingot.void.name=Void Metal Ingot
item.ingot.brass.name=Alchemical Brass Ingot
item.nugget.iron.name=Iron Nugget
item.nugget.copper.name=Copper Nugget
item.nugget.tin.name=Tin Nugget
item.nugget.silver.name=Silver Nugget
item.nugget.lead.name=Lead Nugget
item.nugget.quicksilver.name=Quicksilver Drop
item.nugget.thaumium.name=Thaumium Nugget
item.nugget.void.name=Void Metal Nugget
item.nugget.brass.name=Alchemical Brass Nugget
item.cluster.iron.name=Native Iron Cluster
item.cluster.copper.name=Native Copper Cluster
item.cluster.tin.name=Native Tin Cluster
item.cluster.silver.name=Native Silver Cluster
item.cluster.lead.name=Native Lead Cluster
item.cluster.cinnabar.name=Native Cinnabar Cluster
item.cluster.gold.name=Native Gold Cluster
#
# Resources
item.filter.name=Essentia Filter
item.morphic_resonator.name=Morphic Resonator
item.tallow.name=Magic Tallow
item.void_seed.name=Void Seed
item.salis_mundus.name=Salis Mundus
item.primal_charm.name=Primal Charm
item.mirrored_glass.name=Mirrored Glass
item.plate.brass.name=Brass Plate
item.plate.iron.name=Iron Plate
item.plate.thaumium.name=Thaumium Plate
item.plate.void.name=Void Metal Plate
item.gear.brass.name=Brass Gear
item.gear.thaumium.name=Thaumium Gear
item.gear.void.name=Void Metal Gear
item.wisp_essence.name=Ethereal Essence
item.fabric.name=Enchanted Fabric
item.crystal_essence.name=Crystallized Essence
item.crystal_essence.balanced.name=Balanced Crystallized Essence
item.wispy_essence.name=Wispy Essence
item.phial.empty.name=Glass Phial
item.phial.filled.name=Phial of Essentia
item.label.blank.name=Blank Label
item.label.filled.name=Marked Label
item.mind.clockwork.name=Clockwork Mind
item.mind.biothaumic.name=Biothaumic Mind
#
# Consumables
item.alumentum.name=Alumentum
item.brain.name=Zombie Brain
item.chunk.chicken.name=Chicken Nugget
item.chunk.beef.name=Beef Nugget
item.chunk.pork.name=Pork Nugget
item.chunk.fish.name=Fish Nugget
item.chunk.rabbit.name=Rabbit Nugget
item.chunk.mutton.name=Mutton Nugget
item.triple_meat_treat.name=Triple Meat Treat
item.bath_salts.name=Purifying Bath Salts
item.bucket_death.name=Bucket of Liquid Death
item.bucket_pure.name=Bucket of Purifying Fluid
item.bottle_taint.name=Bottle of Taint
item.sanity_soap.name=Sanitizing Soap
item.loot_bag.common.name=Common Treasure
item.loot_bag.uncommon.name=Uncommon Treasure
item.loot_bag.rare.name=Rare Treasure
tc.lootbag=Click to open or keep to trade
item.turret.basic.name=Automated Crossbow
item.turret.advanced.name=Advanced Automated Crossbow
item.turret.focus.name=Autocaster
item.turret.magnet.name=Node Magnet
#
# Tools
item.thaumonomicon.name=Thaumonomicon
item.thaumonomicon.cheat.name=Cheaters Thaumonomicon
item.thaumometer.name=Thaumometer
item.sanity_checker.name=Sanity Checker
item.resonator.name=Essentia Resonator
item.sinister_stone.name=Sinister Lodestone
item.scribing_tools.name=Scribing Tools
item.thaumium_shovel.name=Thaumium Shovel
item.thaumium_axe.name=Thaumium Axe
item.thaumium_sword.name=Thaumium Sword
item.thaumium_pick.name=Thaumium Pickaxe
item.thaumium_hoe.name=Thaumium Hoe
item.elemental_shovel.name=Shovel of the Earthmover
item.elemental_pick.name=Pickaxe of the Core
item.elemental_axe.name=Axe of the Stream
item.elemental_hoe.name=Hoe of Growth
item.elemental_sword.name=Sword of the Zephyr
item.void_shovel.name=Void Shovel
item.void_axe.name=Void Axe
item.void_sword.name=Void Sword
item.void_pick.name=Void Pickaxe
item.void_hoe.name=Void Hoe
item.crimson_blade.name=Crimson Blade
item.primal_crusher.name=Primal Crusher
item.bone_bow.name=Bow of Bone
item.primal_arrow.air.name=Air Arrow
item.primal_arrow.fire.name=Fire Arrow
item.primal_arrow.water.name=Water Arrow
item.primal_arrow.earth.name=Earth Arrow
item.primal_arrow.order.name=Order Arrow
item.primal_arrow.entropy.name=Entropy Arrow
item.hand_mirror.name=Magic Hand Mirror
# Armor
item.goggles.name=Goggles of Revealing
item.fortress_helm.name=Thaumium Fortress Helm
item.fortress_helm.mask.0=Grinning Devil
item.fortress_helm.mask.1=Angry Ghost
item.fortress_helm.mask.2=Sipping Fiend
item.fortress_chest.name=Thaumium Fortress Cuirass
item.fortress_legs.name=Thaumium Fortress Thigh Guards
item.thaumium_helm.name=Thaumium Helm
item.thaumium_chest.name=Thaumium Chestplate
item.thaumium_legs.name=Thaumium Leggings
item.thaumium_boots.name=Thaumium Boots
item.cloth_chest.name=Thaumaturge's Robe
item.cloth_legs.name=Thaumaturge's Leggings
item.cloth_boots.name=Thaumaturge's Boots
item.void_helm.name=Void Helm
item.void_chest.name=Void Chestplate
item.void_legs.name=Void Leggings
item.void_boots.name=Void Boots
item.void_robe_helm.name=Void Thaumaturge Hood
item.void_robe_chest.name=Void Thaumaturge Robe
item.void_robe_legs.name=Void Thaumaturge Leggings
item.crimson_boots.name=Crimson Cult Boots
item.crimson_robe_helm.name=Crimson Cult Hood
item.crimson_robe_chest.name=Crimson Cult Robe
item.crimson_robe_legs.name=Crimson Cult Leggings
item.crimson_plate_helm.name=Crimson Cult Helm
item.crimson_plate_chest.name=Crimson Cult Chestplate
item.crimson_plate_legs.name=Crimson Cult Greaves
item.crimson_praetor_helm.name=Crimson Praetor Helm
item.crimson_praetor_chest.name=Crimson Praetor Chestplate
item.crimson_praetor_legs.name=Crimson Praetor Greaves
item.thaumostatic_harness.name=Thaumostatic Harness
item.traveller_boots.name=Boots of the Traveller
# Baubles
item.amulet_runic.0.name=Amulet of Runic Shielding
item.amulet_runic.1.name=Amulet of Emergency Shielding
item.ring_runic.0.name=Ring of Protection
item.ring_runic.1.name=Ring of Runic Shielding
item.ring_runic.2.name=Charged Ring of Shielding
item.ring_runic.3.name=Revitalizing Ring of Shielding
item.girdle_runic.0.name=Girdle of Runic Shielding
item.girdle_runic.1.name=Kinetic Girdle of Shielding
item.baubles.0.name=Mundane Amulet
item.baubles.1.name=Mundane Ring
item.baubles.2.name=Mundane Belt
item.baubles.3.name=Apprentices Ring of %TYPE
item.baubles.9.name=Fancy Amulet
item.baubles.10.name=Fancy Ring
item.baubles.11.name=Fancy Belt
item.amulet_vis.text=Recharges wands in hotbar
item.amulet_vis.0.name=Vis Stone
item.amulet_vis.1.name=Amulet of Vis
item.girdle_hover.name=Thaumostatic Girdle
item.ring_verdant.name=Verdant Heart Band
item.verdant.life.text=Lifegiver
item.verdant.sustain.text=Sustainer
# Wand
item.focus_fire.name=Wand Focus: Fire
item.focus_hellbat.name=Wand Focus: Nine Hells
item.focus_shock.name=Wand Focus: Shock
item.focus_equal_trade.name=Wand Focus: Equal Trade
item.focus_frost.name=Wand Focus: Frost
item.focus_excavation.name=Wand Focus: Excavation
item.focus_hole.name=Wand Focus: Portable Hole
item.focus_pech.name=Wand Focus: Pech's Curse
item.focus_warding.name=Wand Focus: Warding
item.focus_primal.name=Wand Focus: Primal
item.focus_shard.name=Wand Focus: Vis Shard
item.focus_grapple.name=Wand Focus: Grappler
item.focus_builder.name=Wand Focus: Builder
item.wand_cap.iron.name=Iron Cap
item.wand_cap.gold.name=Gold Cap
item.wand_cap.brass.name=Brass Cap
item.wand_cap.thaumium.name=Charged Thaumium Cap
item.wand_cap.thaumium_inert.name=Inert Thaumium Cap
item.wand_cap.void.name=Charged Void Metal Cap
item.wand_cap.void_inert.name=Inert Void Metal Cap
item.wand_rod.greatwood.name=Greatwood Rod
item.wand_rod.silverwood.name=Silverwood Rod
item.wand_rod.obsidian.name=Obsidian Rod
item.wand_rod.ice.name=Icy Rod
item.wand_rod.quartz.name=Quartz Rod
item.wand_rod.reed.name=Reed Rod
item.wand_rod.blaze.name=Blazing Rod
item.wand_rod.bone.name=Bone Rod
item.wand_rod.greatwood_staff.name=Greatwood Staff Core
item.wand_rod.silverwood_staff.name=Silverwood Staff Core
item.wand_rod.obsidian_staff.name=Obsidian Staff Core
item.wand_rod.ice_staff.name=Icy Staff Core
item.wand_rod.quartz_staff.name=Quartz Staff Core
item.wand_rod.reed_staff.name=Reed Staff Core
item.wand_rod.blaze_staff.name=Blazing Staff Core
item.wand_rod.bone_staff.name=Bone Staff Core
item.wand_rod.primal_staff.name=Staff Core of the Primal
#
item.focus_pouch.name=Focus Pouch
#
item.Wand.name=%CAP %ROD %OBJ
item.Focus.cost1=Vis per cast
item.Focus.cost2=Vis per tick
item.Wand.wand.obj=Wand
item.Wand.sceptre.obj=Scepter
item.Wand.staff.obj=Staff
item.Wand.wood.rod=Wooden
item.Wand.greatwood.rod=Greatwood
item.Wand.silverwood.rod=Silverwood
item.Wand.obsidian.rod=Obsidian
item.Wand.blaze.rod=Blazing
item.Wand.ice.rod=Icy
item.Wand.bone.rod=Bone
item.Wand.reed.rod=Reed
item.Wand.quartz.rod=Quartz
item.Wand.primal.rod=Primal
item.Wand.iron.cap=Iron Capped
item.Wand.brass.cap=Brass Topped
item.Wand.gold.cap=Gold Banded
item.Wand.copper.cap=Copper Capped
item.Wand.silver.cap=Silver Bossed
item.Wand.thaumium.cap=Thaumium Bossed
item.Wand.void.cap=Void Aspected
#
# Misc
item.tainted.slime.name=Tainted Goo
item.tainted.tendril.name=Taint Tendril
item.coin.name=Gold Coin
item.primordial_pearl.name=Primordial Pearl
item.knowledge_fragment.name=Knowledge Fragment
item.knowledge_fragment.help=Use to gain experience
item.eldritch_eye.name=Eldritch Eye
item.crimson_rites.name=Crimson Rites
item.crimson_rites.text.0=The book is filled with strange symbols.
item.crimson_rites.text.1=Click to study it.
item.runed_tablet.name=Runed Tablet
item.runed_tablet.text=It seems to be part of something larger.
item.research_notes.name=Research Notes
item.research_notes.discovery.name=Discovery
item.researchnotes.learn=Right click to learn this discovery
item.creative_placer.obelisk.name=Obelisk Placer
item.creative_placer.node.name=Node Placer
item.creative_placer.caster.name=Ancient Autocaster Placer
item.creative_flux_sponge.name=Flux Sponge
item.jar_brace.name=Brass Lid Brace
#
# Golem
item.module.vision.name=Vision Module
item.module.aggression.name=Aggression Module
item.golem_bell.name=Golemancer's Bell
item.golem.name=Golem
item.seal.blank.name=Blank Seal
item.seal.pickup.name=Control Seal: Collect
item.seal.pickup_advanced.name=Advanced Control Seal: Collect
item.seal.fill.name=Control Seal: Store
item.seal.fill_advanced.name=Advanced Control Seal: Store
item.seal.empty.name=Control Seal: Empty
item.seal.empty_advanced.name=Advanced Control Seal: Empty
item.seal.harvest.name=Control Seal: Harvest
item.seal.butcher.name=Control Seal: Butcher
item.seal.guard.name=Control Seal: Guard
item.seal.guard_advanced.name=Advanced Control Seal: Guard
item.seal.lumber.name=Control Seal: Lumberjack
item.seal.breaker.name=Control Seal: Block Breaker
item.seal.use.name=Control Seal: Use
item.seal.provider.name=Control Seal: Provide
#
# Text
item.runic.charge=Runic shield
item.warping=Warping
item.capacity.text=Capacity
item.chargebonus.text=Charge
#
# Golems
########################
# Traits
golem.trait.deft=Deft
golem.trait.text.deft=This golem has a great deal of manual dexterity and can perform tasks requiring precision and a delicate touch. Counters and countered by Clumsy.
golem.trait.clumsy=Clumsy
golem.trait.text.clumsy=This golem has almost no manual dexterity and cannot perform tasks requiring more than the most basic kind of interaction. Counters and countered by Deft.
golem.trait.smart=Smart
golem.trait.text.smart=This golem is nearly sentient with greater reasoning and decision making capabilities.
golem.trait.wheeled=Wheeled
golem.trait.text.wheeled=The golem propels itself using wheels. This gives it greater speed, but it is unable to jump or navigate steep slopes.
golem.trait.light=Light Frame
golem.trait.text.light=The golem is lighter than average which gives it increased speed and agility. Counters and countered by Heavy.
golem.trait.heavy=Heavy Frame
golem.trait.text.heavy=The golem is heavier than average which reduces its speed and agility. Counters and countered by Light.
golem.trait.fragile=Fragile
golem.trait.text.fragile=The golem is contructed from delicate components or weak materials which reduces its life total and armor rating. Counters and countered by Armored.
golem.trait.armored=Armored
golem.trait.text.armored=The golem is reinforced with additional material which increases its armor rating. Counters and countered by Fragile.
golem.trait.repair=Improved Self Repair
golem.trait.text.repair=The golem repairs any damage suffered at more than double the normal rate.
golem.trait.fighter=Fighter
golem.trait.text.fighter=The golem is capable of taking hostile action against other entities.
golem.trait.flyer=Flyer
golem.trait.text.flyer=The golem is capable of flight, giving it greater mobility at the cost of speed.
golem.trait.climber=Climber
golem.trait.text.climber=Sheer cliffs to not deter this golem. It can easily scale them to get to its destination.
golem.trait.scout=Scout
golem.trait.text.scout=The golem has a greater visual range and can operate in a much greater area (32 blocks range from home location instead of 16).
golem.trait.fireproof=Fireproof
golem.trait.text.fireproof=The golem is immune to fire damage.
golem.trait.brutal=Brutal
golem.trait.text.brutal=This golem inflicts greater melee damage in combat.
golem.trait.breaker=Breaker
golem.trait.text.breaker=This golem is capable of destroying most blocks with ease.
golem.trait.hauler=Hauler
golem.trait.text.hauler=Allows the golem to carry two stack of items instead of one.
golem.trait.ranged=Ranged
golem.trait.text.ranged=The golem can attack targets at range.
golem.trait.blastproof=Blastproof
golem.trait.text.blastproof=The golem is highly resistant to explosion damage.
#
# Props
golem.material.wood=Greatwood
golem.material.text.wood=The golem is crafted from greatwood. It is light and agile, but not particularly sturdy.
golem.material.iron=Iron
golem.material.text.iron=The golem is crafted from iron. It is sturdy and fireproof, but heavy.
golem.material.brass=Brass
golem.material.text.brass=The golem is crafted from brass. It is not as sturdy as iron nor as resistant to fire. Normally brass is heavier than iron, but it allows for superior construction methods which results in a much lighter frame.
golem.material.clay=Clay
golem.material.text.clay=The golem is crafted from baked clay. It is not a particularly sturdy material, but the resulting golem is fireproof and relatively light.
golem.material.thaumium=Thaumium
golem.material.text.thaumium=The golem is crafted from thaumium. It shares many characteristics with iron, though it is sturdier and more resistant to damage.
golem.material.void=Void Metal
golem.material.text.void=The golem is crafted from void metal. Slightly softer than iron, this metal makes up for it by being lighter and able to repair itself.
#
golem.head.basic=Clockwork head
golem.head.text.basic=The default golem head. No particular strengths or weaknesses.
golem.head.smart=Smart head
golem.head.text.smart=This head contains an advanced biothaumic brain, giving the golem greater capabilities and the ability to learn.
golem.head.smart_armored=Armored smart head
golem.head.text.smart_armored=The smart head enhanced with additional armor and padding.
golem.head.scout=Perceptive head
golem.head.text.scout=The basic clockwork head enchanced with improved biothaumic eyes.
golem.head.smart_scout=Biothaumic head
golem.head.text.smart_scout=Using both biothaumic eyes and brain, this head is the pinnacle of the biothaumic art.
#
golem.arm.basic=Basic arms
golem.arm.text.basic=The default golem arms and hands. No particular strengths or weaknesses.
golem.arm.fine=Fine manipulators
golem.arm.text.fine=These arms end in delicate and dexterous hands.
golem.arm.claws=Claw arms
golem.arm.text.claws=These arms end in a terrifying pair of razor sharp metal pincers. Comes with a built-in aggression module.
golem.arm.breakers=Breaker arms
golem.arm.text.breakers=These arms end in a pair of pneumatic, diamond tipped grinders.
golem.arm.darts=Dart launchers
golem.arm.text.darts=These arms end in a pair of pneumatic dart launchers. The darts are magically created as they are needed. Comes with a built-in aggression module.
#
golem.leg.walker=Basic legs
golem.leg.text.walker=A pair of simple legs. No particular strengths or weaknesses.
golem.leg.roller=Uni-wheel
golem.leg.text.roller=A single wheel. Quite fast, but incapable of jumping or going up steep hills.
golem.leg.climber=Climbing legs
golem.leg.text.climber=A pair of simple legs enhanced with crampons and other devices allowing for vertical ascent.
golem.leg.flyer=Levitation module
golem.leg.text.flyer=A modified arcane levitator granting the golem the power of flight. Reduces speed by a third.
#
golem.addon.armored=Armor plating
golem.addon.text.armored=Grants the golem increased durability.
golem.addon.fighter=Aggression module
golem.addon.text.fighter=Allows the golem to engage in combat.
golem.addon.hauler=Carry Frame
golem.addon.text.hauler=Allows the golem to carry two stack of items instead of one.
#
golem.follow=I'm coming Master
golem.stay=I will stay here Master
#
# Fluids
##############################
fluid.fluxGoo=Flux Goo
fluid.fluxGas=Flux Gas
fluid.purifying_fluid=Purifying Fluid
fluid.liquid_death=Liquid Death
#
# General Focus Upgrades
##############################
focus.upgrade.potency.name=Potency
focus.upgrade.potency.text=This upgrade increases the damage or strength of the focus's powers. The exact damage increase varies from focus to focus, but is usually about 20% per level.
focus.upgrade.frugal.name=Frugal
focus.upgrade.frugal.text=This upgrade reduces the vis cost of activating the focus's powers by 10% per level.
focus.upgrade.treasure.name=Treasure
focus.upgrade.treasure.text=This upgrade acts like the Fortune or Looting enchantments. It increases the chance of getting more/better loot.
focus.upgrade.enlarge.name=Enlarge
focus.upgrade.enlarge.text=This upgrade increases how large an area the focus's powers effect, or increases the number of targets effected.
focus.upgrade.extend.name=Extend
focus.upgrade.extend.text=This upgrade increases the duration of any effects the upgrade might create.
focus.upgrade.architect.name=Architect
focus.upgrade.architect.text=This upgrade gives a lot more control over the area certain foci effect. The exact area that will be effected is displayed and you can change the size using the misc wand toggle key (default G). Sneak+G allows you to toggle which dimensions you can change.
#
# Specific Focus Upgrades
##############################
focus.upgrade.chainlightning.name=Chain Lightning
focus.upgrade.chainlightning.text=This upgrade reduces the speed at which the focus fires bolts, but the damage is increased and the bolt can chain to up to two additional targets.
focus.upgrade.earthshock.name=Earth Shock
focus.upgrade.earthshock.text=Instead of a bolt of lightning, the focus now lobs a ball of electrical energy. It inflicts damage in an area around where it hits and leaves the ground dangerously electrified for some time.
focus.upgrade.fireball.name=Fireball
focus.upgrade.fireball.text=The focus will now produce a explosive ball of fire you can hurl at your foes. The Alchemists Fire upgrade causes it to also set the ground aflame around the point of impact.
focus.upgrade.firebeam.name=Fire Beam
focus.upgrade.firebeam.text=The focus now emits a narrow stream of fire instead of a wide swathe. It burns through anything it touches inflicting massive damage.
focus.upgrade.batbombs.name=Bat Bombs
focus.upgrade.batbombs.text=This upgrade will make the summoned firebats even more volatile. They always explode when they contact their target and the explosion will be a lot more potent than normal.
focus.upgrade.devilbats.name=Devil Bats
focus.upgrade.devilbats.text=With this upgrade applied the summoned bats are larger, tougher and nastier. They will never explode, but keep attacking their target till it expires or they are slain.
focus.upgrade.vampirebats.name=Vampire Bats
focus.upgrade.vampirebats.text=This upgrade changes the summoned bats into vampire bats. Not only will they suck the life out of their target to replenish their own, but some of the stolen life force is given to their summoner.
focus.upgrade.scattershot.name=Scattershot
focus.upgrade.scattershot.text=Instead of a single shard of ice, the focus will now fire multiple shards. Each shard does minimal damage, but a concentrated volley of them can do significant damage to a single target.
focus.upgrade.iceboulder.name=Ice Boulder
focus.upgrade.iceboulder.text=The focus will now create a large boulder of ice. The boulder has a tendancy to bounce around making it deadly in skilled hands.
focus.upgrade.alchemistsfire.name=Alchemist's Fire
focus.upgrade.alchemistsfire.text=This increases the potency of the elemental fire in the focus. Any targets set alight will burn for much longer.
focus.upgrade.alchemistsfrost.name=Alchemist's Frost
focus.upgrade.alchemistsfrost.text=This increases the potency of the elemental cold in the focus. When the focus targets or damages a creature it will be chilled and slowed significantly.
focus.upgrade.nightshade.name=Nightshade
focus.upgrade.nightshade.text=Normally the Pech's curse focus inflicts one of a small handful of debilitating effects. With this upgrade it will inflict all of them at once.
focus.upgrade.silktouch.name=Silk Touch
focus.upgrade.silktouch.text=Like the enchantment of the same name, this upgrade allows you to pick up harvested blocks as-is instead of gaining the normal drops.
focus.upgrade.seeker.name=Seeker
focus.upgrade.seeker.text=This upgrade makes the orbs created by the primal focus seek out the nearest living target and not wander all over the place. This makes them a lot more stable which also means they won't do anything unusual beyond exploding.
focus.upgrade.dowsing.name=Dowsing
focus.upgrade.dowsing.text=This upgrade gives the excavation focus a small chance to mine native clusters instead of normal ores. These clusters usually give double the number of ingots when smelted.
focus.upgrade.persistant.name=Persistant
focus.upgrade.persistant.text=When the target if this focus dies, disappears or moves out of range, the missile will seek another target of the same type nearby.
focus.upgrade.sticky.name=Sticky
focus.upgrade.sticky.text=The grapple does not automatically detach when you get close enough - you must manually detach from it.
#
# GUI
###################
recipe.return=Return
recipe.clickthrough=Click for research
recipe.type.workbench=Workbench
recipe.type.smelting=Smelting
recipe.type.workbenchshapeless=Workbench (Shapeless)
recipe.type.arcane=Arcane Workbench
recipe.type.crucible=Crucible
recipe.type.infusion=Arcane Infusion
recipe.type.construct=Mystical Construct
wandtable.text1=Vis Cost
wandtable.text2=Experience Cost
wandtable.text3=Start Upgrade
button.turretfocus.1=Target Animals
button.turretfocus.2=Target Mobs
button.turretfocus.3=Target Players
button.turretfocus.4=Target Friendly
turretfocus.range=Range %t blocks
button.category.0=Priority/Locking
button.category.1=Filter
button.category.2=Area
button.category.3=Options
button.category.4=Requirements
button.caption.x=East / West
button.caption.y=Up / Down
button.caption.z=North / South
button.bl=Blacklist
button.wl=Whitelist
button.caption.required=Required
button.caption.forbidden=Forbidden
golem.prop.replant=Replant crops
golem.prop.cycle=Cycle whitelist
golem.prop.meta=Use metadata
golem.prop.nbt=Use NBT data
golem.prop.ore=Use Ore Dictionary
golem.prop.mod=Use from same mod
golem.prop.mob=Target Mobs
golem.prop.animal=Target Animals
golem.prop.player=Target Players
golem.prop.left=Left click
golem.prop.empty=Click empty air
golem.prop.emptyhand=Can use empty hand
golem.prop.sneak=Simulate sneaky click
golem.prop.single=Single item only
golem.prop.provision=Request provisioning
golem.prop.provision.wl=Request provisioning from whitelist
golem.rank=Rank
golem.prop.priority=Task Priority
golem.prop.color=Set for %s golems
golem.prop.colorall=All golems
golem.prop.owner=You own this seal
golem.prop.lock=Only golems owned by seal owner can perform these tasks
golem.prop.unlock=All golems can perform these tasks
golem.prop.redon=Redstone sensitive
golem.prop.redoff=Ignores Redstone signals
golem.prop.exist=Container must already contain item
golem.prop.leave=Always leave at least 1 item
#
tile.researchtable.noink.0=You have run out of ink!
tile.researchtable.noink.1=Refill your scribing tools.
text.spa.mix.true=Mix with ingredient
text.spa.mix.false=Use just the fluid
#
color.white=White
color.orange=Orange
color.magenta=Magenta
color.light_blue=Light Blue
color.yellow=Yellow
color.lime=Lime
color.pink=Pink
color.gray=Gray
color.silver=Light Gray
color.cyan=Cyan
color.purple=Purple
color.blue=Blue
color.brown=Brown
color.green=Green
color.red=Red
color.black=Black
#
# Other
###################
itemGroup.thaumcraft=Thaumcraft
#
nodetype.0=Normal
nodetype.1=Sinister
nodetype.2=Hungry
nodetype.3=Pure
nodetype.4=Tainted
nodetype.5=Unstable
nodetype.6=Astral
tc.taint_item_poison=A dissolving %s has infected you with Taint
death.attack.taint=%1$s was corrupted by Taint
death.attack.taint.player=%1$s was corrupted by Taint whilst fighting %2$s
death.attack.tentacle=%1$s was squeezed by %2$s
death.attack.swarm=%1$s was infested by %2$s
death.attack.swarm.item=%1$s was infested by %2$s using %3$s
death.attack.dissolve=%1$s was dissolved
death.attack.dissolve.player=%1$s was dissolved whilst fighting %2$s
tc.handmirrorlinkedto=Linked to
tc.handmirrorlinked=Link established.
tc.handmirrorerror=Destination mirror is missing or misplaced. Link broken.
tc.researcherror=You lack the required knowledge to understand this.
tc.researchexists=You already possess this knowledge.
tc.discoveryerror=To understand this you need to study %1$s.
tc.discoveryunknown=Unknown theory
tc.discoveryprogress=% complete
tc.portableholeerror=The portable hole does not have enough charge to do that.
tc.key1=The key has been linked to this arcane door.
tc.key2=The key has been linked to this arcane pressure plate.
tc.key3=You can now open this door.
tc.key4= You can also grant others access.
tc.key5=You will now trigger this pressure plate as if you were its owner.
tc.key6= You can also grant others access and change its settings.
tc.key7=The key is not linked to this.
tc.key8=You already have access.
tc.key9=This key grants access to the
tc.key10=arcane door at
tc.key11=arcane pressure plate at
tc.wandnocharge=The wand does not have enough charge to do that.
tc.wandcharge=This wand currently holds %s vis
tc.jaressentia=Holds %s essentia
tc.jarname=Jar of
tc.markedloc=marked locations
tc.addclue=§aYou have discovered something that could aid future research§0
tc.addpage=§aYou have discovered something new about %1$s§0
tc.addaspect=§aYou have gained practical knowledge of %1$s§0
tc.addwarp=§5You have gained permanent Warp!§0
tc.addwarptemp=§5You have gained temporary Warp!§0
tc.addwarpsticky=§5You have gained Warp!§0
tc.removewarp=§5You have lost permanent Warp!§0
tc.removewarpsticky=§5You have lost Warp!§0
tc.removewarptemp=§5You have lost temporary Warp!§0
tc.forbidden=§l§5Forbidden knowledge (%n)§0
tc.forbidden.level.1=Mostly Harmless
tc.forbidden.level.2=Minor
tc.forbidden.level.3=Moderate
tc.forbidden.level.4=Dangerous
tc.forbidden.level.5=Taboo
tc.unknownobject=Nothing new can be learned from this.
tc.markerchange=Set marker color to %n
tc.markerchangeany=Set to any color
tc.researchmissing=Missing required research!
tc.discount=discount
tc.visdiscount=Vis discount
tc.vis.cost=vis cost
tc.vis.costavg=avg vis cost
tc.charge=Vis charge:
tc.inst=Instability:
tc.inst.0=§1Negligible§0
tc.inst.1=§9Minor§0
tc.inst.2=§5Moderate§0
tc.inst.3=§eHigh§0
tc.inst.4=§6Very High§0
tc.inst.5=§4Dangerous§0
tc.adv=Advanced
tc.thaumometer=Press '$s' to change what is displayed
tc.resonator1=§9Contains %1$s %2$s essentia§0
tc.resonator2=§5Suction %1$s %2$s §0
tc.resonator3=Untyped
tc.search=Search
tc.search.more=...too many results found. Refine your search
tc.research.newpage=§aNew page added§0
tc.research.newresearch=§6Newly discovered research§0
tc.research.purchase=Click to purchase this research with %1$s experience level(s).
tc.research.short=You need %1$s experience level(s) to purchase this.
tc.research.getprim=Click to get a research note for this research.
tc.research.shortprim=You need scribing tools and paper to get this research note.
tc.research.hasnote=You already have this research note in your inventory.
tc.research.popup=Research note added to your inventory for %1$s.
tc.research.add=Click to consume fragment and add 1 of each primal.
tc.primalcharm.0=It seems to be leaking
tc.primalcharm.1=You think you hear whispering
tc.primalcharm.2=It is vibrating violently
tc.primalcharm.3=It's humming is quite soothing
tc.primalcharm.4=Wait, did it just flash a seventh color?
tc.primalcharm.trigger=For a moment strange energies surround the primal charm. They dissipate quickly, but you are left strangely inspired...
tc.break.fly=Something disrupts your ability to fly.
tc.boss.enrage=is enraged by your powerful blows.
tc.levitator=Range set to %s blocks. (%d vis/minute)
tc.dioptra.1=Showing %s levels in the aura.
tc.dioptra.2=Showing highest aura levels.
tc.dioptra.3=Showing aura level ratios.
tc.notowned=This does not belong to you.
tc.fluxevent.1=The nearby aura suddenly twists and warps, leaving your thoughts in a shambles.
tc.fluxevent.2=The local aura momentarily becomes unstable, hampering your magical ability.
#
# Aspects
tc.aspect.primal=Primal Aspect
tc.aspect.unknown=Unknown Aspect
tc.aspect.aer=Air
tc.aspect.terra=Earth
tc.aspect.ignis=Fire
tc.aspect.aqua=Water
tc.aspect.ordo=Order, Regularity, Purity
tc.aspect.perditio=Entropy, Chaos, Destruction
tc.aspect.vacuos=Void
tc.aspect.auram=Aura
tc.aspect.vitium=Taint, Change, Mutation
tc.aspect.lux=Light
tc.aspect.potentia=Energy, Power
tc.aspect.motus=Motion, Animation