-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMercenaryFlavourText.json
More file actions
1850 lines (1850 loc) · 58.2 KB
/
MercenaryFlavourText.json
File metadata and controls
1850 lines (1850 loc) · 58.2 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
[
{
"_index": 0,
"Id": "NonEleBowRanger1",
"Description": "\"Even a lawless land needs rules. Even anarchy requires order.\" \r\n- Kylian Cyaxan",
"HASH16": 22819,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 1,
"Id": "NonEleBowRanger2",
"Description": "As Cyaxan's criminal empire grew, so too did its need for enforcers. The Trarthan militia was its answer. ",
"HASH16": 25135,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 2,
"Id": "NonEleBowRanger3",
"Description": "Order came later. At first, the Trarthan militia was little more than muscle - sold to the highest house, and drunk on its coin.",
"HASH16": 46485,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 3,
"Id": "NonEleBowRanger4",
"Description": "The Trarthan militia delivers justice swiftly - usually before a crime is even committed.",
"HASH16": 50075,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 4,
"Id": "NonEleBowRanger5",
"Description": "\"The militia don't keep the peace. They keep Trarthus profitable.\" ",
"HASH16": 1655,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 5,
"Id": "NonEleBowRanger6",
"Description": "\"They weren't just enforcers. They were reminders - of who ruled Korathin's gutters, and what disobedience cost.\" ",
"HASH16": 62209,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 6,
"Id": "NonEleBowRanger7",
"Description": "For a time, the militia had the slums on lockdown. Then Cyaxan flooded them with gems - and the streets ran red with blood. ",
"HASH16": 49281,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 7,
"Id": "NonEleBowRanger8",
"Description": "Of all Kylian Cyaxan's sins, virtue gems were the most costly. Blinded by greed, he never foresaw the chaos they'd unleash.",
"HASH16": 20691,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 8,
"Id": "NonEleBowRanger9",
"Description": "Kylian Cyaxan demanded a swift response to the chaos in the streets. The militia answered - virtue gems in hand.",
"HASH16": 18023,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 9,
"Id": "NonEleBowRanger10",
"Description": "The militia met fire with fire - gems for gems, blood for blood.",
"HASH16": 37252,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 10,
"Id": "NonEleBowRanger11",
"Description": "With gems came power - and with power came fewer survivors of the militia's 'justice'.",
"HASH16": 60423,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 11,
"Id": "NonEleBowRanger12",
"Description": "\"They called it peace when the killing slowed. Not justice - just fewer people left to fight back... and even fewer who would dare.\" ",
"HASH16": 8705,
"Tags": "1199, 1258",
"TagWeight": "0, 1000"
},
{
"_index": 12,
"Id": "NonEleBowRangerNoble1",
"Description": "{0} Cyaxan once kept order in Korathin's worst quarter. Now she keeps trophies instead.",
"HASH16": 38775,
"Tags": "1260, 1262",
"TagWeight": "1000, 1000"
},
{
"_index": 13,
"Id": "NonEleBowRangerNoble2",
"Description": "{0} was born of Cyaxan stock, raised on slum smoke and discipline.",
"HASH16": 24942,
"Tags": "1260, 1262",
"TagWeight": "1000, 1000"
},
{
"_index": 14,
"Id": "NonEleBowRangerNoble3",
"Description": "{0} Cyaxan: a name once feared across the Trarthan militia ranks - feared even more now she's off the leash.",
"HASH16": 38714,
"Tags": "1260, 1262",
"TagWeight": "1000, 1000"
},
{
"_index": 15,
"Id": "NonEleBowRangerNoble4",
"Description": "Trarthus was barren after the Vaal Cataclysm... until the Empire began exiling their unwanted to its bleak shores.",
"HASH16": 9808,
"Tags": "1260, 1262",
"TagWeight": "1000, 1000"
},
{
"_index": 16,
"Id": "NonEleBowRangerNoble5",
"Description": "\"Our ancestors were exiled so that the Eternal Empire could have its thousand-year peace. I don't give a damn about Wraeclast.\"",
"HASH16": 3719,
"Tags": "1260, 1262",
"TagWeight": "1000, 1000"
},
{
"_index": 17,
"Id": "EleBowRanger1",
"Description": "Gems from Trarthus have their own trademarks. Like the populace, they are more brutal.",
"HASH16": 53790,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 18,
"Id": "EleBowRanger2",
"Description": "Keitan slaves built the walls of Korathin. Kylian Cyaxan filled them with vice before the mortar had dried.",
"HASH16": 19164,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 19,
"Id": "EleBowRanger3",
"Description": "Cyaxan brothels bore no name. But those who entered often forget their own. ",
"HASH16": 23012,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 20,
"Id": "EleBowRanger4",
"Description": "First came desire. Then came dependency. Cyaxan offered both - by design.",
"HASH16": 51626,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 21,
"Id": "EleBowRanger5",
"Description": "The courtesans were Cyaxan's first pushers. Pleasure and powder ensured each customer returned - shaking a little more each time. ",
"HASH16": 5179,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 22,
"Id": "EleBowRanger6",
"Description": "Most were addicted before they even knew it - such was the potency of Cyaxan's blend. ",
"HASH16": 37109,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 23,
"Id": "EleBowRanger7",
"Description": "\"In the early days, the drug trade was shared. Then Cyaxan made sharing... unprofitable.\"",
"HASH16": 63610,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 24,
"Id": "EleBowRanger8",
"Description": "When even dependency began to dull, Kylian Cyaxan sought something stronger - 'virtue' in crystalline form.",
"HASH16": 1475,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 25,
"Id": "EleBowRanger9",
"Description": "While most wielded gems for violence, Kylian Cyaxan saw in them something far more sordid.",
"HASH16": 25908,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 26,
"Id": "EleBowRanger10",
"Description": "The first gem-lit flesh in Trarthus didn't belong to a warrior. It belonged to a courtesan.",
"HASH16": 28638,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 27,
"Id": "EleBowRanger12",
"Description": "Some gems enhanced sensation. Others suppressed it - turning bodies into tools of compliance.",
"HASH16": 33846,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 28,
"Id": "EleBowRanger13",
"Description": "What began as pleasure became ritual. What began as choice became conditioning.",
"HASH16": 56007,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 29,
"Id": "EleBowRanger14",
"Description": "\"Kylian Cyaxan is long dead - as are many of his customers. But the thing about that kind of customer? They replenish themselves.\"",
"HASH16": 29242,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 30,
"Id": "EleBowRanger16",
"Description": "\"Brick and stone may hold a city... but pleasure holds a people.\"\r\n - Kylian Cyaxan",
"HASH16": 24189,
"Tags": "1199, 1263",
"TagWeight": "0, 1000"
},
{
"_index": 31,
"Id": "EleBowRangerNoble1",
"Description": "{0} Cyaxan knew every back alley in Korathin - especially the ones that glittered.",
"HASH16": 10473,
"Tags": "1265, 1267, 1269",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 32,
"Id": "EleBowRangerNoble2",
"Description": "The gems are socketed deep. {0} Cyaxan's need, deeper still.",
"HASH16": 10665,
"Tags": "1265, 1267, 1269",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 33,
"Id": "EleBowRangerNoble3",
"Description": "If it glints, {0} Cyaxan follows. If it runs, she chases.",
"HASH16": 30228,
"Tags": "1265, 1267, 1269",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 34,
"Id": "EleBowRangerNoble4",
"Description": "\"As decaying Empires are wont to do, the use of exile as a punishment gradually became more common over the centuries...\"",
"HASH16": 16,
"Tags": "1265, 1267, 1269",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 35,
"Id": "EleBowRangerNoble5",
"Description": "The Eternal Empire eventually made their greatest mistake: they exiled a simple farmer to Trarthus.",
"HASH16": 63215,
"Tags": "1265, 1267, 1269",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 36,
"Id": "MeleeAOEMarauder1",
"Description": "In Korathin's slave pits, Keita found its fortune. Death made for eager audiences.",
"HASH16": 51315,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 37,
"Id": "MeleeAOEMarauder2",
"Description": "Keitan slaves raised the walls of Korathin. Their blood still clings to the mortar. ",
"HASH16": 50223,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 38,
"Id": "MeleeAOEMarauder3",
"Description": "House Keita did not always command such fear. It was their crushing of the rebellion that made them a force to be reckoned with. ",
"HASH16": 37253,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 39,
"Id": "MeleeAOEMarauder4",
"Description": "The slave rebellion began with a whisper. A promise of freedom passed from throat to throat, louder each time.",
"HASH16": 6010,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 40,
"Id": "MeleeAOEMarauder5",
"Description": "One night, the chains fell silent. The next, they snapped. Keitans awoke to fire in their camps and blood on their floors. ",
"HASH16": 12292,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 41,
"Id": "MeleeAOEMarauder6",
"Description": "It took just three days. Three days for Keita to crush the dissidents, reforge the chains, and fill the pits with corpses.",
"HASH16": 41155,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 42,
"Id": "MeleeAOEMarauder7",
"Description": "Keita left the rebels hanging, stripped and nameless. Not as martyrs - just meat, gone to waste.",
"HASH16": 33085,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 43,
"Id": "MeleeAOEMarauder8",
"Description": "After the revolt, Ixan Keita declared the slaves must be reminded of their place. Thus began the Trarthan slave pits.",
"HASH16": 45739,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 44,
"Id": "MeleeAOEMarauder9",
"Description": "From the ashes of rebellion came the slave pit - dug to remind the living what happened to those who sought freedom. ",
"HASH16": 61285,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 45,
"Id": "MeleeAOEMarauder10",
"Description": "The slave pits are a reflection of Trarthan society: brutal, bloodthirsty, and swift to punish mistakes. ",
"HASH16": 24452,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 46,
"Id": "MeleeAOEMarauder11",
"Description": "Keita doesn't fear uprisings anymore. Every lash, every cage, every pit - lessons carved in flesh.",
"HASH16": 31091,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 47,
"Id": "MeleeAOEMarauder13",
"Description": "\"In Trarthus, freedom is earned, not given.\" ",
"HASH16": 55803,
"Tags": "1199, 1228",
"TagWeight": "0, 1000"
},
{
"_index": 48,
"Id": "MeleeAOEMarauderNoble1",
"Description": "\"The lucky ones die early. The rest learn to live with it.\"",
"HASH16": 20797,
"Tags": "1230, 1232, 1234",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 49,
"Id": "MeleeAOEMarauderNoble2",
"Description": "Fighting in chains taught {0} everything he needed - including how to break them. ",
"HASH16": 22713,
"Tags": "1230, 1232, 1234",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 50,
"Id": "MeleeAOEMarauderNoble3",
"Description": "Inside Trarthus or out, slave or slaver - none bred more enemies than House Keita. ",
"HASH16": 3396,
"Tags": "1230, 1232, 1234",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 51,
"Id": "MeleeAOEMarauderNoble4",
"Description": "The Trarthans paid back their debt to the Karui, aiding them when it was their turn to battle the Empire.",
"HASH16": 43413,
"Tags": "1230, 1232, 1234",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 52,
"Id": "MeleeAOEMarauderNoble5",
"Description": "When Tyndarus Phrecius tried to resupply his occupying legions on Trarthus, the Karui blockaded the Archipelago.",
"HASH16": 62845,
"Tags": "1230, 1232, 1234",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 53,
"Id": "MeleeStrikesMarauder1",
"Description": "Trarthan slavers are despicable - and indispensable.",
"HASH16": 58696,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 54,
"Id": "MeleeStrikesMarauder2",
"Description": "Of all the Trarthan Death Trades, none strip the soul quite like slavery - brutal in both intent and execution.",
"HASH16": 61712,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 55,
"Id": "MeleeStrikesMarauder15",
"Description": "Trarthus was built on the backs of slaves, whose labour shaped much of its infrastructure. At the whip-hand stood House Keita.",
"HASH16": 17291,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 56,
"Id": "MeleeStrikesMarauder4",
"Description": "Cruel even by Trarthan standards, House Keita's blend of brutality and efficiency made them ideal architects of the slave trade.",
"HASH16": 32090,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 57,
"Id": "MeleeStrikesMarauder5",
"Description": "In their prime, Keita built more than cities - they built leverage. For a time, no House dared challenge their hold on Trarthus.",
"HASH16": 3557,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 58,
"Id": "MeleeStrikesMarauder6",
"Description": "Ixan Keita helped build Trarthus - and nearly ruled it. But power begets ambition, and ambition always demands more.",
"HASH16": 52255,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 59,
"Id": "MeleeStrikesMarauder7",
"Description": "The ambition of Ixan Keita was his undoing. His bid for power sparked war with Bardiya - a war Keita could not win.",
"HASH16": 48362,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 60,
"Id": "MeleeStrikesMarauder8",
"Description": "Keita held the chains. Bardiya cut the purse strings. Trarthus watched as labour lost to leverage - and coin won the war.",
"HASH16": 20364,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 61,
"Id": "MeleeStrikesMarauder9",
"Description": "Keita swore fealty to the Council with a clenched jaw. Better a seat at the table than exile from the game entirely.",
"HASH16": 49165,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 62,
"Id": "MeleeStrikesMarauder10",
"Description": "Though the Keita of today is still a House of influence, Bardiya remembers their treachery - and limits their power accordingly. ",
"HASH16": 32003,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 63,
"Id": "MeleeStrikesMarauder12",
"Description": "\"House Keita wrote the bloody book on cruelty. Think of the worst bastard you know - either they're a Keitan, or a poor imitation.\"",
"HASH16": 23825,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 64,
"Id": "MeleeStrikesMarauder13",
"Description": " \"The Merchant Council's a leash on House Keita - and the irony ain't lost on 'em. Still, better leashed than buried.\"",
"HASH16": 52710,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 65,
"Id": "MeleeStrikesMarauder14",
"Description": "\"Pain is the language of obedience.\"\r\n - Ixan Keita",
"HASH16": 10120,
"Tags": "1199, 1235",
"TagWeight": "0, 1000"
},
{
"_index": 66,
"Id": "MeleeStrikesMarauderNoble1",
"Description": "{0} Keita built his name in the slave pits of Korathin - and built his fortune on the backs beneath him.",
"HASH16": 14721,
"Tags": "1237, 1239",
"TagWeight": "1000, 1000"
},
{
"_index": 67,
"Id": "MeleeStrikesMarauderNoble2",
"Description": "Slaves obeyed. Rivals bled. The rest learned to stay out of {0} Keita's way.",
"HASH16": 26180,
"Tags": "1237, 1239",
"TagWeight": "1000, 1000"
},
{
"_index": 68,
"Id": "MeleeStrikesMarauderNoble3",
"Description": "The pits made killers of men... and monsters of those who ran them.",
"HASH16": 47176,
"Tags": "1237, 1239",
"TagWeight": "1000, 1000"
},
{
"_index": 69,
"Id": "MeleeStrikesMarauderNoble4",
"Description": "For centuries, ash from Karui volcanoes rode the wind to Trarthus. It turned slaves into the continent's finest tools.",
"HASH16": 58966,
"Tags": "1237, 1239",
"TagWeight": "1000, 1000"
},
{
"_index": 70,
"Id": "MeleeStrikesMarauderNoble5",
"Description": "\"Slavery began on Trarthus when a simple farmer offered to serve and grow food in exchange for his life. Pathetic... but profitable.\"",
"HASH16": 48413,
"Tags": "1237, 1239",
"TagWeight": "1000, 1000"
},
{
"_index": 71,
"Id": "ElementalWitch1",
"Description": "Thaumaturgy in Trarthus is like smoke in the lungs - unpleasant, expected, and always present.",
"HASH16": 64923,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 72,
"Id": "ElementalWitch2",
"Description": " Before vice, before gems, before brothels and powder - Cyaxan dealt in spices, cloth and coin. ",
"HASH16": 28348,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 73,
"Id": "ElementalWitch3",
"Description": " \"They all started legitimate - even Cyaxan. But virtue doesn't buy power. Vice does.\"",
"HASH16": 54937,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 74,
"Id": "ElementalWitch4",
"Description": "Cyaxan didn't need blades. They had margins - and the power that comes from knowing what everyone else wanted.",
"HASH16": 44282,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 75,
"Id": "ElementalWitch5",
"Description": "In time, margins thinned. Rivals grew bolder. So Cyaxan found new markets - darker ones.",
"HASH16": 59324,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 76,
"Id": "ElementalWitch6",
"Description": "Cyaxan didn't set out to rule the underworld. Only to survive it. Then survival turned to opportunity.",
"HASH16": 55507,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 77,
"Id": "ElementalWitch7",
"Description": "Kylian Cyaxan's ascent to lord of the Trarthan underworld was not without obstacles. The first arose within his own house. ",
"HASH16": 46211,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 78,
"Id": "ElementalWitch8",
"Description": "Kylian's first victim wasn't a member of a rival House - it was family. From then on, betrayal became tradition.",
"HASH16": 32573,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 79,
"Id": "ElementalWitch9",
"Description": "Kylian Cyaxan never raised his voice. Just his glass. The rest of the table never stood again.",
"HASH16": 36337,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 80,
"Id": "ElementalWitch10",
"Description": "With rivals dead or disgraced, Kylian moved fast - consolidating power, ensuring no Cyaxan could rise as he had.",
"HASH16": 26896,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 81,
"Id": "ElementalWitch11",
"Description": "Kylian never trusted alliances. He preferred leverage. Internally, that meant secrets. Externally, sabotage.",
"HASH16": 24835,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 82,
"Id": "ElementalWitch13",
"Description": "\"When dining with a Cyaxan, bring an appetite - and an antidote.\" ",
"HASH16": 15336,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 83,
"Id": "ElementalWitch14",
"Description": "Cyaxan rarely availed themselves of House Azadi's services. They preferred less... bloody methods.",
"HASH16": 8955,
"Tags": "1199, 1200",
"TagWeight": "0, 1000"
},
{
"_index": 84,
"Id": "ElementalWitchNoble1",
"Description": "It wasn't people {0} Cyaxan loathed, but the frailties they wore so proudly: need, artifice, expectation.",
"HASH16": 44150,
"Tags": "1202, 1204, 1206",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 85,
"Id": "ElementalWitchNoble2",
"Description": "Cold, restrained, detached - anathema to Cyaxan ideals. But death has many forms, and {0} excelled in hers.",
"HASH16": 9347,
"Tags": "1202, 1204, 1206",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 86,
"Id": "ElementalWitchNoble3",
"Description": "{0} Cyaxan despised mess - of thought, of feeling, of flesh.",
"HASH16": 51259,
"Tags": "1202, 1204, 1206",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 87,
"Id": "ElementalWitchNoble4",
"Description": "\"Emperor Tyndarus Phrecius was a fool who let a wasteland full of exiles defy the Empire.\"",
"HASH16": 24393,
"Tags": "1202, 1204, 1206",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 88,
"Id": "ElementalWitchNoble5",
"Description": "\"Trarthus lives on, long after the dying husk of its parent Empire has become nothing but a memory.\"",
"HASH16": 24784,
"Tags": "1202, 1204, 1206",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 89,
"Id": "ChaosMinionWitch1",
"Description": "In the early days of Trarthus, each House kept to its corner. Peace held - not through trust, but through distance.",
"HASH16": 44251,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 90,
"Id": "ChaosMinionWitch2",
"Description": "As each House drifted from legitimacy to vice, conflict was inevitable. Kylian Cyaxan made sure of it.",
"HASH16": 39199,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 91,
"Id": "ChaosMinionWitch3",
"Description": "\"They say Kylian Cyaxan was once an upstanding merchant. But then, they say a lot of things.\"",
"HASH16": 53525,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 92,
"Id": "ChaosMinionWitch4",
"Description": "\"To play both sides well is to leave no fingerprints - only consequences.\"\r\n - Kylian Cyaxan",
"HASH16": 63099,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 93,
"Id": "ChaosMinionWitch5",
"Description": "History blames Bardiya and Keita for the Merchant Wars. Fewer recall that Cyaxan was whispering in both ears all along.",
"HASH16": 59017,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 94,
"Id": "ChaosMinionWitch6",
"Description": "As Bardiya and Keita went to war, Kylian Cyaxan stayed neutral - by selling secrets to both sides.",
"HASH16": 28393,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 95,
"Id": "ChaosMinionWitch7",
"Description": "\"A Cyaxan will stir the pot, watch it boil, then let others burn their hands - all while they slip out the back door.\"",
"HASH16": 42821,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 96,
"Id": "ChaosMinionWitch8",
"Description": "\"There's coin in war... so long as you're not the one fighting it.\"\r\n - Kylian Cyaxan",
"HASH16": 10524,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 97,
"Id": "ChaosMinionWitch9",
"Description": "The Merchant Wars began with tariffs and treaties. They ended with fire, famine, and grudges that would last a lifetime.",
"HASH16": 22381,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 98,
"Id": "ChaosMinionWitch10",
"Description": "When all was said and done, the Merchant Wars had made fortunes for the few - and graves for the many.",
"HASH16": 44667,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 99,
"Id": "ChaosMinionWitch11",
"Description": "Cyaxan may have lit the fire. But when bodies piled high and profits ran dry, even Kylian sought peace.",
"HASH16": 65335,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 100,
"Id": "ChaosMinionWitch12",
"Description": "The end of the Merchant Wars came not from diplomacy, but depletion. The Houses didn't shake hands - they paused to reload.",
"HASH16": 35781,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 101,
"Id": "ChaosMinionWitch13",
"Description": "No House admits to starting the Merchant Wars. But every House claims to have won them.",
"HASH16": 17900,
"Tags": "1199, 1207",
"TagWeight": "0, 1000"
},
{
"_index": 102,
"Id": "ChaosMinionWitchNoble1",
"Description": "Some Cyaxans peddled pleasure, others poison. {0} Cyaxan peddled death.",
"HASH16": 12104,
"Tags": "1209, 1211, 1213",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 103,
"Id": "ChaosMinionWitchNoble2",
"Description": "Even {0}'s fellow Cyaxans questioned her methods. But never their efficacy. ",
"HASH16": 33843,
"Tags": "1209, 1211, 1213",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 104,
"Id": "ChaosMinionWitchNoble3",
"Description": "Few in Trarthus kill with curses or corpses. But those who do face no fear of retribution.",
"HASH16": 54892,
"Tags": "1209, 1211, 1213",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 105,
"Id": "ChaosMinionWitchNoble4",
"Description": "\"They exiled their undesirables to Trarthus, and then had the gall to act surprised when those undesirables refused to bow down.\"",
"HASH16": 61099,
"Tags": "1209, 1211, 1213",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 106,
"Id": "ChaosMinionWitchNoble5",
"Description": "\"Witches aren't feared in Trarthus. They're adored. We wisely sided with the rebels against Little Tinny Phrecius.\"",
"HASH16": 50775,
"Tags": "1209, 1211, 1213",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 107,
"Id": "PhysConvertTemplar1",
"Description": "In Trarthus, faith never died. It just turned inward. ",
"HASH16": 30741,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 108,
"Id": "PhysConvertTemplar2",
"Description": "The major Houses didn't worship gods. They tried to become them. ",
"HASH16": 5153,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 109,
"Id": "PhysConvertTemplar3",
"Description": "Divinity demands belief. Trarthus demanded proof. ",
"HASH16": 40116,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 110,
"Id": "PhysConvertTemplar4",
"Description": "One claimed the mantle of flame. Another of blood. But in a city of rival 'gods', none rose above the noise.",
"HASH16": 2227,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 111,
"Id": "PhysConvertTemplar5",
"Description": " A House could rise through war, through gold, through secrets - but not through grace.",
"HASH16": 65497,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 112,
"Id": "PhysConvertTemplar6",
"Description": "Ixan Keita declared himself a god - and built temples to prove it. His slaves were given no choice but to pray.",
"HASH16": 8278,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 113,
"Id": "PhysConvertTemplar7",
"Description": "In his quest for Divinity, Ixan Keita demanded worship. Obedience was beaten in. But no man ever reached godhood through fear alone.",
"HASH16": 50077,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 114,
"Id": "PhysConvertTemplar8",
"Description": "They sang of Ixan Keita, knelt in his hollow shrines... but their hearts spoke only of hate.",
"HASH16": 21904,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 115,
"Id": "PhysConvertTemplar9",
"Description": "Ixan mistook silence for reverence. In truth, not one soul believed. And so he remained just that: a mortal soul.",
"HASH16": 29229,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 116,
"Id": "PhysConvertTemplar10",
"Description": "\"Let them hate me, if they must. Even hatred bows to power.\"\r\n - Ixan Keita",
"HASH16": 714,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 117,
"Id": "PhysConvertTemplar11",
"Description": "They preached in alleyways and taverns. Few listened. Fewer remembered.",
"HASH16": 65002,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 118,
"Id": "PhysConvertTemplar12",
"Description": "Attempts to bring organised religion to Trarthus were many - and all of them met with blood.",
"HASH16": 29232,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 119,
"Id": "PhysConvertTemplar13",
"Description": "Faith is tolerated in Trarthus - but only so long as it is kept to one's self.",
"HASH16": 1910,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 120,
"Id": "PhysConvertTemplar14",
"Description": "Even the pious stray in Trarthus - led not by devils, but by gold and supple skin.",
"HASH16": 28108,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 121,
"Id": "PhysConvertTemplar15",
"Description": "Trarthans revere but one god: the almighty coin.",
"HASH16": 43510,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 122,
"Id": "PhysConvertTemplar16",
"Description": "\"If your mission should take you to Trarthus, you'd best carry a knife.\"\r\n - Gospel and Blade",
"HASH16": 13056,
"Tags": "1199, 1251",
"TagWeight": "0, 1000"
},
{
"_index": 123,
"Id": "PhysConvertTemplarNoble1",
"Description": "{0} Keita came to preach salvation. He left certain there was none to be found.",
"HASH16": 22275,
"Tags": "1253, 1255, 1257",
"TagWeight": "1000, 1000, 1000"
},
{
"_index": 124,
"Id": "PhysConvertTemplarNoble2",
"Description": "In a city built on secrets, faith never stood a chance.",
"HASH16": 48664,
"Tags": "1253, 1255, 1257",
"TagWeight": "1000, 1000, 1000"