-
Notifications
You must be signed in to change notification settings - Fork 4
/
Data.ttslua
1409 lines (1400 loc) · 119 KB
/
Data.ttslua
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
--[[
Data
--]]
------------------Constants
FIRST =
{
TB = {
'Evil Info',
'Demon Info',
'Bureaucrat',
'Thief',
'Poisoner',
'Spy',
'Washerwoman',
'Librarian',
'Investigator',
'Chef',
'Empath',
'Fortune Teller',
'Fortune Teller2',
'Butler',
'Next Night'
},
BM = {
'Lunatic InfoA',
'Lunatic InfoB',
'Lunatic InfoC',
'Evil Info',
'Demon Info',
'Apprentice',
'Sailor',
'Courtier',
'Godfather Info',
'Godfather',
'Devils Advocate',
'Lunatic',
'Pukka',
'Grandmother',
'Chambermaid',
'Chambermaid2',
'Goon',
'Next Night'
},
SV = {
'Evil Info',
'Demon Info',
'Barista',
'Philosopher',
'Snake Charmer',
'Evil Twin',
'Good Twin',
'Witch',
'Cerenovus',
'Madness',
'Clockmaker',
'Dreamer',
'Dreamer2',
'Seamstress',
'Seamstress2',
'Mathematician',
'Next Night'
},
CU = {
'Lunatic InfoA',
'Lunatic InfoB',
'Lunatic InfoC',
'Evil Info',
'Demon Info',
'Snitch',
'Bureaucrat',
'Thief',
'Apprentice',
'Barista',
'King Info',
'King',
'Amnesiac',
'Engineer',
'Poisoner',
'Widow',
'Viceroy',
'Conspirator',
'Philosopher',
'Alchemist',
'Rakshasa',
'Food Taster',
'Sailor',
'Courtier',
'Preacher',
'Snake Charmer',
'Godfather Info',
'Godfather',
'Devils Advocate',
'Witch',
'Cerenovus',
'Madness',
'Evil Twin',
'Good Twin',
'Fearmonger',
'Harpy',
'Mezepheles',
'Counterfeiter',
'Lunatic',
'Pukka',
'Lleech',
'Lil Monsta',
'Hastur',
'Bogman Info',
'Bogman',
'Censor',
'Pixie',
'Huntsman',
'Washerwoman',
'Librarian',
'Investigator',
'Chef',
'Empath',
'Fortune Teller',
'Fortune Teller2',
'Grandmother',
'Clockmaker',
'Dreamer',
'Dreamer2',
'Seamstress',
'Seamstress2',
'Steward',
'Knight',
'Noble',
'Balloonist',
'Shugenja',
'General',
'Bounty Hunter',
'Nightwatchman',
'Recordkeeper',
'Herald',
'Friar',
'Lord',
'Cardinal',
'Rook',
'Charlatan',
'Majesty',
'Pretender',
'Ysbaddaden',
'Butler',
'Chieftain Info',
'Chieftain',
'Blasphemer',
'Diviner',
'Trapper Info',
'Trapper',
'Stalker',
'Ambusher Info',
'Ambusher',
'Cult Leader',
'Spy',
'High Priestess',
'Chambermaid',
'Chambermaid2',
'Goon',
'Mathematician',
'Next Night'
}
}
OTHER =
{
TB = {
'Bureaucrat',
'Thief',
'Poisoner',
'Monk',
'Spy',
'Imp',
'Ravenkeeper',
'Undertaker',
'Empath',
'Fortune Teller',
'Fortune Teller2',
'Butler',
'Next Night'
},
BM = {
'Apprentice',
'Sailor',
'Innkeeper',
'Courtier',
'Gambler',
'Devils Advocate',
'Exorcist',
'Lunatic',
'Lunatic InfoD',
'Zombuul',
'Pukka',
'Shabaloth',
'Po',
'Assassin',
'Godfather_Info',
'Godfather',
'Professor',
'Gossip',
'Moonchild',
'Chambermaid',
'Chambermaid2',
'Goon',
'Next Night'
},
SV = {
'Barista',
'Bone Collector',
'Harlot',
'Philosopher',
'Snake Charmer',
'Witch',
'Cerenovus',
'Madness',
'Pit-Hag',
'Fang Gu',
'Vigormortis',
'No Dashii',
'Vortox',
'Barber',
'Sage',
'Dreamer',
'Dreamer2',
'Flowergirl',
'Town Crier',
'Oracle',
'Seamstress',
'Seamstress2',
'Juggler',
'Mathematician',
'Next Night'
},
CU = {
'Bureaucrat',
'Thief',
'Apprentice',
'Barista',
'Bone Collector',
'Harlot',
'Turncoat',
'Snitch',
'Lobotomizer',
'Philosopher',
'Sailor',
'Amnesiac',
'Engineer',
'King Info',
'Preacher',
'Poisoner',
'Eclipse',
'Viceroy',
'Cultist',
'Cursebearer',
'Conspirator',
'Jabberwocky',
'Rakshasa',
'Food Taster',
'Courtier',
'Innkeeper',
'Acrobat',
'Gambler',
'Snake Charmer',
'Monk',
'Medicine Man',
'Mother',
'Blasphemer',
'Wicked',
'Devils Advocate',
'Witch',
'Cerenovus',
'Madness',
'Pit-Hag',
'Fearmonger',
'Harpy',
'Counterfeiter',
'Pomme de Terror',
'Lycanthrope',
'Lunatic',
'Lunatic InfoD',
'Exorcist',
'Imp',
'Zombuul',
'Pukka',
'Lleech',
'Shabaloth',
'Po',
'Fang Gu',
'No Dashii',
'Vortox',
'Vigormortis',
'Ojo',
'Lil Monsta',
'Al-Hadikhia',
'Hastur',
'Rakshasa Kill',
'Xolotl',
'Ysbaddaden Kill',
'Draco',
'Jabberwocky Kill',
'Morgana',
'Retrogradus',
'Bogman',
'Sasquatch',
'Wendigo',
'Assassin',
'Godfather',
'Secondhand',
'Effigy',
'Farmer',
'Barber',
'Cartographer',
'Gossip',
'Moonchild',
'Huntsman',
'Schizophrenic',
'Apiarist',
'Bloodletter',
'Bloodletter2',
'Professor',
'Choirboy',
'Ravenkeeper',
'Ravenkeeper2',
'Sage',
'Princess',
'Princess2',
'Empath',
'Fortune Teller',
'Fortune Teller2',
'Undertaker',
'Dreamer',
'Dreamer2',
'Seamstress',
'Seamstress2',
'Flowergirl',
'Town Crier',
'Oracle',
'Juggler',
'Balloonist',
'King',
'Bounty Hunter',
'Nightwatchman',
'General',
'Recordkeeper',
'Lord',
'Cardinal',
'Rook',
'Charlatan',
'Majesty',
'Pretender',
'Ysbaddaden',
'Chieftain',
'Trapper',
'Shaman',
'Stargazer',
'Soothsayer',
'Soothsayer2',
'Stalker',
'Warrior',
'Ambusher',
'Butler',
'Cult Leader',
'Spy',
'High Priestess',
'Chambermaid',
'Chambermaid2',
'Mathematician',
'Goon',
'Next Night'
}
}
TB_LIST = {'Washerwoman', 'Librarian', 'Investigator', 'Chef', 'Empath', 'Fortune Teller', 'Undertaker', 'Monk', 'Ravenkeeper', 'Virgin', 'Slayer', 'Soldier', 'Mayor', 'Butler', 'Drunk', 'Recluse', 'Saint', 'Poisoner', 'Spy', 'Scarlet Woman', 'Baron', 'Imp', 'Scapegoat', 'Gunslinger', 'Beggar', 'Bureaucrat', 'Thief'}
BM_LIST = {'Grandmother', 'Sailor', 'Chambermaid', 'Exorcist', 'Innkeeper', 'Gambler', 'Gossip', 'Courtier', 'Professor', 'Minstrel', 'Tea Lady', 'Pacifist', 'Fool', 'Tinker', 'Moonchild', 'Goon', 'Lunatic', 'Godfather', 'Devils Advocate', 'Assassin', 'Mastermind', 'Zombuul', 'Pukka', 'Shabaloth', 'Po', 'Apprentice', 'Matron', 'Voudon', 'Judge', 'Bishop'}
SV_LIST = {'Clockmaker', 'Dreamer', 'Snake Charmer', 'Mathematician', 'Flowergirl', 'Town Crier', 'Oracle', 'Savant', 'Seamstress', 'Philosopher', 'Artist', 'Juggler', 'Sage', 'Mutant', 'Sweetheart', 'Barber', 'Klutz', 'Evil Twin', 'Witch', 'Cerenovus', 'Pit-Hag', 'Fang Gu', 'Vigormortis', 'No Dashii', 'Vortox', 'Butcher', 'Bone Collector', 'Harlot', 'Barista', 'Deviant'}
CU_LIST = {
'Washerwoman', 'Librarian', 'Investigator', 'Chef', 'Empath', 'Fortune Teller', 'Undertaker', 'Monk', 'Ravenkeeper', 'Virgin', 'Slayer', 'Soldier', 'Mayor', 'Butler', 'Drunk', 'Recluse', 'Saint', 'Poisoner', 'Spy', 'Scarlet Woman', 'Baron', 'Imp', 'Scapegoat', 'Gunslinger', 'Beggar', 'Bureaucrat', 'Thief',
'Grandmother', 'Sailor', 'Chambermaid', 'Exorcist', 'Innkeeper', 'Gambler', 'Gossip', 'Courtier', 'Professor', 'Minstrel', 'Tea Lady', 'Pacifist', 'Fool', 'Tinker', 'Moonchild', 'Goon', 'Lunatic', 'Godfather', 'Devils Advocate', 'Assassin', 'Mastermind', 'Zombuul', 'Pukka', 'Shabaloth', 'Po', 'Apprentice', 'Matron', 'Voudon', 'Judge', 'Bishop',
'Clockmaker', 'Dreamer', 'Snake Charmer', 'Mathematician', 'Flowergirl', 'Town Crier', 'Oracle', 'Savant', 'Seamstress', 'Philosopher', 'Artist', 'Juggler', 'Sage', 'Mutant', 'Sweetheart', 'Barber', 'Klutz', 'Evil Twin', 'Witch', 'Cerenovus', 'Pit-Hag', 'Fang Gu', 'Vigormortis', 'No Dashii', 'Vortox', 'Butcher', 'Bone Collector', 'Harlot', 'Barista', 'Deviant',
'Amnesiac', 'Balloonist', 'Cannibal', 'Fisherman', 'Goblin', 'Leviathan', 'Widow', 'Acrobat', 'General', 'Bounty Hunter', 'Cult Leader', 'Preacher', 'Politician', 'Lil Monsta', 'Lycanthrope', 'Pixie', 'Legion', 'Snitch', 'Mezepheles', 'Poppy Grower', 'Heretic', 'Marionette', 'King', 'Choirboy', 'Farmer', 'Magician', 'Lleech', 'Boomdandy', 'Damsel', 'Huntsman', 'Noble', 'Al-Hadikhia', 'Golem', 'Fearmonger', 'Puzzlemaster', 'Gangster', 'Alchemist', 'Atheist', 'Nightwatchman', 'Organ Grinder', 'Vizier', 'Steward', 'Knight', 'High Priestess', 'Harpy', 'Plague Doctor', 'Shugenja', 'Ojo',
'Majesty', 'Prince', 'Princess', 'Queen', 'Lord', 'Cardinal', 'Rook', 'Scribe', 'Herald', 'Chamberlain', 'Cup-Bearer', 'Friar', 'Food Taster', 'Pretender', 'Pawn', 'Emissary', 'Concubine', 'Charlatan', 'Conspirator', 'Scoundrel', 'Usurper', 'Ysbaddaden', 'Draco', 'Jabberwocky', 'Morgana',
'Astrologist', 'Cartographer', 'Censor', 'Child', 'Counterfeiter', 'Cultist', 'Cursebearer', 'Fanatic', 'Hastur', 'Lobotomizer', 'Mother', 'Pomme de Terror', 'Rakshasa', 'Recordkeeper', 'Schizophrenic', 'Turncoat', 'Xolotl',
'Chieftain','Blasphemer','Diviner','Trapper','Shaman','Stargazer','Soothsayer','Bloodletter','Stalker','Ambusher','Warrior','Medicine Man','Reveler','Wicked','Urchin','Right Hand Man','Apiarist','Eclipse','Viceroy','Effigy','Secondhand','Retrogradus','Bogman','Sasquatch','Wendigo',
}
TYPES = {'Townsfolk', 'Outsider', 'Minion', 'Demon', 'Traveler'}
CHARACTERS =
{
['Demon Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Three characters not in the game: P1, P2, P3', Description = ''},
['Washerwoman'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Either P1 or P2 is a P3.', Description = 'You start knowing that 1 of 2 players is a particular Townsfolk.'},
['Librarian'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Either P1 or P2 is a P3.', Description = 'You start knowing that 1 of 2 players is a particular Outsider. (Or that zero are in play)'},
['Investigator'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Either P1 or P2 is a P3.', Description = 'You start knowing that 1 of 2 players is a particular Minion.'},
['Chef'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You know that there are P1 pairs of evils.', Description = 'You start knowing how many pairs of evil players there are.'},
['Empath'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'There are P1 evil players beside you.', Description = 'Each night, you learn how many of your 2 alive neighbors are evil.'},
['Fortune Teller'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'Choose two players to check.', Description = 'Each night, choose 2 players: you learn if either is a Demon. There is 1 good player that registers as a Demon to you.'},
['Fortune Teller2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'There P1 a Demon between the two players that you checked.', Description = ''},
['Undertaker'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You learned that the player executed yesterday was a P1.', Description = 'Each night*, you learn which character died by execution today.'},
['Monk'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player to protect.', Description = 'Each night*, choose a player (not yourself): they are safe from the Demon tonight.'},
['Ravenkeeper'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'You died tonight. Choose a player to check.', Description = 'If you die at night, you are woken to choose a player: you learn their character.'},
['Ravenkeeper2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is a P2.', Description = ''},
['Virgin'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = '', Description = 'The 1st time you are nominated, if the nominator is a Townsfolk, they are executed immediately.'},
['Slayer'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = '', Description = 'Once per game, during the day, publicly choose a player: if they are the Demon, they die.'},
['Soldier'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'You are safe from the Demon.'},
['Mayor'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'If only 3 players live & no execution occurs, your team wins. If you die at night, another player might die instead.'},
['Butler'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'Choose a player to be your master.', Description = 'Each night, choose a player (not yourself): tomorrow, you may only vote if they are voting too.'},
['Drunk'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'You do not know you are the Drunk. You think you are a Townsfolk, but you are not.'},
['Recluse'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'You might register as evil & as a Minion or Demon, even if dead.'},
['Saint'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you die by execution, your team loses.'},
['Po'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, you may choose a player: they die. If your last choice was no-one, choose 3 players tonight.'},
['Poisoner'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player to poison.', Description = 'Each night, choose a player: they are poisoned tonight and tomorrow day.'},
['Spy'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Here is the Grimoire.', Description = 'Each night, you see the Grimoire. You might register as good & as a Townsfolk or Outsider, even if dead.'},
['Scarlet Woman'] = {Type = 'Minion', Ability = true, Response = false, Prompt = '', Description = 'If there are 5 or more players alive & the Demon dies, you become the Demon. (Travelers don\'t count)'},
['Baron'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'There are 2 extra Outsiders in play.'},
['Imp'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player, they die. If you kill yourself this way, a Minion becomes the Imp.'},
['Mother'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night*, choose a player: they are sober & healthy from now on & evil abilities malfunction on them. You die.'},
['Grandmother'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'P1 is your grandchild. They are a P2', Description = 'You start knowing a good player & character. If the Demon kills them, you die too.'},
['Sailor'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: either you or they are drunk until dusk. You can not die.'},
['Chambermaid'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'Choose two alive players to check.', Description = 'Each night, choose 2 alive players (not yourself): you learn how many woke tonight due to their ability.'},
['Chambermaid2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 of those players woke up tonight.', Description = ''},
['Exorcist'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player (not the same as last night.)', Description = 'Each night*, choose a player (different to last night): the Demon, if chosen, learns who you are & doesn\'t wake tonight.'},
['Innkeeper'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose two players to keep alive.', Description = 'Each night*, choose 2 players: they cannot die tonight, but 1 is drunk until dusk.'},
['Gambler'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player and their character.', Description = 'Each night*, choose a player & guess their character: if you guess wrong, you die.'},
['Gossip'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Each day, you may make a public statement. Tonight, if it was true, a player dies.'},
['Courtier'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability? (Choose a character.)', Description = 'Once per game, at night, choose a character: they are drunk for 3 nights & 3 days.'},
['Professor'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability? (Choose a player.)', Description = 'Once per game, at night*, choose a dead player. If they are a Townsfolk, they are resurrected.'},
['Minstrel'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'When a Minion dies by execution, all other players (except Travelers) are drunk until dusk tomorrow.'},
['Tea Lady'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'If both your alive neighbors are good, they can\'t die.'},
['Pacifist'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Executed good players might not die.'},
['Fool'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = '', Description = 'The first time you die, you don\'t.'},
['Tinker'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'You might die at any time.'},
['Child'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'If you are executed, good players cannot die tonight. If you are "mad" about being the Child, you lose this ability.'},
['Moonchild'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'When you learn that you died, publicly choose 1 alive player. Tonight, if it was a good player, they die.'},
['Goon'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'Your alignment is now P1.', Description = 'Each night, the 1st player to choose you with their ability is drunk until dusk. You become their alignment.'},
['Lunatic'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'You think you are a Demon, but you are not. The Demon knows who you are & who you choose at night.'},
['Lunatic InfoA'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Demon: P1, Minions: P2 P3 P4', Description = ''},
['Lunatic InfoB'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Three characters not in the game: P1, P2, P3.', Description = ''},
['Lunatic InfoC'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is a Lunatic. You are the P2.', Description = ''},
['Lunatic InfoD'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Tonight, the Lunatic targeted P1 P2 P3', Description = ''},
['Godfather'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player to kill.', Description = 'You start knowing which Outsiders are in-play. If 1 died today, choose a player tonight: they die. [-1 or +1 Outsider]'},
['Godfather Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Outsiders in play: P1 P2 P3 P4', Description = ''},
['Devils Advocate'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a living player (not the same as last night) to save during the day.', Description = 'Each night, choose a living player (different to last night): if executed tomorrow, they don\'t die.'},
['Assassin'] = {Type = 'Minion', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night*, choose a player: they die, even if for some reason they could not.'},
['Mastermind'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'If the Demon dies by execution (ending the game), play for 1 more day. If a player is then executed, their team loses.'},
['Zombuul'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, if no-one died today, choose a player: they die. The 1st time you die, you live but register as dead.'},
['Pukka'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night, choose a player: they are poisoned. The previously poisoned player dies then becomes healthy.'},
['Shabaloth'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose 2 players: they die. A dead player you chose last night might be regurgitated.'},
['Clockmaker'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The Demon is P1 steps away from its nearest Minion.', Description = 'You start knowing how many steps from the Demon to its nearest Minion.'},
['Dreamer'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'Choose a player.', Description = 'Each night, choose a player (not yourself, not Travellers); you learn 1 good character & 1 evil character, 1 of which is correct.'},
['Dreamer2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is either a P2 or a P3.', Description = ''},
['Snake Charmer'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose an alive player: a chosen Demon swaps characters & alignments with you & is then poisoned.'},
['Mathematician'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Today/Tonight, P1 abilities worked abnormally.', Description = 'Each night, you learn how many players\' abilities worked abnormally (since dawn) due to another character\'s ability.'},
['Flowergirl'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The Demon P1 voted today.', Description = 'Each night*, you learn if the Demon voted today.'},
['Town Crier'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'A minion P1 nominated today.', Description = 'Each night*, you learn if a Minion nominated today.'},
['Oracle'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'There are P1 evil dead players.', Description = 'Each night*, you learn how many dead players are evil.'},
['Savant'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Each day, you may visit the Storyteller to learn 2 things in private: 1 is true & 1 is false.'},
['Seamstress'] = {Type = 'Townsfolk', Ability = true, Response = true, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night, choose 2 players (not yourself): you learn if they are the same alignment.'},
['Seamstress2'] = {Type = 'Info', Ability = true, Response = false, Prompt = 'Those two players P1 the same alignment.', Description = ''},
['Philosopher'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night, choose a good character: gain that ability. If this character is in play, they are drunk.'},
['Artist'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = '', Description = 'Once per game, during the day, privately ask the Storyteller any yes/no question.'},
['Juggler'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'You learn that P1 of your guesses were correct.', Description = 'On your 1st day, publicly guess up to 5 player\'s characters. That night, you learn how many you got correct.'},
['Sage'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You died tonight. The demon is either P1 or P2.', Description = 'If the Demon kills you, you learn that it is 1 of 2 players.'},
['Mutant'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you are "mad" about being an Outsider, you might be executed.'},
['Sweetheart'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you die, 1 player is drunk from now on.'},
['Barber'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'Choose two players to swap characters. You may also choose not to swap anyone.', Description = 'If you died today or tonight, the Demon may choose 2 players (not another Demon) to swap characters.'},
['Klutz'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'When you learn that you died, publicly choose 1 alive good player: if they are evil, your team loses.'},
['Evil Twin'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Your good twin counterpart is P1. Their character is P2.', Description = 'You & an opposing player know each other. If the good player is executed, evil wins. Good can\'t win if you both live.'},
['Good Twin'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is the Evil Twin.', Description = ''},
['Witch'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: if they nominate tomorrow, they die. If just 3 players live, you lose this ability.'},
['Cerenovus'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player and a character.', Description = 'Each night, choose a player & a good character: they are "mad" they are this character tomorrow, or might be executed.'},
['Madness'] = {Type = 'Status', Ability = false, Response = false, Prompt = 'The Cerenovus chose you tonight. If you are not "mad" about being a P1, you might be executed tomorrow.', Description = ''},
['Pit-Hag'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player and a character.', Description = 'Each night*, choose a player & a character they become (if not-in-play). If a Demon is made, deaths tonight are arbitrary.'},
['Fang Gu'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. The 1st Outsider this kills becomes an evil Fang Gu & you die instead. [+1 Outsider]'},
['Vigormortis'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Minions you kill keep their ability & poison 1 Townsfolk neighbor. [-1 Outsider].'},
['No Dashii'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Your 2 Townsfolk neighbors are poisoned.'},
['Vortox'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player; they die. Townsfolk abilities yield false info. Each day, if no-one was executed, evil wins.'},
['Scapegoat'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'If a player of your alignment is executed, you might be executed instead.'},
['Gunslinger'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Each day, after the 1st vote has been tallied, you may choose a player that voted: they die.'},
['Beggar'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'You must use a vote token to vote. Dead players may choose to give you theirs. If so, you learn their alignment.'},
['Bureaucrat'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = 'Choose a player to have three votes tomorrow.', Description = 'Each night, choose a player (not yourself): their vote counts as 3 votes tomorrow.'},
['Thief'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = 'Choose a player to have a negative vote tomorrow.', Description = 'Each night, choose a player (not yourself): their vote counts negatively tomorrow.'},
['Apprentice'] = {Type = 'Traveler', Ability = true, Response = false, Prompt = 'You gained the ability of a P1.', Description = 'On your 1st night, you gain a Townsfolk ability (if good), or a Minion ability (if evil).'},
['Matron'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Each day, you may choose up to 3 pairs of players to swap seats. Players may not leave their seats to talk in private.'},
['Voudon'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Only you & the dead can vote. They don\'t need a vote token to do so. A 50% majority is not required.'},
['Judge'] = {Type = 'Traveler', Ability = true, Response = false, Prompt = '', Description = 'Once per game, if another player nominated, you may choose to force the current execution to pass or fail.'},
['Bishop'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Only the Storyteller can nominate. At least 1 opposite player must be nominated each day.'},
['Butcher'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Each day, after the 1st execution, you nominate again.'},
['Bone Collector'] = {Type = 'Traveler', Ability = true, Response = false, Prompt = 'Choose a dead player to regain their ability.', Description = 'Once per game, at night, choose a dead player: they regain their ability until dusk.'},
['Harlot'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = 'Choose a living player.', Description = 'Each night*, choose a living player: if they agree, you learn their character, but you both might die.'},
['Barista'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Each night, until dusk, 1) a player becomes sober, healthy & gets true info, or 2) their ability works twice. They learn which.'},
['Deviant'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'If you were funny today, you can not be exiled.'},
['Amnesiac'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'You do not know what your ability is. Each day, privately guess what it is: you learn how accurate you are.'},
['Balloonist'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Tonight, you learned about player P1.', Description = 'Each night, you learn 1 player of each character type, until there are no more types to learn. [+1 Outsider]'},
['Cannibal'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'You have the ability of the recently killed executee. If they are evil, you are poisoned until a good player dies this way.'},
['Fisherman'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = '', Description = 'Once per game, during the day, visit the Storyteller for some advice to help you win.'},
['Goblin'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'If you publicly claim to be the Goblin when nominated & are executed that day, your team wins.'},
['Leviathan'] = {Type = 'Demon', Ability = false, Response = false, Prompt = '', Description = 'If more than 1 good player is executed, you win. All players know you are in play. After day 5, evil wins.'},
['Widow'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Here is the grimoire. Choose a player to poison.', Description = 'On your 1st night, look at the Grimoire & choose a player: they are poisoned. 1 good player knows a Widow is in play.'},
['Acrobat'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'Each night*, if either good living neighbor is drunk or poisoned, you die.'},
['General'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Currently, the P1 team is winning.', Description = 'Each night, you learn which alignment the Storyteller believes is winning: good, evil, or neither.'},
['Bounty Hunter'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'P1 is evil.', Description = 'You start knowing 1 evil player. If the evil player you knows dies, you learn another that night. [1 Townsfolk is evil]'},
['Cult Leader'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You are P1.', Description = 'Each night, you become the alignment of an alive neighbor. If all good players choose to join your cult, your team wins.'},
['Preacher'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: a Minion, if chosen, learns this. All chosen Minions have no ability.'},
['Politician'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you were the player most responsible for your team losing, you change alignment & win, even if dead.'},
['Lil Monsta'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to babysit the Lil\' Monsta tonight.', Description = 'Each night, Minions choose who babysits Lil\' Monsta\'s token & "is the Demon". A player dies each night*. [+1 Minion]'},
['Lycanthrope'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night*, choose a living player: if good, they die & nobody else can die tonight.'},
['Pixie'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The P1 is in play.', Description = 'You start knowing 1 in-play Townsfolk. If you were mad that you were this character, you gain their ability when they die.'},
['Legion'] = {Type = 'Demon', Ability = false, Response = false, Prompt = '', Description = 'Each night*, a player might die. Executions fail if only evil voted. You register as a Minion too. [Most players are Legion]'},
['Snitch'] = {Type = 'Outsider', Ability = true, Response = false, Prompt = 'Three not-in-play characters: P1, P2, P3.', Description = 'Minions start knowing 3 not-in-play characters.'},
['Mezepheles'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'The secret word is:', Description = 'You start knowing a secret word. The 1st good player to say this word becomes evil that night.'},
['Poppy Grower'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Minions & Demons do not know each other. If you die, they learn who each other are that night.'},
['Heretic'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'Whoever wins, loses & whoever loses, wins, even if you are dead.'},
['Marionette'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'You think you are a good character. You are poisoned & the Demon knows who you are. [You neighbor the Demon]'},
['King'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'There is a living P1.', Description = 'Each night, if the dead outnumber the living, you learn 1 alive character. The Demon knows who you are.'},
['King Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is the King.', Description = ''},
['Choirboy'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'P1 is the Demon.', Description = 'If the Demon kills the King, you learn which player is the Demon. [+the King]'},
['Farmer'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'If you die at night, an alive good player becomes a Farmer.'},
['Magician'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'The Demon thinks you are a Minion. Minions think you are a Demon.'},
['Lleech'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night*, choose a player: they die. You start by choosing an alive player: they are poisoned - you die if (& only if) they die.'},
['Boomdandy'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'If you are executed, all but 3 players die. 1 minute later, the player with the most players pointing at them, dies.'},
['Damsel'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'All Minions know you are in play. If a Minion publicly guess you (once), you lose.'},
['Huntsman'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game at night, choose a living player: the Damsel, if chosen, becomes a not-in-play Townsfolk. [+the Damsel]'},
['Noble'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Between P1, P2 and P3, only one of them is evil.', Description = 'You start knowing 3 players, 1 and only 1 of which is evil.'},
['Al-Hadikhia'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose 3 players.', Description = 'Each night*, choose 3 players (all players learn who): each silently chooses to live or die, but if all live, all die.'},
['Golem'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'You may only nominate once per game. When you do, if the nominee is not the Demon, they die.'},
['Fearmonger'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: if you nominate & execute them, their team loses. All players know if you choose a new player.'},
['Puzzlemaster'] = {Type = 'Outsider', Ability = true, Response = false, Prompt = '', Description = '1 player is drunk, even if you die. If you guess (once) who it is, learn the Demon player, but guess wrong & get false info.'},
['Gangster'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = '', Description = 'Once per day, you may choose to kill an alive neighbor, if your other alive neighbor agrees.'},
['Alchemist'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You have the ability of a P1.', Description = 'You have a not-in-play Minion ability.'},
['Engineer'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night, choose which Minions or which Demon is in play.'},
['Riot'] = {Type = 'Demon', Ability = false, Response = false, Prompt = '', Description = 'Nominees die, but may nominate again immediately (on day 3, they must). After day 3, evil wins. [All Minions are Riot]'},
['Psychopath'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'Each day, before nominations, you may publicly choose a player: they die. If executed, you only die if you lose roshambo.'},
['Atheist'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'The Storyteller can break the game rules & if executed, good wins, even if you are dead. [No evil characters]'},
['Nightwatchman'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night, choose a player: they learn who you are.'},
['Organ Grinder'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'All players keep their eyes closed when voting & the vote tally is secret. Votes for you only count if you vote.'},
['Vizier'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'All players know who you are. You can not die during the day. If good voted, you may choose to execute immediately.'},
['Steward'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You know that P1 is good.', Description = 'You start knowing 1 good player.'},
['Knight'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'P1 and P2 are not the Demon.', Description = 'You start knowing 2 players that are not the Demon.'},
['High Priestess'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'I think you should talk to P1', Description = "Each night, learn which player the Storyteller believes you should talk to most."},
['Harpy'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose 2 players.', Description = 'Each night, choose 2 players: tomorrow, the 1st player is mad that the 2nd is evil, or both might die.'},
['Plague Doctor'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you die, the Storyteller gains a not-in-play Minion ability.'},
['Shugenja'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Your closest evil player is P1.', Description = 'You start knowing if your closest evil player is clockwise or anti-clockwise. If equidistant, this info is arbitrary.'},
['Ojo'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose a character.', Description = 'Each night*, choose a character: they die. If they are not in play, the Storyteller chooses who dies.'},
['Astrologist'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Each day, visit the Storyteller with a number between 0 & 5 to receive a clue.'},
['Censor'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The censored word is:.', Description = 'You & evils start knowing a word: minions who say it lose. If you are "mad" about being the Censor or say it, you lose this ability.'},
['Recordkeeper'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You learn that the P1 is not in play.', Description = 'Each night, you learn a character not in play.'},
['Cartographer'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'You killed the Cartographer. Here is the Grimoire.', Description = 'If you die, tonight the Demon sees the Grimoire.'},
['Schizophrenic'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you did not nominate today, a Townsfolk dies tonight.'},
['Counterfeiter'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night*, choose a player: they register as a character opposite of their alignment until dusk.'},
['Cultist'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Your votes don\'t count. Once per game, at night*, choose a player: they are poisoned until dusk, even if you are dead; you die.'},
['Cursebearer'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose any number of characters.', Description = 'Each night*, choose any number of characters: they are poisoned. If a chosen character is not in play, you are poisoned from now on.'},
['Fanatic'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'Each day, if you are "mad" about being a character, you might gain ther ability tonight and tomorrow.'},
['Lobotomizer'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night*, choose a player: they don\'t wake tonight. If more than 4 players live, they register as dead tomorrow.'},
['Pomme de Terror'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night*, choose a player: you swap characters with them. If you would win, your alignment changes & you lose instead, even if dead.'},
['Hastur'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: they become an evil Cultist. You don\'t start knowing three characters not in play. [-1 Minion]'},
['Rakshasa'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose a good character.', Description = 'Each night*, choose a player: they die. Each night, choose a good character: you gain their ability until dusk.'},
['Rakshasa Kill'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Each night, choose a good character: you gain their ability until dusk.'},
['Xolotl'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night, choose 2 players: if both are living, 1 dies; if 1 is dead, they are resurrected & the other dies.'},
['Turncoat'] = {Type = 'Traveler', Ability = false, Response = false, Prompt = 'Your alignment is now P1. Choose a player to check.', Description = 'Each night*, your alignment might change. If it does, choose a player: you learn their alignment. You don\'t know who the Demon is.'},
['Majesty'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Tonight, your subjects reported to you the following information:', Description = 'Each night, receive info from your subjects. Poisoned players might give you false info.'},
['Prince'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'If the Majesty dies, you become the Majesty.'},
['Princess'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'The Majesty died tonight. Choose a player.', Description = 'If the Majesty dies, choose a player tonight: you learn their character.'},
['Princess2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is a P2.', Description = ''},
['Queen'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Each night, the Majesty learns how many of your 2 alive neighbors are evil.'},
['Lord'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: if they are a Townsfolk, the Majesty learns their character.'},
['Cardinal'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: if they are an Outsider, the Majesty learns their character.'},
['Rook'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: if they are a Minion, the Majesty learns their character.'},
['Scribe'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'On your 1st 3 nights, each night, the Majesty learns a player: all three players are each different types.'},
['Herald'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'P1 is the Majesty.', Description = 'You start knowing the Majesty.'},
['Chamberlain'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'The Majesty is safe from the Demon.'},
['Cup-Bearer'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = '', Description = 'Once per day, you may offer someone a cup. If they accept, they die if evil. If you are poisoned, they die if they are good.'},
['Friar'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'On your first night, choose a player: when the first of either of you dies, the Majesty learns their alignment.'},
['Food Taster'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose another player: until dusk, abilities that affect them affect you instead.'},
['Pretender'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'Tonight, your subjects reported to you the following information:', Description = 'You think you are the Majesty and register as them. Each night, you receive false info from your subjects.'},
['Pawn'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'You have a Townsfolk ability, but you don\'t know what it is.'},
['Emissary'] = {Type = 'Outsider', Ability = true, Response = false, Prompt = '', Description = 'The first time someone other than yourself or a Majesty nominates you, they turn evil at dusk.'},
['Concubine'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you die, the Majesty becomes drunk for 2 nights & 2 days.'},
['Charlatan'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose two characters.', Description = 'Each night, choose two characters: they report arbitrary info to the Majesty, even if they are not in play.'},
['Conspirator'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night, choose a player: any good player who chooses them is poisoned until dusk. [+2 Outsiders]'},
['Scoundrel'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'Once per day, you may offer someone a cup. If they accept, they die if they are good. You might register as the Cup-Bearer.'},
['Usurper'] = {Type = 'Minion', Ability = false, Response = false, Prompt = '', Description = 'At dawn, evil wins if no Majesties live. If Morgana is in play, only you win if no Majesties live.'},
['Ysbaddaden'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Tonight, your subjects reported to you the following information:', Description = 'Each night*, choose a player: they die. You start knowing the Majesty. You register as good & as them & receive info from subjects.'},
['Ysbaddaden Kill'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. You start knowing the Majesty. You register as them & receive info from your subjects.'},
['Draco'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Once per game, if 6 or more players live, kill their alive neighbors as well.'},
['Jabberwocky'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Poison all Townsfolk tonight?', Description = 'Each night*, choose a player: they die. Once per game, choose if all Townsfolk are poisoned tonight & every other night.'},
['Jabberwocky Kill'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Once per game, choose if all Townsfolk are poisoned tonight & every other night.'},
['Morgana'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. All non-Majesty players are evil. If no Majesties live, or 5 or fewer players live & Majesties only vote on you, evil loses.'},
['Chieftain'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The clockhand P1 an Outsider tonight.', Description = 'You start knowing an in-play Outsider. Each night*, you learn if the clockhand is an Outsider. [+1 Outsider]'},
['Chieftain Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'An Outsider in-play: P1.', Description = ''},
['Blasphemer'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'A Townsfolk in-play: P1.', Description = 'You start knowing an in-play Townsfolk. You die in the night if you are the clockhand.'},
['Diviner'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The in-play Demon: P1. A player who isn\'t the clockhand: P2.', Description = 'You start knowing the in-play Demon & a player who isn\'t the clockhand.'},
['Trapper'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'P1 of you is the clockhand tonight.', Description = 'On your 1st night, choose a player (not yourself): each night*, you learn if either of you is the clockhand.'},
['Trapper Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'Choose a player.', Description = ''},
['Shaman'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The clockhand P1 dead tonight.', Description = 'Each night*, you learn if the clockhand is dead.'},
['Stargazer'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'The clockhand is P1 tonight.', Description = 'Each night*, you learn the clockhand\'s alignment.'},
['Soothsayer'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'Choose a player.', Description = 'Each night*, choose a player: you learn their character. If the clockhand is evil or yourself, you are drunk.'},
['Soothsayer2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is a P2.', Description = ''},
['Bloodletter'] = {Type = 'Townsfolk', Ability = false, Response = true, Prompt = 'Do you want to use your ability?', Description = 'Each night, you may choose a player: you learn their alignment & a player might be bloodied. A Townsfolk starts bloodied.'},
['Bloodletter2'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'P1 is P2.', Description = ''},
['Stalker'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Your clockwise living neighbor P1 a Minion.', Description = 'Each night, you learn if your clockwise living neighbor is a Minion.'},
['Ambusher'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'One of the minions is a P1.', Description = 'You start knowing an in-play Minion. If you die at night, you learn a Minion player.'},
['Ambusher Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'A Minion in-play: P1.', Description = ''},
['Warrior'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'You P1 bloodied tonight.', Description = 'Each night*, you learn if you are bloodied. You are triaged at night.'},
['Medicine Man'] = {Type = 'Townsfolk', Ability = false, Response = false, Prompt = 'Choose 2 players.', Description = 'Each night*, choose 2 players (not yourself): they are triaged tonight.'},
['Reveler'] = {Type = 'Townsfolk', Ability = true, Response = false, Prompt = '', Description = 'Once per game, during the day, you may sing a song that makes the Demon and another player drunk until dawn.'},
['Wicked'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = 'You are now evil.', Description = 'You turn evil in the night if you are the clockhand.'},
['Urchin'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you become the clockhand, the Demon is woken & may choose to move the clockhand again, even if you are dead. You start bloodied.'},
['Right Hand Man'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'While your clockwise neighbor is dead, a player is drunk.'},
['Apiarist'] = {Type = 'Outsider', Ability = false, Response = false, Prompt = '', Description = 'If you die, either a player dies, or 3 players are bloodied tonight.'},
['Eclipse'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Do you want to move the clockhand?', Description = 'If you become the clockhand, you are woken and may choose to move the clockhand again, even if dead. [+1 Outsider]'},
['Viceroy'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Here is the Grimoire. Do you want to poison your clockwise living Townsfolk?', Description = 'Each night, you see the Grimoire and may choose to poison your clockwise living Townsfolk neighbor until dusk.'},
['Effigy'] = {Type = 'Minion', Ability = true, Response = false, Prompt = 'Do you want to use your ability?', Description = 'Once per game, at night*, choose a player: they die. Then, if 5 or more players are alive, you may choose to die too.'},
['Secondhand'] = {Type = 'Minion', Ability = false, Response = false, Prompt = 'Choose a player.', Description = 'Each night*, choose a player: they are bloodied. A chosen clockhand dies instead.'},
['Retrogradus'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Townsfolk clockhands are poisoned. [The clockhand moves counterclockwise]'},
['Bogman'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. You start knowing & poison a Townsfolk player.'},
['Bogman Info'] = {Type = 'Info', Ability = false, Response = false, Prompt = 'A poisoned Townsfolk player in play: P1.', Description = ''},
['Sasquatch'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose a player: they die. Once per game, you may choose twice.'},
['Wendigo'] = {Type = 'Demon', Ability = false, Response = false, Prompt = 'Choose who to kill.', Description = 'Each night*, choose 1 or 3 players: if you chose 1, they die; if you chose 3, they are bloodied. Minions start bloodied.'},
}
PROMPTS = {
['Demon Info'] = {P1 = {type = "Demon Info"}, P2 = {type = "Demon Info"}, P3 = {type = "Demon Info"}},
['Washerwoman'] = {P1 = {type = "Color"}, P2 = {type = "Color"}, P3 = {type = "Character", quality = "Townsfolk"}},
['Librarian'] = {P1 = {type = "Color"}, P2 = {type = "Color"}, P3 = {type = "Character", quality = "Outsider"}},
['Investigator'] = {P1 = {type = "Color"}, P2 = {type = "Color"}, P3 = {type = "Character", quality = "Minion"}},
['Chef'] = {P1 = {type = "Number", min = 0, max = 6}},
['Empath'] = {P1 = {type = "Number", min = 0, max = 2}},
['Fortune Teller2'] = {P1 = {type = "State", quality = "Is"}},
['Undertaker'] = {P1 = {type = "Character", quality = "All"}},
['Ravenkeeper2'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "All"}},
['Grandmother'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "Good"}},
['Chambermaid2'] = {P1 = {type = "Number", min = 0, max = 2}},
['Goon'] = {P1 = {type = "State", quality = "Alignment"}},
['Lunatic InfoA'] = {P1 = {type = "Color"}, P2 = {type = "Color"}, P3 = {type = "Color"}, P4 = {type = "Color"}},
['Lunatic InfoB'] = {P1 = {type = "Character", quality = "Good"}, P2 = {type = "Character", quality = "Good"}, P3 = {type = "Character", quality = "Good"},},
['Lunatic InfoC'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "Demon"}},
['Lunatic InfoD'] = {P1 = {type = "Color"}, P2 = {type = "Color"}, P3 = {type = "Color"}},
['Godfather Info'] = {P1 = {type = "Character", quality = "Outsider"}, P2 = {type = "Character", quality = "Outsider"}, P3 = {type = "Character", quality = "Outsider"}, P4 = {type = "Character", quality = "Outsider"}},
['Clockmaker'] = {P1 = {type = "Number", min = 1, max = 10}},
['Dreamer2'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "Good"}, P3 = {type = "Character", quality = "Evil"}},
['Mathematician'] = {P1 = {type = "Number", min = 0, max = 12}},
['Flowergirl'] = {P1 = {type = "State", quality = "Has"}},
['Town Crier'] = {P1 = {type = "State", quality = "Has"}},
['Oracle'] = {P1 = {type = "Number", min = 0, max = 7}},
['Seamstress2'] = {P1 = {type = "State", quality = "Have"}},
['Juggler'] = {P1 = {type = "Number", min = 0, max = 10}},
['Sage'] = {P1 = {type = "Color"}, P2 = {type = "Color"}},
['Evil Twin'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "Good"}},
['Good Twin'] = {P1 = {type = "Color"}},
['Madness'] = {P1 = {type = "Character", quality = "Good"}},
['Apprentice'] = {P1 = {type = "Character", quality = "All"}},
['Balloonist'] = {P1 = {type = "Color"}},
['General'] = {P1 = {type = "State", quality = "Alignment"}},
['Bounty Hunter'] = {P1 = {type = "Color"}},
['Pixie'] = {P1 = {type = "Character", quality = "Townsfolk"}},
['Cult Leader'] = {P1 = {type = "State", quality = "Alignment"}},
['Snitch'] = {P1 = {type = "Character", quality = "Good"}, P2 = {type = "Character", quality = "Good"}, P3 = {type = "Character", quality = "Good"},},
['King'] = {P1 = {type = "Character", quality = "All"}},
['King Info'] = {P1 = {type = "Color"}},
['Choirboy'] = {P1 = {type = "Color"}},
['Noble'] = {P1 = {type = "Color"}, P2 = {type = "Color"}, P3 = {type = "Color"}},
['Alchemist'] = {P1 = {type = "Character", quality = "Minion"}},
['Steward'] = {P1 = {type = "Color"}},
['Knight'] = {P1 = {type = "Color"}, P2 = {type = "Color"}},
['High Priestess'] = {P1 = {type = "Color"}},
['Shugenja'] = {P1 = {type = "State", quality = "Clockwise"}},
['Recordkeeper'] = {P1 = {type = "Character", quality = "All"}},
['Turncoat'] = {P1 = {type = "State", quality = "Alignment"}},
['Princess2'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "Good"}},
['Herald'] = {P1 = {type = "Color"}},
['Chieftain'] = {P1 = {type = "State", quality = "Is"}},
['Chieftain Info'] = {P1 = {type = "Character", quality = "Outsider"}},
['Blasphemer'] = {P1 = {type = "Character", quality = "Townsfolk"}},
['Diviner'] = {P1 = {type = "Character", quality = "Demon"}, P2 = {type = "Color"}},
['Trapper'] = {P1 = {type = "Number", min = 0, max = 1}},
['Shaman'] = {P1 = {type = "State", quality = "Is"}},
['Stargazer'] = {P1 = {type = "State", quality = "Alignment"}},
['Soothsayer2'] = {P1 = {type = "Color"}, P2 = {type = "Character", quality = "All"}},
['Bloodletter2'] = {P1 = {type = "Character", quality = "All"}},
['Stalker'] = {P1 = {type = "State", quality = "Is"}},
['Ambusher'] = {P1 = {type = "Character", quality = "Minion"}},
['Ambusher Info'] = {P1 = {type = "Color"}},
['Warrior'] = {P1 = {type = "State", quality = "Are"}},
['Bogman Info'] = {P1 = {type = "Color"}},
}
DECAL_URLS =
{
['Acrobat'] = 'http://cloud-3.steamusercontent.com/ugc/1057730374545997309/BBB98400221B85ABE36B9CCA11DA866C6E593614/',
['Al-Hadikhia'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981847972/537781E384432DF3266823BA6C9076572FE4D292/',
['Alchemist'] = 'http://cloud-3.steamusercontent.com/ugc/1773847942320331250/4845D1E94935F118F18BAEAE24A88D17B888255B/',
['Amnesiac'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871282884/E57A19CBD11CA5669D6959455199F8E9B6A9C55F/',
['Apprentice'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674448162/48ABB3342C8ED7A1D60185C2960B5A6867755B10/',
['Artist'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674453549/907AC5B8B144F692D8A83294A5CF53B178227440/',
['Assassin'] = 'http://cloud-3.steamusercontent.com/ugc/787490852822062200/8F54AF63B244D97858B94DCC4A8180DE0E60524A/',
['Atheist'] = 'http://cloud-3.steamusercontent.com/ugc/1860549582520545551/4C6464843D78D0BBF7C0DC81C1826DD4060F1181/',
['Balloonist'] = 'http://cloud-3.steamusercontent.com/ugc/1025073792546110578/68C1CC3AD1E4431B9B16647FDEA493611DEB001C/',
['Barber'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896856682/D139AAA0C614908A30EFFF91EB06AF0FCA857DD8/',
['Barista'] = 'http://cloud-3.steamusercontent.com/ugc/793119007239083966/F4D7CD8FD2DD389D27A3773E1B2194817D2A90D3/',
['Baron'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674407276/AC8F11015E04554E5BEF318CF7DA195ACF00B59B/',
['Beggar'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674409482/AB1B50A94978645693944FAFB37AB488C6374A27/',
['Bishop'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674448504/A55B989212CD9124E4B72EF9463653719CBB8849/',
['Bone Collector'] = 'http://cloud-3.steamusercontent.com/ugc/778486750219640505/0FEFABE233EDE8E964946E34C093B3FD3CF95EDE/',
['Boomdandy'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339504/B62F79BC51CA66539682C88ED4F86083C1CB63C4/',
['Bounty Hunter'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871282951/310416B58DBF0B33B4D8CDC8C30A4E9ACC2DCB21/',
['Bureaucrat'] = 'http://cloud-3.steamusercontent.com/ugc/787490852822008329/3FC18D609B98D36E199C4463310C8165338232F2/',
['Butcher'] = 'http://cloud-3.steamusercontent.com/ugc/913575713675356977/E96764552407D626B6EDFCC6431146F7A53F81B4/',
['Butler'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131093624/8E0BFBA0CF28DAF709BF9908FD9AF08B3B9AB1BD/',
['Cannibal'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283013/3A7385CB4D9CC1CC97D4F20D85CD82C2B7DF8610/',
['Cerenovus'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674464813/FB0B10AE45F558B0716F339FFF61343407709DB0/',
['Chambermaid'] = 'http://cloud-3.steamusercontent.com/ugc/794252431662887242/C31441953741833CE54D48B36F4588F44136B07A/',
['Chef'] = 'http://cloud-3.steamusercontent.com/ugc/788617313254834055/BDFEEEB82EB8F4439A524E1112DEA593AC0339B6/',
['Choirboy'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285982284281/4558696312CA0761C0E86F5151BA5784C806A3AE/',
['Clockmaker'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674455021/77EFE580ECF43F28F2CF6E0555AE0F16B6443610/',
['Courtier'] = 'http://cloud-3.steamusercontent.com/ugc/792004915767345490/7421ACB5775E149C7E4D0E1782C917C38A7D3525/',
['Cult Leader'] = 'http://cloud-3.steamusercontent.com/ugc/1504719589256044611/EB477268E926E3384BBBB6C0D4CB62352DA5DC11/',
['Damsel'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339564/4C518794B780B3A7806A8E5DEF63EFBDC74A2B60/',
['Deviant'] = 'http://cloud-3.steamusercontent.com/ugc/913575713675357335/E61A0628E3A4EC7FF78E8DF14E6E3BCE80BB259C/',
['Devils Advocate'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896851997/700E579ED297A8988C9EDA920C01D7D2F663B504/',
['Dreamer'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896855895/522102E67EFB5A7B4175CF2AE625BF0F45F626F2/',
['Drunk'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397895994559/23812B585E5A5BBCD5F85439F4B415A781EAC05C/',
['Empath'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674387733/14F121AA6DF1E598F97FA2D4ED07D515EB904CBD/',
['Engineer'] = 'http://cloud-3.steamusercontent.com/ugc/1862797216018016723/87E50800DD5783A2FFBEC3FBF9D332977274DC79/',
['Evil Twin'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674465327/EFF95ECB957B4213A4FBF4F49F2881023524D4BC/',
['Exorcist'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896018860/69C2200D9845E430C39F4593595A272C7F39951C/',
['Fang Gu'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896855359/F7943B8282414D071D0DCBECE351AD3CC7B40504/',
['Farmer'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285982282161/2045CF60AEBE3E02FBCAE94F8F672E70C6E66429/',
['Fearmonger'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981848286/D6B9C6B6B918C6173076CC6248966A5B47F6EA5C/',
['Fisherman'] = 'http://cloud-3.steamusercontent.com/ugc/1025073792546111839/4E74D2A10F2B35E841B368B3359FFB4C9E4FFEF0/',
['Flowergirl'] = 'http://cloud-3.steamusercontent.com/ugc/793119007245979869/1C8FA64E79DE139A823D0CF6B901A1767EBE81CE/',
['Fool'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131093870/B15FB2E84F497A9DD6E02652E90EF26755B13F56/',
['Fortune Teller'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397895999037/8B3D0DED0B0DA0C44132E37E4D44F1A1EFB15D69/',
['Gambler'] = 'http://cloud-3.steamusercontent.com/ugc/793119489772261054/5F1F931D8949CA2325DDD64E179DF10A6DA6203A/',
['Gangster'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981848381/9C5B389474B73F96122258E316022F21C2039CBC/',
['General'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283068/30B648BF6B1306E43A2752186CDDF98DA1870D29/',
['Godfather'] = 'http://cloud-3.steamusercontent.com/ugc/787490775085629334/AC6E847B255E2DBCD0F76F802DB89BC25811B7D7/',
['Goblin'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339643/25DB33AB2567EADF52ACA377C4A350D2AEBE6E8B/',
['Golem'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981848467/60CF639B2D3387D64F4930F4D5166E2A4E621B3C/',
['Goon'] = 'http://cloud-3.steamusercontent.com/ugc/779613284202424081/E6217446A4C242CC2DA189C587E3E6F653CED262/',
['Gossip'] = 'http://cloud-3.steamusercontent.com/ugc/793119007239047533/DBEBFF784A21947DEFE63E94BE0BE77654E55173/',
['Grandmother'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674424927/BDE65C6642C2295D4181698765892071FDFE16D9/',
['Gunslinger'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674409943/52CCFBF3B5EA1BAECA0F19E5481FF3BFFA3DD7DB/',
['Harlot'] = 'http://cloud-3.steamusercontent.com/ugc/806638380340928207/F12BEE2243EFAF5005729807B42AEBE66B935D7E/',
['Harpy'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839269171/97DE3CCB61F09C9BEF18DD6C1938F3366D104026/',
['Heretic'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339717/59DAAEF34E8C07E9F6D413752334A2F05002352C/',
['High Priestess'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839270278/3650E33007F48296C532B939F6C6437C7BC20CA0/',
['Huntsman'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283126/8C5ED37BBE9EEF6FAACD7D1982E5AB0508EB2EA3/',
['Imp'] = 'http://cloud-3.steamusercontent.com/ugc/787490852822070391/0F44A2E3806AC2433FE51C96CF2072CF01E8F3CB/',
['Innkeeper'] = 'http://cloud-3.steamusercontent.com/ugc/793119489772260379/C0EF4FD1EB35CB1C1D017049F51ECCF2CB4F38A8/',
['Investigator'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674400749/6219ED7346566F5575B7F3FBA0BBB22B47AE91AF/',
['Judge'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674450967/1D2E5B17C92B89FC3F1D1FBFA45262527EDEB665/',
['Juggler'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674456602/11DA03A165BC1B383D715D6D350AA79193629B89/',
['King'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981848602/D23EC52E4C9E20FA8CC20078B1E2D51E8C00D61B/',
['Klutz'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131094101/4A1ACA37DB8E8DD0B1D79E6DCC447080949BF426/',
['Knight'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839270689/412034CFA8688CD49CF68ABD11CE683995570860/',
['Legion'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339780/C5CC78D319630D913C28921584C501156635DF81/',
['Leviathan'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339853/340F4483C3EF6C100DE23A036110974039689A26/',
['Librarian'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674401029/3648688745F5851BF85896C1D1CA7ACBBD76D6FA/',
['Lil Monsta'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339915/79FFED2D77DF4935632E7CEB5B32723EE84E0CDC/',
['Lleech'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981848766/05801DAF374181B37116266BC8FBEA6479563604/',
['Lunatic'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896851445/9AA6177FC76F6C8E038DED25A692E41D4E3296FB/',
['Lycanthrope'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981848831/52DBA1EAAF27770115577A0A370C31D1B342500A/',
['Magician'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283234/BA18B4C7D02C4B5D24604D57C3EA62B37B687B25/',
['Marionette'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872339985/F2E9C246D160224773D0FC79A270D48726956A2B/',
['Mastermind'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896853109/3A4E740C238D41281BE6431EB2EF849F3F961850/',
['Mathematician'] = 'http://cloud-3.steamusercontent.com/ugc/776234316549503644/93F8A4E74DD96989856C01F8CE29DE66BAB99497/',
['Matron'] = 'http://cloud-3.steamusercontent.com/ugc/789742127007897394/B7F9B7F61703BF5FB3E5938EAD00F9DA00D954AB/',
['Mayor'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131094825/A727E011EF4C2566355B7E563DAFBCBB7299C7D1/',
['Mezepheles'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872340028/C7C1BCA117DD65BB5EE1166877CD29D770791069/',
['Minstrel'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896025403/302FC827136927D31A6622334648EC8C3C3B15D6/',
['Monk'] = 'http://cloud-3.steamusercontent.com/ugc/793119007245734711/F1B0854704E52B47A9C52FB13CE980A71034D3E2/',
['Moonchild'] = 'http://cloud-3.steamusercontent.com/ugc/797621337737710322/3566F04C4BE13021DA555158C50B3A50A53AB7CF/',
['Mutant'] = 'http://cloud-3.steamusercontent.com/ugc/788618505779204765/1D4335A891FA9B608D1C7DC063995EFF8215BBC2/',
['Nightwatchman'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876838903792/AC87169B9944926F50C9BC34042E4594BFD03B39/',
['Noble'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283284/5B4077D03CDA98F70098A750C4C35B29F166DBE8/',
['No Dashii'] = 'http://cloud-3.steamusercontent.com/ugc/793119007246023822/65D6998B625FAE58B3FD702B0AFDB715760E9003/',
['Ojo'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839272009/21FBC48342BD296E67503D852ED552BA49F26095/',
['Oracle'] = 'http://cloud-3.steamusercontent.com/ugc/793119007245988609/5B7220D9C7F4035ED72E75C2C012C2C52A81B855/',
['Organ Grinder'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839099766/A5223D4E977B4667F2D0A4C5B8DC35E6E9AB7908/',
['Pacifist'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674427088/4E771C0919CFAA3FD2DE27E47D14A0D4D0F56795/',
['Philosopher'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896856334/A2C1CF84BD538F463BE9CABC59CC2F92883ACC96/',
['Pit-Hag'] = 'http://cloud-3.steamusercontent.com/ugc/793119007246012249/0432246BAB287AB7084058471FAAFD334820C1FF/',
['Pixie'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283334/789D6F87AA8098B741CA9B44011A55AB58B0E0E6/',
['Plague Doctor'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839273143/27207FC8B34871063381DA9F1C3E8E9DA475484D/',
['Po'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896854263/31FF069EBB7DCD92A27FDB363D35DAB92A112A00/',
['Poisoner'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896857497/B8B99724D4299C059C18989BFB2A154D1A920663/',
['Politician'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872340090/AAC1E3BB2F61C0AE08126062AEDA98CDA3ECC52D/',
['Poppy Grower'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312871283397/16183C13E2D35C65CF1C971F2B397C3706E93636/',
['Preacher'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981849117/B64A1AADFA3ABB0D1BEDBC54F4539491E9168E4E/',
['Professor'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674427650/5C4955938EC7B2983018440B22CB5922AE20BFA8/',
['Psychopath'] = 'http://cloud-3.steamusercontent.com/ugc/1862797216018050844/FA7D3F60C99EFFA1695A260FBDD0464D1BA560D3/',
['Pukka'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896853652/D7559E05C875899874D6EE254FC4A2E54C1240BF/',
['Puzzlemaster'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981849205/BECE2FE36DEC0E661DEABFF931971784BD1ECF39/',
['Ravenkeeper'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674403112/FF79863F4ED6739211ACC0A966A0FAFF9B91A301/',
['Recluse'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674406149/51CE900811533A81FA59E3C98C962025C7C6AAF2/',
['Riot'] = 'http://cloud-3.steamusercontent.com/ugc/1862797216018042802/6D1AC72DCDC2F127E42C276A8059176FD2D33151/',
['Sage'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674459251/AB384D62C1D500A42162961AE5046E3075E59FC0/',
['Sailor'] = 'http://cloud-3.steamusercontent.com/ugc/793119007239047156/8974FD8DA08BFA91ED6D83B3AE83EEE4A4A59AD0/',
['Saint'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131095084/DF17E2480AB504E2487A810A54F4CA4273AD86E0/',
['Savant'] = 'http://cloud-3.steamusercontent.com/ugc/793119007239047829/B0FE6CC563EE2527FEC2F30B9BBC9427437C7335/',
['Scapegoat'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674410156/E695610D7B4852D6ACD87EAC6B744C37CB040982/',
['Scarlet Woman'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131094439/0ACA783BD57EBBAC0823B18A2D87245144737251/',
['Seamstress'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674460275/E3F36E693832A68AACCD2D9FE9B8FC9CF1BADA1A/',
['Shabaloth'] = 'http://cloud-3.steamusercontent.com/ugc/792004915767376274/71CF8E17CD6EF42AA9D3533DD10251CBD69EFDF5/',
['Shugenja'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839275228/419D918A3F7A74BBEE516E7B7DB380C7B0009E0E/',
['Slayer'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674403454/9629D408B35D00409CFDEF237B700F74233CE692/',
['Snake Charmer'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674460653/157009843D46F6E841228A7466239D3BC1245752/',
['Snitch'] = 'http://cloud-3.steamusercontent.com/ugc/1707413312872340152/48354BAAF9CF534EB608D64907428ED9607034CE/',
['Soldier'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674403702/A7043BE4AF599413BBBBE767E7FFA4511955A46A/',
['Spy'] = 'http://cloud-3.steamusercontent.com/ugc/793119007245747340/BDD4C380B278C6FD2979BAFB14976C9735CE08B5/',
['Steward'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839275641/E4038959C9CC4246A0350CD277368F25239EA21F/',
['Storm Catcher'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981849342/C0776DD8AC94370CB180FC6DD5F4E86F4984E1D8/',
['Sweetheart'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674462755/A58D6872882952F5BCAEC149787DA7A0599DDC80/',
['Tea Lady'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896840110/9C1A18AD4806B7EB4B1CC493259B62E9B172A913/',
['Thief'] = 'http://cloud-3.steamusercontent.com/ugc/778486750219628281/2BC68FDD3D0A086F3057B4820B40BEA2CAF048BF/',
['Tinker'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674442706/0466FCF9E63E39C94942D24CDADA5B77D14ED394/',
['Town Crier'] = 'http://cloud-3.steamusercontent.com/ugc/793119007245985035/B362E29E0573A17B94EA56B18EC4944645BF65AE/',
['Undertaker'] = 'http://cloud-3.steamusercontent.com/ugc/787490852822017612/C5EB74B044F2E30D1150D1AA9A9A5F2DC0DDC44F/',
['Vigormortis'] = 'http://cloud-3.steamusercontent.com/ugc/797620875173664151/0D6819F3CF3A1D3351ED4DBD822B5CAA51B6180D/',
['Virgin'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674404379/9782A2B36A40040DC9F1938336135A4E70F83959/',
['Vizier'] = 'http://cloud-3.steamusercontent.com/ugc/2144335876839276566/DCAC2FEFDB77C60D5712B26CA0258D02BFB64A38/',
['Vortox'] = 'http://cloud-3.steamusercontent.com/ugc/1770450397896857096/C3DF48A30F564450CB1835C1ADBB872F68DA5127/',
['Voudon'] = 'http://cloud-3.steamusercontent.com/ugc/789742488131073610/B0B5FD0000129CE5969758E7CBEBAEE67A7AC41D/',
['Washerwoman'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674404792/DEF5D93C459B31141B7B4829883C31EAC4F8DCE0/',
['Witch'] = 'http://cloud-3.steamusercontent.com/ugc/913575713674465868/4A6606F8AEDD7E05CEC709093957847690DCBB8C/',
['Widow'] = 'http://cloud-3.steamusercontent.com/ugc/1638738285981849415/12D94E3C0BEAF8F38FAA40BC556E7CA5CCE5E154/',
['Zombuul'] = 'http://cloud-3.steamusercontent.com/ugc/787490852822051870/6F8EFE39C8D4A89AFFB2DAEC98C06F9B08A67424/',
['Majesty'] = 'http://cloud-3.steamusercontent.com/ugc/776234316543883459/6FA1BB630F83DBFB3795CFF96DF300D8FA62ECE1/',
['Prince'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541018863/B17CAE3157FD445CE6C40CBEB3959947B27F488B/',
['Princess'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541019072/88A856E16CE05D2F912B66727C743EF525958B92/',
['Queen'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541019266/62944A87AAFB5274F755CC076B35A27A1EB39BF2/',
['Lord'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541017645/0A3FCDB562F50F2A17A6634430C13C11646A02ED/',
['Cardinal'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541014652/74C7B7D3493B09E64754EC5DD86D31E2C4128048/',
['Rook'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541019472/A1D3669BCD6E028675574BFD94028629EB3DBB77/',
['Scribe'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541019999/EA6F452D50DD906D9B674DA1054E0BE035727B15/',
['Herald'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541016761/2C41F575A9B2ECB7053269B9948E084E94DD4ABE/',
['Chamberlain'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541098437/A6E3C3B14B2F5030A9D24FC6CD04C959B45E0A71/',
['Cup-Bearer'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541015626/935989D271D3FBFCB20A7C4FD1F15A10FF8C5FC6/',
['Friar'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541016493/5D3629281A6A86CD3C5689EA429FA8A49C7DDC79/',
['Food Taster'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541016243/F63B4C19D08DCBD71513675BAA26881E8D625687/',
['Pretender'] = 'http://cloud-3.steamusercontent.com/ugc/778486750213010819/FF94399B33BA24F35F4E86AE8A0ED06323AF5EE6/',
['Pawn'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541018385/41E03E1657C014E55E5BD73B3774F43278E3C150/',
['Emissary'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541016055/C33415C3342D8E5DDB377640603F17A4593909EA/',
['Concubine'] = 'http://cloud-3.steamusercontent.com/ugc/776234316543884145/5DDFD6FF330F7C9D54429B10F0A2C6A75A9428F6/',
['Charlatan'] = 'http://cloud-3.steamusercontent.com/ugc/778486750212989138/5F9B007A3E8D0353BEA86F714D6A450BBA222753/',
['Conspirator'] = 'http://cloud-3.steamusercontent.com/ugc/778486750212983897/638320DDCAC02F27A77F88F8F1A419AD152BC5A0/',
['Scoundrel'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541019698/85E5C1FDF366A7B83F1D934B317635045FF9041C/',
['Usurper'] = 'http://cloud-3.steamusercontent.com/ugc/776234316542323758/9C6B7BFCF91A0D9B09EA9E89D6A6211DB851CFB3/',
['Ysbaddaden'] = 'http://cloud-3.steamusercontent.com/ugc/778486750213039636/10FB87455B8338D29017A9C1C8682404240AD8EE/',
['Draco'] = 'http://cloud-3.steamusercontent.com/ugc/778486750229892638/AD1D47C2BCC3EE3710564223FE33A4825E6C1BBB/',
['Jabberwocky'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541109161/2B084624840234C0CA975489367F5517676514C5/',
['Morgana'] = 'http://cloud-3.steamusercontent.com/ugc/776234316541018156/7E75136274D5DD4742B45A3095B34F66B4B76F93/',
['Chieftain'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013159677/9B711EBEAC653E2AADA91293385F9E77B5409B0C/',
['Blasphemer'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013159155/A8E7E487632B68724EA7EFAB2E5C0010B5F10E99/',
['Diviner'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013159854/A36B244A6C18D4658A238D1FAD5FCD2948B7FA1B/',
['Trapper'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013165777/5B571D769604835FECDF09BE920C39A5D9E16B2D/',
['Shaman'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013163973/C2163115F0061A719FFC2BF9F17A209C749CBEB0/',
['Stargazer'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013165400/0808C661F5ED3F74E8E9AAF36917E10E95C2D072/',
['Soothsayer'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013164353/49D03639F0874255B2B6940F7F7998F076693050/',
['Bloodletter'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013159320/69B4EC438054EE474E76A077D38F78BF8C367A76/',
['Stalker'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013164672/29935034EDA931B972E807915B088B79C4726034/',
['Ambusher'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013157724/9F331DCF2537A1D17E29DA5CAE83A127FC9CBE63/',
['Warrior'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013166820/968224AD854ED5CF89362F4C46CFFE740DCDCE35/',
['Medicine Man'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013160390/9D2DE3ACFB21BC23C39CFC03C974BAB56B1027A4/',
['Reveler'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013160744/23FC78B443E729E5AD5329A7E2C33B6436EEF108/',
['Wicked'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013167440/F785FB966A2718E3B406FB8B24A223D180F7784B/',
['Urchin'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013166146/803625CD83B2EE94FA97D041AC496F7CFC9E1515/',
['Right Hand Man'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013160938/0D0F44849AEE1E436DFC1BAC01B986AC6874F151/',
['Apiarist'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013158906/5575C51C9EB819AF73DB5DC563A58823D6C35E48/',
['Eclipse'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013160038/667EA78BAA34B01CA2AC3B6EDBA9E98D67DCF33B/',
['Viceroy'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013166508/E22A75024C6E62975465DF283902EB477469402D/',
['Effigy'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013160204/14F3031B7D6D86386E4E919D89D1E6F69AE2CDDD/',
['Secondhand'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013161597/39AEB624D95BB39F4E77B92007D765881B3B1150/',
['Retrogradus'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013160562/E48FCD9DFC64076137F6CE873B342DDDAA3AAA85/',
['Bogman'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013159505/7A226CDD210E48B40E1DDF052811BA8326D1AAD5/',
['Sasquatch'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013161149/A6058E07A5E0D8F1BCE2497BF4AFA2E64B6FC1F6/',
['Wendigo'] = 'http://cloud-3.steamusercontent.com/ugc/1057730731013167134/23C4948075D3F8194C3CC8A03BDB47B1BE13EC16/',
['Astrologist'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207333531/E967F5BFBDECD6C2805671BDA766A9AA0281339B/',
['Censor'] = 'http://cloud-3.steamusercontent.com/ugc/794251883242934826/45DD56C78548B79D379081BBE38224DC66058BB3/',
['Child'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207333769/A2CA8132B564B2B6E9A502EAA8FFBC4041320B0F/',
['Mother'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207334946/FFFCF8A91F22E4B30094B08948484D09F621F776/',
['Recordkeeper'] = 'http://cloud-3.steamusercontent.com/ugc/788618668507706942/46329006EF9B5C7F8A294EF18EA995D8EAD04465/',
['Cartographer'] = 'http://cloud-3.steamusercontent.com/ugc/788618668512729358/EC5890791D6B51C88331AC6C8EC569558C0157FF/',
['Schizophrenic'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207336592/BF3E74D5003C3FE6EAA6C2962D8C59133A926F39/',
['Counterfeiter'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207333922/9B77793D6EEAC17005CA210265A01C9748020A7D/',
['Cultist'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207334079/A6C4878C2A03EFEB2A847263A3A475577985A496/',
['Cursebearer'] = 'http://cloud-3.steamusercontent.com/ugc/778486750208417418/9E5903EAECF0B71F0D3CB39F9C150C28B2F1B1ED/',
['Fanatic'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207334343/2BFC0B26EA3D94EE1E8575083DE6A7719F37EE15/',
['Pomme de Terror'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207336118/D4802104AA68582BB3836BFA1ACE5F546083EDC0/',
['Lobotomizer'] = 'http://cloud-3.steamusercontent.com/ugc/788618668507705131/EADCAA37B327A2F2E83DCE8A8AD6D83E60DA7644/',
['Hastur'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207334515/138330517D197603ED1A516EB0CFECD32765280C/',
['Rakshasa'] = 'http://cloud-3.steamusercontent.com/ugc/788618668516830699/EE2C216511A43CBE63DD688D0365EA2FDEA8FB98/',
['Xolotl'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207336897/668FC86E04C1B147D36752F7F60E3D66F6B3A27A/',
['Turncoat'] = 'http://cloud-3.steamusercontent.com/ugc/778486750207336737/FAAD1F1B20A793A9CE529C5F3DFA788B49669C85/',
}
REMINDER_TOKENS = {
['Washerwoman'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193554457/73DDE7CEA5A10137C428FF57E4A9482FC8DF5316/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193554726/333D4AE1304006C7F2651DF3890FF5D6FF2DCF9B/'},
},
['Librarian'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193551015/FEE6B6C0AE608DDE8B75F952FC709BB0AD6CFC0E/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193552243/05C070300E8C409FAA4875F873F1FA80C0B198BA/'},
},
['Investigator'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193550527/DF533903B0DE39C13F0946BD6992E4CEDB19B05D/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193550741/D59FCED76ACF3C2A3DD0788E283CFB73483A7527/'},
},
['Fortune Teller'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193549967/6254EC099608E728F3A6A45A0CFE2BA151C863E5/'},
},
['Undertaker'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284195770682/136EF0D298266FB1403A6F4B1687AD4D37EAD658/'},
},
['Monk'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193552627/18B776038E405C67695208B8138912CA0A1311B2/'},
},
['Slayer'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284203434717/71657101F8327A802E575707A6D63334224936AC/'},
},
['Virgin'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193564198/0FB5324B79D008FEF5BE82BFACC49A80C343AFBB/'},
},
['Butler'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193548986/BB736DC8537673AF3F837F8FD67E20C633E1B20D/'},
},
['Drunk'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284195777368/29413530FF5370CE0271189D5AD46996FB58753C/'},
},
['Poisoner'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193552870/F9D99BEA975E112BD4D7CE3166AEB3A7F02683DB/'},
},
['Scarlet Woman'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193553415/C4EE0A5D1486812F317E3A50BD3ADE90FE149DB4/'},
},
['Imp'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193550261/932B05A9D8ACA93195EF6411F608B4862A40DBA8/'},
},
['Thief'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193554059/325F32E64899338334D959537F380653C917FD52/'},
},
['Bureaucrat'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193549581/D60A2A56435B89320B31D91402DFF60F29E6FA6C/'},
},
['Grandmother'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193670780/23BA8D9BB36E8658D676AE7AC53D1B68C255372E/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193671044/0BD081B558D0155F221A2DCAECF5216C3FC71C0C/'},
},
['Sailor'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284195787247/2E0927387F10FEB6A1A51988352EADA80CDD378F/'},
},
['Exorcist'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193675221/24B5DF740D4E4CF93DE9C3E559A166475ADAD147/'},
},
['Innkeeper'] = {
{num = 2, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193671416/1E764397FEEDECD9652584297E8C2768203680D3/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193671777/0E75989A4A608AA47E6D1282CB95AC5515033C5C/'},
},
['Gambler'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193672039/A9A368E42001E5F412F06E84408DD38B379CB009/'},
},
['Gossip'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193672432/E62A9BC1E55C7D3556D1C3C7D27286A1F1C5BA6B/'},
},
['Courtier'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193672726/19AEB155C64EE220BCE1F646B3CB50468C5AADDD/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193672991/526EC0502D50730E3F3DF4262BC5C96994FAD389/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193673209/BDBA806DB8397911106FA62333361A54159BF61D/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193673446/07DBE9FD41CF8A72C02008509DB5AD391650BA24/'},
},
['Professor'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193678787/5D24FD6A46047FD9E28EC626B3492705B6ED9B2B/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193679076/C2E816B7D9380E29EF3FAB7D325714E0C02FB570/'},
},
['Minstrel'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193679322/28ACBE494340755511ADAB2A4277D741AADCAFB5/'},
},
['Tea Lady'] = {
{num = 2, url = 'http://cloud-3.steamusercontent.com/ugc/779613284195797430/246396C77AC3A592A1F348AB8C81DBEE1C9518BD/'},
},
['Fool'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193679899/339C444EEE62A33C178EC7DBCA571C808570BCC2/'},
},
['Tinker'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193681724/633DD98E1A16478B8F2C87465AE928A30B0AD12D/'},
},
['Moonchild'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193682172/FC910049C909762BD03BE7C053722425809C2E19/'},
},
['Goon'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284202438749/0BDF10E690F15C1BADA79D46D632DF487411137B/'},
},
['Lunatic'] = {
{num = 3, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193683012/ADFE3204697BBA1695CE843258654D0333842393/'},
},
['Godfather'] = {
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193685096/A882FF121F86D8B4FE3EE9157C889F127A575458/'},
{num = 1, url = 'http://cloud-3.steamusercontent.com/ugc/779613284193685415/6FBFCC0F28373EF14D8A7FDDDA5E746A858E2573/'},