forked from PathOfBuildingCommunity/PathOfBuilding-PoE2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlavourText.lua
More file actions
3002 lines (3001 loc) · 65.9 KB
/
Copy pathFlavourText.lua
File metadata and controls
3002 lines (3001 loc) · 65.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
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
-- This file is automatically generated, do not edit!
-- Flavour text data (c) Grinding Gear Games
return {
[1] = {
id = "FourUniqueBodyStr1",
name = "Bramblejack",
text = {
"It is safer to be feared than to be loved.",
},
},
[2] = {
id = "FourUniqueBodyStr2",
name = "Blackbraid",
text = {
"An Ezomyte endures.",
},
},
[3] = {
id = "FourUniqueBodyStr3",
name = "Edyrn's Tusks",
text = {
"In death, the legendary boar's tusks were turned",
"to the slaying of Phaaryl's Eternal oppressors.",
},
},
[4] = {
id = "FourUniqueBodyStr4",
name = "The Road Warrior",
text = {
"That most legendary caravan bandit had",
"one rule: never let them see you flinch.",
},
},
[5] = {
id = "FourUniqueBodyStr5",
name = "Titanrot Cataphract",
text = {
"Not the sound of thunder on the wind, but the",
"rhoaback riders—death charging from the sands.",
},
},
[6] = {
id = "FourUniqueBodyStr6",
name = "Wandering Reliquary",
text = {
"Knowing she could outlast any opponent,",
"Wrashmin fought not to win, but to delay.",
},
},
[7] = {
id = "FourUniqueBodyStr7",
name = "Kingsguard",
text = {
"The toughest armour is the trust of your people.",
},
},
[8] = {
id = "FourUniqueBodyStr8",
name = "Greed's Embrace",
text = {
"Some would question if the risk was worth it.",
"The rest were already dead.",
},
},
[9] = {
id = "FourUniqueBodyStr12_",
name = "The Brass Dome",
text = {
"The turtle's shell one day becomes its tomb.",
},
},
[10] = {
id = "FourUniqueBodyStr14",
name = "Kaom's Heart",
text = {
"The warrior who fears will fall.",
},
},
[11] = {
id = "FourUniqueBodyDex1",
name = "Bristleboar",
text = {
"When cornered and desperate, look within for the rage to break loose.",
},
},
[12] = {
id = "FourUniqueBodyDex2",
name = "Foxshade",
text = {
"To catch an animal, think like an animal.",
},
},
[13] = {
id = "FourUniqueBodyDex3",
name = "Ashrend",
text = {
"The blasted oak stands forever.",
},
},
[14] = {
id = "FourUniqueBodyDex4",
name = "Sands of Silk",
text = {
"The desert is ever flowing.",
},
},
[15] = {
id = "FourUniqueBodyDex5",
name = "Briskwrap",
text = {
"\"I carry neither food nor drink. I rely on the charity",
"of my fellow wayfarers. Dead men are generous men.\"",
"- Taruk of the Wildmen",
},
},
[16] = {
id = "FourUniqueBodyDex6",
name = "Dustbloom",
text = {
"Wraeclast has suffered many great disasters,",
"but life always springs back anew.",
},
},
[17] = {
id = "FourUniqueBodyDex7",
name = "The Rat Cage",
text = {
"The truth lies inside every man, if you dig around.",
"Many a confession was found in the bowels of Axiom.",
},
},
[18] = {
id = "FourUniqueBodyDex8",
name = "Quatl's Molt",
text = {
"As the serpent wills.",
},
},
[19] = {
id = "FourUniqueBodyDex10",
name = "Queen of the Forest",
text = {
"Shedding away her regal past,",
"she forged a new destiny.",
"Sacrificing the ephemeral joys of man,",
"she embraced the eternal grasp of nature.",
"Seizing her one true wish,",
"she found peace at last.",
},
},
[20] = {
id = "FourUniqueBodyDex11",
name = "Yriel's Fostering",
text = {
"Feed a beast and it will not hunt.",
"Protect it and it will not fight.",
"Ferocity must be learned, not taught.",
"It is suffering that forges the greatest warriors.",
},
},
[21] = {
id = "FourUniqueBodyDex15",
name = "Hyrri's Ire",
text = {
"Hyrri loosed a barrage of arrows,",
"tipped with a poisoned hatred",
"only oppression can ferment.",
},
},
[22] = {
id = "FourUniqueBodyInt1",
name = "Ghostwrithe",
text = {
"Faith springs abundant at the edge of death.",
},
},
[23] = {
id = "FourUniqueBodyInt2",
name = "Bitterbloom",
text = {
"The soul cannot flourish in a doubting mind.",
},
},
[24] = {
id = "FourUniqueBodyInt3",
name = "The Black Doubt",
text = {
"Suspicion is a sinister shadow slithering in the soul.",
},
},
[25] = {
id = "FourUniqueBodyInt4",
name = "Necromantle",
text = {
"Fueled by the blackness in the hearts of men,",
"the armies of Saresh were just as relentless.",
},
},
[26] = {
id = "FourUniqueBodyInt5",
name = "Cloak of Flame",
text = {
"He who sows an ember shall reap an inferno.",
},
},
[27] = {
id = "FourUniqueBodyInt6",
name = "Prayers for Rain",
text = {
"In its final era, the roofs of Keth were rife with",
"anything and everything that could hold water...",
"should the opportunity arise.",
},
},
[28] = {
id = "FourUniqueBodyInt7",
name = "Tetzlapokal's Desire",
text = {
"A faith born of flesh.",
},
},
[29] = {
id = "FourUniqueBodyInt8",
name = "The Covenant",
text = {
"My Soul is your Strength",
"My Price is your Blood",
},
},
[30] = {
id = "FourUniqueBodyInt9",
name = "Gloamgown",
text = {
"The tale-women of old knew how to build anticipation.",
},
},
[31] = {
id = "FourUniqueBodyInt12",
name = "Vis Mortis",
text = {
"Reap what others have sown",
"Muster them from their graves",
"Parade them for your pleasure",
"Zealots in mortis enslaved",
},
},
[32] = {
id = "FourUniqueBodyInt13",
name = "Cloak of Defiance",
text = {
"When the throat roars,",
"As eyes weep,",
"When the hand grips hard",
"With trembling fingers,",
"When belly twists",
"Yet legs stand strong,",
"That is the work",
"Of the Defiant Heart.",
},
},
[33] = {
id = "FourUniqueBodyInt14",
name = "Silks of Veneration",
text = {
"Hallowed Dordalus was cast into the pit as a heretic,",
"but his piety was so great, he would not burn.",
"He rose again, lauded, his faith forever changed...",
"but not the way the Templar believed.",
},
},
[34] = {
id = "FourUniqueBodyStrDex1",
name = "Coat of Red",
text = {
"For those noble families obsessed",
"with keeping their bloodline pure,",
"there was a price to pay...",
},
},
[35] = {
id = "FourUniqueBodyStrDex2",
name = "The Barrow Dweller",
text = {
"In the mists they dwell,",
"forever hungry,",
"forever cold.",
},
},
[36] = {
id = "FourUniqueBodyStrDex3",
name = "Irongrasp",
text = {
"A power unknown aids your own.",
},
},
[37] = {
id = "FourUniqueBodyStrDex4",
name = "Pariah's Embrace",
text = {
"His isolation caused him to treasure",
"their companionship all the more.",
},
},
[38] = {
id = "FourUniqueBodyStrDex5",
name = "Belly of the Beast",
text = {
"There is no safer place",
"Than the Belly of the Beast",
},
},
[39] = {
id = "FourUniqueBodyStrDex6",
name = "Doryani's Prototype",
text = {
"\"This was the first step in some grand design,",
"lost to the ages, now ours to decipher.\"",
"- Dominus, High Templar",
},
},
[40] = {
id = "FourUniqueBodyStrDex7",
name = "Widow's Reign",
text = {
"That day, both the Unblinking Eye and",
"their enemies stood in silence. That day,",
"the sky was clear, but it was raining.",
},
},
[41] = {
id = "FourUniqueBodyStrDex9",
name = "The Fallen Formation",
text = {
"\"I will never forget. I will carry your memory",
"forward, all of you, from this ghastly Vale.\"",
"- Artair, last survivor of the Ogham rebellion",
},
},
[42] = {
id = "FourUniqueBodyStrDex11",
name = "The Coming Calamity",
text = {
"Whiff of cold, tiny spark, faintest flicker in the dark.",
"Embers swirl, ice takes form, sky exposed - Death's perfect storm.",
"Frost and thunder, flames shine bright, ruin walks the land tonight.",
"By your hand they dance and bend, wield them and brook no end.",
},
},
[43] = {
id = "FourUniqueBodyStrInt1_",
name = "Enfolding Dawn",
text = {
"The gleam of the night and howling teeth alike could not abate the rising of the sun.",
},
},
[44] = {
id = "FourUniqueBodyStrInt3",
name = "Icetomb",
text = {
"When Solaris closes her burning eye",
"At the end of time,",
"the world will perish in ice.",
},
},
[45] = {
id = "FourUniqueBodyStrInt4",
name = "Husk of Dreams",
text = {
"Yes... but what if?",
},
},
[46] = {
id = "FourUniqueBodyStrInt5",
name = "Voll's Protector",
text = {
"Although a great leader during the war,",
"Voll proved disastrous in times of peace.",
},
},
[47] = {
id = "FourUniqueBodyStrInt6",
name = "Soul Mantle",
text = {
"The greatest mistakes cause suffering",
"long after they have been made",
},
},
[48] = {
id = "FourUniqueBodyStrInt7",
name = "The Mutable Star",
text = {
"Through every great purge, and every fiery inquisition,",
"the Twilight Order endured in secret.",
},
},
[49] = {
id = "FourUniqueBodyStrInt8",
name = "Waveshaper",
text = {
"\"Move in ways your enemy does not expect.",
"Confuse them with elegance and grace.",
"They'll never see the axe coming.\"",
"- Rakiata, Chieftain of the Tasalio Tribe",
},
},
[50] = {
id = "FourUniqueBodyStrInt9",
name = "Couture of Crimson",
text = {
"It is often said of nobles that they live off their",
"peasants... sometimes, it's truer than any suspect.",
},
},
[51] = {
id = "FourUniqueBodyStrInt12",
name = "Sacrosanctum",
text = {
"The Twilight Order rejected the gods, choosing",
"instead to put their faith in each other.",
},
},
[52] = {
id = "FourUniqueBodyDexInt1",
name = "Apron of Emiran",
text = {
"\"Prepare the rack, boy. And be careful with those hooks!\"",
"- the Master Torturer's last words",
},
},
[53] = {
id = "FourUniqueBodyDexInt2",
name = "Gloomform",
text = {
"It was in this forsaken land, where mists shroud the world in mystery,",
"that thieves, murderers, and outcasts, sought refuge.",
},
},
[54] = {
id = "FourUniqueBodyDexInt3",
name = "Sierran Inheritance",
text = {
"Born among the high peaks, many Mutewind",
"live their entire lives in snow and ice.",
},
},
[55] = {
id = "FourUniqueBodyDexInt4",
name = "The Dancing Mirage",
text = {
"Be not where death falls.",
},
},
[56] = {
id = "FourUniqueBodyDexInt5",
name = "Redflare Conduit",
text = {
"In all things, control.",
},
},
[57] = {
id = "FourUniqueBodyDexInt6",
name = "Zerphi's Serape",
text = {
"Mortality is a curse.",
"The cure is simple.",
},
},
[58] = {
id = "FourUniqueBodyStrDexInt1",
name = "Tabula Rasa",
text = {
},
},
[59] = {
id = "FourUniqueHelmetStr1a",
name = "Horns of Bynden",
text = {
"The younger brother waded into battle, shrugging off blows.",
},
},
[60] = {
id = "FourUniqueHelmetStr1b",
name = "Wings of Caelyn",
text = {
"The older brother retained calm in the midst of fury.",
},
},
[61] = {
id = "FourUniqueHelmetStr2",
name = "Ezomyte Peak",
text = {
"Centuries of servitude, a day",
"of glory, an eternity of death.",
},
},
[62] = {
id = "FourUniqueHelmetStr3",
name = "Black Sun Crest",
text = {
"The beasts we fear the most",
"are the ones who dwell in total darkness.",
},
},
[63] = {
id = "FourUniqueHelmetStr4",
name = "Thrillsteel",
text = {
"We may fight, and we may die, but in these",
"moments of blood and battle, we truly live.",
},
},
[64] = {
id = "FourUniqueHelmetStr5",
name = "Deidbell",
text = {
"May you never hear it toll.",
},
},
[65] = {
id = "FourUniqueHelmetStr6",
name = "Corona of the Red Sun",
text = {
"Only the High Priests could enact the sacrifices,",
"but all who witnessed shared in exultation.",
},
},
[66] = {
id = "FourUniqueHelmetStr8",
name = "Blood Price",
text = {
"An eye for an eye makes the whole world dead.",
},
},
[67] = {
id = "FourUniqueHelmetDex1",
name = "Innsmouth",
text = {
"Beyond madness lies inspiration.",
},
},
[68] = {
id = "FourUniqueHelmetDex2",
name = "Goldrim",
text = {
"No metal slips as easily through the fingers as gold.",
},
},
[69] = {
id = "FourUniqueHelmetDex3",
name = "Radiant Grief",
text = {
"No man burns alone.",
},
},
[70] = {
id = "FourUniqueHelmetDex5",
name = "Elevore",
text = {
"Ancient worshippers of the Greatwolf were overtaken",
"by a ravenous hunger for all things mystical.",
},
},
[71] = {
id = "FourUniqueHelmetDex6",
name = "Constricting Command",
text = {
"\"Be vigilant, Nezahul! When the serpent is cornered, does it give up?",
"No... It waits. Then it bites the first hand it finds.",
"The danger of numbers is all in your mind!\"",
"- Viper Napuatzi, instructing Royal Commander Nezahul",
},
},
[72] = {
id = "FourUniqueHelmetDex7",
name = "The Black Insignia",
text = {
"Brinerot pirates live in a perpetual blaze of glory,",
"pushing their luck right to the end.",
},
},
[73] = {
id = "FourUniqueHelmetDex8",
name = "Starkonja's Head",
text = {
"There was no hero made out of Starkonja's death,",
"but merely a long sleep made eternal.",
},
},
[74] = {
id = "FourUniqueHelmetDex9",
name = "Heatshiver",
text = {
"Give of your heated passions.",
"Give of your cold resolve.",
"You will be repaid.",
},
},
[75] = {
id = "FourUniqueHelmetDex10",
name = "Myris Uxor",
text = {
"The end always comes sooner than we think.",
},
},
[76] = {
id = "FourUniqueHelmetDex11",
name = "Alpha's Howl",
text = {
"Nature respects the strong",
"And paints the snow red",
"With the blood of the weak",
},
},
[77] = {
id = "FourUniqueHelmetInt1",
name = "Crown of Thorns",
text = {
"Lift it lightly, don it slow.",
"The spikes point out and in, you know.",
},
},
[78] = {
id = "FourUniqueHelmetInt2",
name = "The Devouring Diadem",
text = {
"The spirit hungers for the flesh.",
},
},
[79] = {
id = "FourUniqueHelmetInt3",
name = "Visage of Ayah",
text = {
"Tale-women do not fight as dekharas.",
"They command a power all their own.",
},
},
[80] = {
id = "FourUniqueHelmetInt4",
name = "Forbidden Gaze",
text = {
"Keep your heart as ice,",
"lest your passions stir.",
},
},
[81] = {
id = "FourUniqueHelmetInt5",
name = "Mask of the Stitched Demon",
text = {
"From the flesh of the gods, Xibaqua was born.",
"From the carnage of Xibaqua, we were born.",
"It is our duty to return to the gods what was once theirs.",
},
},
[82] = {
id = "FourUniqueHelmetInt6",
name = "Atziri's Disdain",
text = {
"They screamed her name in adulation as they gave",
"their very lives. She looked on with impatience.",
},
},
[83] = {
id = "FourUniqueHelmetInt7",
name = "Crown of Eyes",
text = {
"Turning, gazing, blinking,",
"behold the eyes of void.",
"Burning, razing, drinking,",
"your mind is destroyed.",
},
},
[84] = {
id = "FourUniqueHelmetInt8",
name = "Scold's Bridle",
text = {
"\"The sharper the pain, the sharper the mind.",
"A curious paradox.\"",
"- Shavronne of Umbra",
},
},
[85] = {
id = "FourUniqueHelmetInt11",
name = "Indigon",
text = {
"Where the body's limits begin,",
"the mind's limits end.",
},
},
[86] = {
id = "FourUniqueHelmetStrDex1",
name = "Greymake",
text = {
"In the end, even heroes fade away.",
},
},
[87] = {
id = "FourUniqueHelmetStrDex2",
name = "Erian's Cobble",
text = {
"Sometimes patching up your",
"equipment gets out of hand.",
},
},
[88] = {
id = "FourUniqueHelmetStrDex3",
name = "Ironride",
text = {
"Let the rider's aim be true.",
},
},
[89] = {
id = "FourUniqueHelmetStrDex4",
name = "The Smiling Knight",
text = {
"He never spoke a word. His opponents imagined",
"their own personal mockeries, most cruel.",
},
},
[90] = {
id = "FourUniqueHelmetStrDex5",
name = "The Vile Knight",
text = {
"Familiarity breeds contempt.",
},
},
[91] = {
id = "FourUniqueHelmetStrDex7",
name = "The Bringer of Rain",
text = {
"\"What lies beneath your feet?!\"",
"\"Sacred ground, watered with tears of blood!\"",
},
},
[92] = {
id = "FourUniqueHelmetStrInt1",
name = "Crown of the Victor",
text = {
"An endless river of bodies lie in the wake of ambition.",
},
},
[93] = {
id = "FourUniqueHelmetStrInt2",
name = "Bronzebeard",
text = {
"Heavy is the head.",
},
},
[94] = {
id = "FourUniqueHelmetStrInt3",
name = "Crown of the Pale King",
text = {
"A lightless world",
"a silent reign",
"two sightless eyes",
"feed on your pain.",
},
},
[95] = {
id = "FourUniqueHelmetStrInt4",
name = "Veil of the Night",
text = {
"The seeds of greatness are planted in darkness,",
"Watered by suffering,",
"Tended by desperation,",
"And bloom steel flowers of victory.",
},
},
[96] = {
id = "FourUniqueHelmetStrInt5",
name = "Cornathaum",
text = {
"Pain brings clarity.",
},
},
[97] = {
id = "FourUniqueHelmetStrInt6",
name = "The Deepest Tower",
text = {
"Death crawls in darkness, closer than we think.",
},
},
[98] = {
id = "FourUniqueHelmetDexInt1",
name = "The Hollow Mask",
text = {
"The roots take hold within...",
},
},
[99] = {
id = "FourUniqueHelmetDexInt2",
name = "Mask of the Sanguimancer",
text = {
"A terror of ancient times, his identity",
"remains lost... but his power does not.",
},
},
[100] = {
id = "FourUniqueHelmetDexInt3",
name = "Leer Cast",
text = {
"For none of us are as cruel as all of us.",
},
},
[101] = {
id = "FourUniqueHelmetDexInt4",
name = "Atsak's Sight",
text = {
"Remaining unseen, the Dishonoured Assassin struck",
"only in the depths of the harshest sandstorms.",
},
},
[102] = {
id = "FourUniqueHelmetDexInt5",
name = "The Vertex",
text = {
"\"A queen should be seen, admired, but never touched.\"",
"- Atziri, Queen of the Vaal",
},
},
[103] = {
id = "FourUniqueHelmetDexInt6",
name = "The Three Dragons",
text = {
"\"The ice seared his naked feet",
"As the lightning stilled his heart,",
"But it was the flames upon his lover's face",
"That roused him to vengeance.\"",
"- From 'The Three Dragons' by Victario of Sarn",
},
},
[104] = {
id = "FourUniqueHelmetDexInt8",
name = "Mind of the Council",
text = {
"The sky tore asunder, black cleaving upon blue",
"The end of life, of Time, with no escape",
"But they found a fragment, a void, a haven",
"And there they waited, as it all began again",
"Dark will, dark knowledge, enemies of Fate",
"They know your mind, because they remember",
},
},
[105] = {
id = "FourUniqueGlovesStr2",
name = "Treefingers",
text = {
"The largest beings on Wraeclast",
"are not flesh and blood.",
},
},
[106] = {
id = "FourUniqueGlovesStr3",
name = "Lochtonial Caress",
text = {
"Why cling to your sanity? It offers you nothing.",
"Surrender to me, and I will grant you everything.",
},
},
[107] = {
id = "FourUniqueGlovesStr4",
name = "Dreadfist",
text = {
"What is worse, the sting of the past, the pain of the present, or the fear of the future?",
},
},
[108] = {
id = "FourUniqueGlovesStr5",
name = "Atziri's Acuity",
text = {
"\"The heart is the herald.",
"It will tell me when it is best to strike.\"",
"- Atziri, Queen of the Vaal",
},
},
[109] = {
id = "FourUniqueGlovesStr7",
name = "Empire's Grasp",
text = {
"\"I like my vassals at sword point,",
"but my enemies as close as the hilt.\"",
"- Emperor Chitus",
},
},
[110] = {
id = "FourUniqueGlovesDex1_",
name = "Northpaw",
text = {
"Fight with the ferocity of the First Ones.",
},
},
[111] = {
id = "FourUniqueGlovesDex2",
name = "Grip of Winter",
text = {
"After the eruption, the skies turned grey,",
"ash began to fall, and a chill set in...",
},
},
[112] = {
id = "FourUniqueGlovesDex4",
name = "Idle Hands",
text = {
"The devil finds work for idle hands.",
},
},
[113] = {
id = "FourUniqueGlovesDex5",
name = "Snakebite",
text = {
"As the serpent shuns thought,",
"It shuns fear.",
"It strikes with the speed of wrath",
"And the skill of compulsion.",
},
},
[114] = {
id = "FourUniqueGlovesDex6",
name = "Maligaro's Virtuosity",
text = {
"Maligaro operated effortlessly,",
"with great speed and terrible consequences.",
},
},
[115] = {
id = "FourUniqueGlovesInt1",
name = "Painter's Servant",
text = {
"Bloodshed on the crimson shores,",
"longing for the endless sea.",
"Treasures, life, I'd give it all",
"just to capture thee.",
},
},
[116] = {
id = "FourUniqueGlovesInt2",
name = "Candlemaker",
text = {
"You can be the wick or the wax. Either way, your light goes out and mine goes on.",
},
},
[117] = {
id = "FourUniqueGlovesInt3",
name = "Doedre's Tenure",
text = {
"While Doedre lacked Maligaro's sense of style,",
"she surpassed her master in pure malevolence.",
},
},
[118] = {
id = "FourUniqueGlovesInt4",
name = "Kitoko's Current",
text = {
"Reality is a puzzle. Ingenuity is power.",
},
},
[119] = {
id = "FourUniqueGlovesInt5",
name = "Demon Stitcher",
text = {
"Xibaqua's treachery was met with divine fury.",
"One by one, the gods reclaimed their flesh,",
"until all that remained was a droplet of pure light:",
"The first Vaal.",
},
},
[120] = {
id = "FourUniqueGlovesInt6",
name = "Nightscale",
text = {
"Diamora sings not for hunger, but for longing.",
},
},
[121] = {
id = "FourUniqueGlovesInt7",
name = "Leopold's Applause",
text = {
"\"Keep smiling. The deepest cut comes not from insults, but from false praise.\"",
},
},
[122] = {
id = "FourUniqueGlovesStrDex1",
name = "Jarngreipr",
text = {
"The whispers of the old gods hum through the iron. They demand a hero.",
},
},
[123] = {
id = "FourUniqueGlovesStrDex2",
name = "Aurseize",
text = {
"Wealth is not to be borne lightly.",
},
},
[124] = {
id = "FourUniqueGlovesStrDex3",
name = "Deathblow",
text = {
"Anticipation is a gift.",
},