-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaffs.xml
1378 lines (1376 loc) · 33.4 KB
/
affs.xml
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
<triggers>
<trigger
enabled="n"
group="Afflictions"
match="^Flames erupt on your skin\, blistering your flesh\.$"
name="aff_ablaze__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="n"
group="Afflictions"
match="^Your speed defence is destroyed\.$"
name="aff_aeon1__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="n"
group="Afflictions"
match="^Suddenly your movements through the time stream are slowed\.$"
name="aff_aeon2__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You close your eyes\, curl up in a ball\, and fall asleep\.$"
name="aff_asleep_fell__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You feel incredibly tired\, and fall asleep immediately\.$"
name="aff_asleep_poison__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your exhausted mind can stay awake no longer\, and you fall into a deep sleep\.$"
name="aff_asleep_tired__"
regexp="y"
send_to="12"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You bleed (\d+) health\.$"
name="aff_bleeding__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="n"
group="Afflictions"
match="^Your flesh is charred\, and you receive (first|second|third|fourth) degree burns\.$"
name="aff_burnlevel__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You plummet head first into the ground with a sickening crunch\.$"
name="aff_concussion__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^A wave of dizziness suddenly overwhelms you\.$"
name="aff_dizziness__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^\| Sobriety \: (.+?)\s+Credits \: \d+\s+\|$"
name="aff_drunk__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^([A-Z][a-z]+) points .+? at you\, and sparks fly out of it\.$"
name="aff_enchantment__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Sticky strands of webbing spray out (?:from ([A-Z][a-z]+) )?to cover you\.$"
name="aff_entangled__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Unthinking terror seizes your mind as ([A-Z][a-z]+) looms up before you\, [hH](?:is|er) visage nightmarish and impossibly powerful\.$"
name="aff_fear_ascendant__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
keep_evaluating="y"
match="^You can hold your breath no longer and gasp for air, fighting to bring oxygen back to your deprived muscles\.$"
name="aff_hyperventilating__"
regexp="y"
script="affs.process"
sequence="9900"
>
</trigger>
<trigger
enabled="n"
group="Afflictions"
match="^Your cracked (left|right) kneecap shatters\, sending a fracture spiralling up your leg\.$"
name="aff_kneecap_again__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You (?:drop to one knee\, demonstrating your humility and respect|kneel before [A-Z][a-z]+\, swearing your allegiance to [hH](?:im|er))\.$"
name="aff_kneeling__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You cry out in pain as your (left|right) leg twists and snaps beneath you\.$"
name="aff_legs_notree__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You scream as you feel the force of the landing break both your legs\.$"
name="aff_legs_tree__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^([A-Z][a-z]+)\'s face reddens until\, abruptly\, (?:[hH]|[sS]h)e belches out a cone of scorching flames at you\.$"
name="aff_orgpotion_gaudiguch__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Thin tendrils of shadow reach out from ([A-Z][a-z]+) to rake across your skin\.$"
name="aff_orgpotion_glomdoring__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^A rush of icy air leaves ([A-Z][a-z]+)\'s pores and surrounds you in a frigid cloud\, turning your potions to slush\.$"
name="aff_orgpotion_hallifax__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The slushy potions chill your tongue and torment your brain with a sudden and agonising chill\.$"
name="aff_orgpotion_hallifax_stun__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your slushy potions warm and return to their normal consistency\.$"
name="aff_orgpotion_hallifax_end__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Darkness swells from ([A-Z][a-z]+) and strikes at you\.$"
name="aff_orgpotion_magnagora__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^A sense of deep inner calm descends on you\.$"
name="aff_pacifism__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:You sit yourself down|You stumble and fall in your alcoholic haze|You slip and fall in the puddle of puke as you try to leave|You must (?:first raise yourself from the floor and stand up|pick yourself off the ground first|first stand up before you can do that))\.$"
name="aff_prone__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You manage to resist the attempt to summon you\.$"
name="aff_resist_summon__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your muscles spasm and start to lock up\.$"
name="aff_rigormortis__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^An uncomfortable itch tickles you in an embarrassing location\.$"
name="aff_scabies__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^([A-Z][a-z]+) (?:swings|follows through by swinging) .+? with all [hH](?:is|er) might\, smashing it into your head with a resounding ring\.$"
name="aff_shieldstun__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^.+? unleashes a bolt of energy that slams into you\.$"
name="aff_totem_statue__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The (\w+) rune on your amulet shines bright blue\, protecting you\.$"
name="repel_amulet__"
regexp="y"
script="affs.repel_amulet"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The courage of the wolf swells within you\, driving fear from your heart\.$"
name="repel_fear__"
regexp="y"
script="affs.repel_fear"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your (ceremonially )?enhanced (insight|movement|passion|vivaciousness) repels (\w+)\.$"
name="repel_tea__"
regexp="y"
script="affs.repel_tea"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The karmic blessing of (?:death|chaos) protects you from (\w+)\.$"
name="repel_karma__"
regexp="y"
script="affs.repel_karma"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Flames lick around you \- you are on fire\!$"
name="symp_ablaze__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You move sluggishly into action\.$"
name="symp_aeon__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Terror descends upon you and your head swims \- you must find shelter\!$"
name="symp_agoraphobia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your mind swirls in a fog as you try to remember what you were doing a moment ago\.$"
name="symp_amnesia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:The idea of putting something in your stomach sickens you|The thought of eating sickens you)\.$"
name="symp_anorexia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your (left|right) arm must be free\.$"
name="symp_arm_not_free__"
regexp="y"
script="affs.check_arm"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your (left|right) arm is off balance\.$"
name="symp_arm_off_balance__"
regexp="y"
script="affs.check_arm"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are asleep and can do nothing\. WAKE will attempt to wake you\.$"
name="symp_asleep__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your lungs are much too constricted to smoke\.$"
name="symp_asthma_smoking__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You cough uncontrollably\, as you hack up some black phlegm\.$"
name="symp_black_lung__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You attempt to inhale\, but only end up coughing out more black phlegm\.$"
name="symp_black_lung_smoke__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You suffer acute pain as you (?:chew|swallow)\.$"
name="symp_broken_jaw__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The walls close in to suffocate you \- you must escape\!$"
name="symp_claustrophobia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You lash out clumsily\.$"
name="symp_clumsiness__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Experiencing a shortness of breath\, you suddenly black out\.$"
name="symp_collapsed_lungs__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are unable to smoke due to collapsed lungs\.$"
name="symp_collapsed_lungs_smoking__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are too confused to concentrate properly\.$"
name="symp_confused__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Both your arms must be free and functioning to do that\.$"
name="symp_crippled_arms__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You cannot move as both your legs are crippled\.$"
name="symp_crippled_legs__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Blood begins to slowly drip from your nose\.$"
name="symp_crotamine1__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You cough suddenly\, expelling black fluid with bits of what looks to be tissue suspended in it\.$"
name="symp_crotamine2__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your legs tremble slightly as a yellow jaundice begins to creep through your now\-pale features\.$"
name="symp_crotamine3__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The dark void of terror fills your mind as\, horribly\, blood begins to seep out of every pore on your body\.$"
name="symp_crotamine4__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your crushed windpipe inhibits your ability to swallow\.$"
name="symp_crushed_pipe__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are too caught up in your dark fate to focus your mind\.$"
name="symp_darkfate_focus__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The herb tastes foul and spoiled as you muse on your dark fate\.$"
name="symp_darkfate_herb__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^The ground seems to tilt and you fall with a thump\.$"
name="symp_dizziness__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your bowels turn to water and are voided as you double over from a sharp pain in your stomach\.$"
name="symp_dysentery__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Tight bindings (?:cling to you\, making that impossible|prevent you from moving)\.$"
name="symp_entangled__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your limbs begin to jerk and shake uncontrollably\, and you begin to foam at the mouth\.$"
name="symp_epilepsy__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You rush about in a state of utter panic\.$"
name="symp_fear__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You find that you are not yet ready to perform that feat\.$"
name="symp_feat_failed__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You begin moving your frozen body slowly \w+\.$"
name="symp_frozen__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^A sheet of blood rolls down your forehead and into your eyes\.$"
name="symp_furrowed_brow__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You immediately throw up what you just ate\.$"
name="symp_gluttony__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:Spiders are erupting from your mouth and nose\!|Ooh look\! A lovely lake\. Perhaps you\'ll dive in\!)$"
name="symp_hallucinations__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You leap up and attempt a graceful swan dive\.\.\.right into the solid ground\.$"
name="symp_hallucinations_prone__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are stunned by (?:a vision of divine astral beings|the sight of a massive pink bunny hopping by)\.$"
name="symp_hallucinations_stun__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You watch helplessly as your lifeforce drains into [A-Z][a-z]+\.$"
name="symp_healthleech__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You attempt to move\, but the muscles of your legs do not respond\.$"
name="symp_hemiplegy_legs__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your blood refuses to clot\.$"
name="symp_hemophilia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You slowly hobble \w+\.$"
name="symp_hobbling__"
regexp="y"
script="affs.check_leg"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your hypersomnia prevents your insomnia\.$"
name="symp_hypersomnia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your mind swims as dizziness overtakes you\.$"
name="symp_hypochondria1__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
keep_evaluating="y"
match="^(?:You feel incredibly tired\, and fall asleep immediately|A prickly stinging overcomes your body\, fading away into numbness)\.$"
name="symp_hypochondria2__"
regexp="y"
script="affs.process"
sequence="9000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
keep_evaluating="y"
match="^You blink for a moment\, then instantly\, all about you is darkness\.$"
name="symp_hypochondria3__"
regexp="y"
script="affs.process"
sequence="9000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
keep_evaluating="y"
match="^(?:A sense of extreme nausea washes over you\.|You stumble as your (?:left|right) leg shrivels into a useless appendage\.|You watch\, in horror as your (?:left|right) arm shrivels up and becomes useless\.|You feel control over your power begin to slip away\.|Your vision is flooded with light\, and your face suddenly reddens\.|Unreasoning rage turns the world blood\-red\.|None may stand in your way\! You are invincible\!|You begin feeling slightly flushed\.|Your limbs grow heavy and you groan feebly\.|You gasp as your fine\-tuned reflexes disappear into a haze of confusion|You notice that your sweat glands have begun to rapidly secrete a foul\, oily substance\.|Hmmmm\. Why must everything be so difficult to figure out\?|You reali[sz]e that your heroic actions can no longer continue unnoticed\, and you take it upon yourself to rectify the situation\.|You look about yourself nervously\.|The idea of eating or drinking is repulsive to you\.|You feel a tightening sensation grow in your lungs\.)$"
name="symp_hypochondria4__"
regexp="y"
script="affs.process"
sequence="9000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are too impatient to focus on anything\.$"
name="symp_impatience__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You cannot be bothered to do that\, it is too boring\.$"
name="symp_impatience_med__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Justice is dealt out and your attack rebounds onto you\.$"
name="symp_justice__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You are unable to maintain a stance for any period of time while your kneecaps are cracked\.$"
name="symp_kneecap_stance__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:You are unable to (?:stand|spring up) with your legs locked|You attempt to move\, but the muscles of your legs are locked)\.$"
name="symp_leglocked__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You realise that you have been left alone \- you must find companionship\!$"
name="symp_loneliness__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Blood flows into your (left|right) side inner ear\, inhibiting your sense of balance\.$"
name="symp_lost_ear__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your empty eyesockets can see nothing but the oblivion of utter darkness\.$"
name="symp_lost_eyes__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You love [A-Z][a-z]+ far too much to even THINK of hurting [hH](?:im|er)\.$"
name="symp_lovers__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:You smile with pleasure as you ram your fist into your jaw|You drive a clenched fist into your gut|With the heel of your palm\, you smack yourself upside the head|You use your (?:left|right) foot to stomp on your (?:left|right) as hard as possible)\.$"
name="symp_masochism__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^You feel just as tired as before\.$"
name="symp_narcolepsy__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:You must have two good legs to do that|Both of your legs are crippled and thus you cannot carry out that action)\.$"
name="symp_need_two_legs__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:Frustratingly\, your body won\'t respond to your call to action|Paralysed as you are .+?|Your state of paralysis prevents you from doing that|As you are paralysed\, you cannot give away anything|You are paralysed and (?:cannot do that|unable to do that|are unable to drop anything))\.$"
name="symp_paralysis__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^(?:An ally is just someone pretending to like you\, to make all the sweeter when they stab you in the back\! Allies are for weaklings \- you have no allies\!|Everyone is\, of course\, an enemy, but these people really sicken you\:)$"
name="symp_paranoia__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Hatred burns in your eyes \- you realise that your enemies are everywhere\!"
name="symp_paranoia2__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"
match="^Your heart is filled with divine love\, violence is abhorrent to you\.$"
name="symp_peace__"
regexp="y"
script="affs.process"
sequence="10000"
>
</trigger>
<trigger
enabled="y"
group="Afflictions"