-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
roles.json
1743 lines (1742 loc) · 63.9 KB
/
roles.json
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
[
{
"id": "washerwoman",
"name": "Washerwoman",
"edition": "tb",
"team": "townsfolk",
"firstNight": 33,
"firstNightReminder": "Show the character token of a Townsfolk in play. Point to two players, one of which is that character.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Townsfolk",
"Wrong"],
"setup": false,
"ability": "You start knowing that 1 of 2 players is a particular Townsfolk."
},
{
"id": "librarian",
"name": "Librarian",
"edition": "tb",
"team": "townsfolk",
"firstNight": 34,
"firstNightReminder": "Show the character token of an Outsider in play. Point to two players, one of which is that character.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Outsider",
"Wrong"],
"setup": false,
"ability": "You start knowing that 1 of 2 players is a particular Outsider. (Or that zero are in play.)"
},
{
"id": "investigator",
"name": "Investigator",
"edition": "tb",
"team": "townsfolk",
"firstNight": 35,
"firstNightReminder": "Show the character token of a Minion in play. Point to two players, one of which is that character.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Minion",
"Wrong"],
"setup": false,
"ability": "You start knowing that 1 of 2 players is a particular Minion."
},
{
"id": "chef",
"name": "Chef",
"edition": "tb",
"team": "townsfolk",
"firstNight": 36,
"firstNightReminder": "Show the finger signal (0, 1, 2, \u2026) for the number of pairs of neighbouring evil players.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "You start knowing how many pairs of evil players there are."
},
{
"id": "empath",
"name": "Empath",
"edition": "tb",
"team": "townsfolk",
"firstNight": 37,
"firstNightReminder": "Show the finger signal (0, 1, 2) for the number of evil alive neighbours of the Empath.",
"otherNight": 53,
"otherNightReminder": "Show the finger signal (0, 1, 2) for the number of evil neighbours.",
"reminders": [],
"setup": false,
"ability": "Each night, you learn how many of your 2 alive neighbours are evil."
},
{
"id": "fortuneteller",
"name": "Fortune Teller",
"edition": "tb",
"team": "townsfolk",
"firstNight": 38,
"firstNightReminder": "The Fortune Teller points to two players. Give the head signal (nod yes, shake no) for whether one of those players is the Demon. ",
"otherNight": 54,
"otherNightReminder": "The Fortune Teller points to two players. Show the head signal (nod 'yes', shake 'no') for whether one of those players is the Demon.",
"reminders": ["Red herring"],
"setup": false,
"ability": "Each night, choose 2 players: you learn if either is a Demon. There is a good player that registers as a Demon to you."
},
{
"id": "undertaker",
"name": "Undertaker",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 55,
"otherNightReminder": "If a player was executed today: Show that player\u2019s character token.",
"reminders": ["Executed"],
"setup": false,
"ability": "Each night*, you learn which character died by execution today."
},
{
"id": "monk",
"name": "Monk",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 12,
"otherNightReminder": "The previously protected player is no longer protected. The Monk points to a player not themself. Mark that player 'Protected'.",
"reminders": ["Protected"],
"setup": false,
"ability": "Each night*, choose a player (not yourself): they are safe from the Demon tonight."
},
{
"id": "ravenkeeper",
"name": "Ravenkeeper",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 52,
"otherNightReminder": "If the Ravenkeeper died tonight: The Ravenkeeper points to a player. Show that player\u2019s character token.",
"reminders": [],
"setup": false,
"ability": "If you die at night, you are woken to choose a player: you learn their character."
},
{
"id": "virgin",
"name": "Virgin",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["No ability"],
"setup": false,
"ability": "The 1st time you are nominated, if the nominator is a Townsfolk, they are executed immediately."
},
{
"id": "slayer",
"name": "Slayer",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["No ability"],
"setup": false,
"ability": "Once per game, during the day, publicly choose a player: if they are the Demon, they die."
},
{
"id": "soldier",
"name": "Soldier",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "You are safe from the Demon."
},
{
"id": "mayor",
"name": "Mayor",
"edition": "tb",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "If only 3 players live & no execution occurs, your team wins. If you die at night, another player might die instead."
},
{
"id": "butler",
"name": "Butler",
"edition": "tb",
"team": "outsider",
"firstNight": 39,
"firstNightReminder": "The Butler points to a player. Mark that player as 'Master'.",
"otherNight": 67,
"otherNightReminder": "The Butler points to a player. Mark that player as 'Master'.",
"reminders": ["Master"],
"setup": false,
"ability": "Each night, choose a player (not yourself): tomorrow, you may only vote if they are voting too."
},
{
"id": "drunk",
"name": "Drunk",
"edition": "tb",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"remindersGlobal": ["Drunk"],
"setup": true,
"ability": "You do not know you are the Drunk. You think you are a Townsfolk character, but you are not."
},
{
"id": "recluse",
"name": "Recluse",
"edition": "tb",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "You might register as evil & as a Minion or Demon, even if dead."
},
{
"id": "saint",
"name": "Saint",
"edition": "tb",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "If you die by execution, your team loses."
},
{
"id": "poisoner",
"name": "Poisoner",
"edition": "tb",
"team": "minion",
"firstNight": 17,
"firstNightReminder": "The Poisoner points to a player. That player is poisoned.",
"otherNight": 7,
"otherNightReminder": "The previously poisoned player is no longer poisoned. The Poisoner points to a player. That player is poisoned.",
"reminders": ["Poisoned"],
"setup": false,
"ability": "Each night, choose a player: they are poisoned tonight and tomorrow day."
},
{
"id": "spy",
"name": "Spy",
"edition": "tb",
"team": "minion",
"firstNight": 49,
"firstNightReminder": "Show the Grimoire to the Spy for as long as they need.",
"otherNight": 68,
"otherNightReminder": "Show the Grimoire to the Spy for as long as they need.",
"reminders": [],
"setup": false,
"ability": "Each night, you see the Grimoire. You might register as good & as a Townsfolk or Outsider, even if dead."
},
{
"id": "scarletwoman",
"name": "Scarlet Woman",
"edition": "tb",
"team": "minion",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 19,
"otherNightReminder": "If the Scarlet Woman became the Demon today: Show the 'You are' card, then the demon token.",
"reminders": ["Demon"],
"setup": false,
"ability": "If there are 5 or more players alive & the Demon dies, you become the Demon. (Travellers don\u2019t count)"
},
{
"id": "baron",
"name": "Baron",
"edition": "tb",
"team": "minion",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": true,
"ability": "There are extra Outsiders in play. [+2 Outsiders]"
},
{
"id": "imp",
"name": "Imp",
"edition": "tb",
"team": "demon",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 24,
"otherNightReminder": "The Imp points to a player. That player dies. If the Imp chose themselves: Replace the character of 1 alive minion with a spare Imp token. Show the 'You are' card, then the Imp token.",
"reminders": ["Dead"],
"setup": false,
"ability": "Each night*, choose a player: they die. If you kill yourself this way, a Minion becomes the Imp."
},
{
"id": "bureaucrat",
"name": "Bureaucrat",
"edition": "tb",
"team": "traveler",
"firstNight": 1,
"firstNightReminder": "The Bureaucrat points to a player. Put the Bureaucrat's '3 votes' reminder by the chosen player's character token.",
"otherNight": 1,
"otherNightReminder": "The Bureaucrat points to a player. Put the Bureaucrat's '3 votes' reminder by the chosen player's character token.",
"reminders": ["3 votes"],
"setup": false,
"ability": "Each night, choose a player (not yourself): their vote counts as 3 votes tomorrow."
},
{
"id": "thief",
"name": "Thief",
"edition": "tb",
"team": "traveler",
"firstNight": 1,
"firstNightReminder": "The Thief points to a player. Put the Thief's 'Negative vote' reminder by the chosen player's character token.",
"otherNight": 1,
"otherNightReminder": "The Thief points to a player. Put the Thief's 'Negative vote' reminder by the chosen player's character token.",
"reminders": ["Negative vote"],
"setup": false,
"ability": "Each night, choose a player (not yourself): their vote counts negatively tomorrow."
},
{
"id": "gunslinger",
"name": "Gunslinger",
"edition": "tb",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "Each day, after the 1st vote has been tallied, you may choose a player that voted: they die."
},
{
"id": "scapegoat",
"name": "Scapegoat",
"edition": "tb",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "If a player of your alignment is executed, you might be executed instead."
},
{
"id": "beggar",
"name": "Beggar",
"edition": "tb",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "You must use a vote token to vote. Dead players may choose to give you theirs. If so, you learn their alignment. You are sober & healthy."
},
{
"id": "grandmother",
"name": "Grandmother",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 40,
"firstNightReminder": "Show the marked character token. Point to the marked player.",
"otherNight": 51,
"otherNightReminder": "If the Grandmother\u2019s grandchild was killed by the Demon tonight: The Grandmother dies.",
"reminders": ["Grandchild"],
"setup": false,
"ability": "You start knowing a good player & their character. If the Demon kills them, you die too."
},
{
"id": "sailor",
"name": "Sailor",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 11,
"firstNightReminder": "The Sailor points to a living player. Either the Sailor, or the chosen player, is drunk.",
"otherNight": 4,
"otherNightReminder": "The previously drunk player is no longer drunk. The Sailor points to a living player. Either the Sailor, or the chosen player, is drunk.",
"reminders": ["Drunk"],
"setup": false,
"ability": "Each night, choose an alive player: either you or they are drunk until dusk. You can't die."
},
{
"id": "chambermaid",
"name": "Chambermaid",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 51,
"firstNightReminder": "The Chambermaid points to two players. Show the number signal (0, 1, 2, \u2026) for how many of those players wake tonight for their ability.",
"otherNight": 70,
"otherNightReminder": "The Chambermaid points to two players. Show the number signal (0, 1, 2, \u2026) for how many of those players wake tonight for their ability.",
"reminders": [],
"setup": false,
"ability": "Each night, choose 2 alive players (not yourself): you learn how many woke tonight due to their ability."
},
{
"id": "exorcist",
"name": "Exorcist",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 21,
"otherNightReminder": "The Exorcist points to a player, different from the previous night. If that player is the Demon: Wake the Demon. Show the Exorcist token. Point to the Exorcist. The Demon does not act tonight.",
"reminders": ["Chosen"],
"setup": false,
"ability": "Each night*, choose a player (different to last night): the Demon, if chosen, learns who you are then doesn't wake tonight."
},
{
"id": "innkeeper",
"name": "Innkeeper",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 9,
"otherNightReminder": "The previously protected and drunk players lose those markers. The Innkeeper points to two players. Those players are protected. One is drunk.",
"reminders": ["Protected",
"Drunk"],
"setup": false,
"ability": "Each night*, choose 2 players: they can't die tonight, but 1 is drunk until dusk."
},
{
"id": "gambler",
"name": "Gambler",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 10,
"otherNightReminder": "The Gambler points to a player, and a character on their sheet. If incorrect, the Gambler dies.",
"reminders": ["Dead"],
"setup": false,
"ability": "Each night*, choose a player & guess their character: if you guess wrong, you die."
},
{
"id": "gossip",
"name": "Gossip",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 38,
"otherNightReminder": "If the Gossip\u2019s public statement was true: Choose a player not protected from dying tonight. That player dies.",
"reminders": ["Dead"],
"setup": false,
"ability": "Each day, you may make a public statement. Tonight, if it was true, a player dies."
},
{
"id": "courtier",
"name": "Courtier",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 19,
"firstNightReminder": "The Courtier either shows a 'no' head signal, or points to a character on the sheet. If the Courtier used their ability: If that character is in play, that player is drunk.",
"otherNight": 8,
"otherNightReminder": "Reduce the remaining number of days the marked player is poisoned. If the Courtier has not yet used their ability: The Courtier either shows a 'no' head signal, or points to a character on the sheet. If the Courtier used their ability: If that character is in play, that player is drunk.",
"reminders": ["Drunk 3",
"Drunk 2",
"Drunk 1",
"No ability"],
"setup": false,
"ability": "Once per game, at night, choose a character: they are drunk for 3 nights & 3 days."
},
{
"id": "professor",
"name": "Professor",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 43,
"otherNightReminder": "If the Professor has not used their ability: The Professor either shakes their head no, or points to a player. If that player is a Townsfolk, they are now alive.",
"reminders": ["Alive",
"No ability"],
"setup": false,
"ability": "Once per game, at night*, choose a dead player: if they are a Townsfolk, they are resurrected."
},
{
"id": "minstrel",
"name": "Minstrel",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Everyone drunk"],
"setup": false,
"ability": "When a Minion dies by execution, all other players (except Travellers) are drunk until dusk tomorrow."
},
{
"id": "tealady",
"name": "Tea Lady",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Can not die"],
"setup": false,
"ability": "If both your alive neighbours are good, they can't die."
},
{
"id": "pacifist",
"name": "Pacifist",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "Executed good players might not die."
},
{
"id": "fool",
"name": "Fool",
"edition": "bmr",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["No ability"],
"setup": false,
"ability": "The first time you die, you don't."
},
{
"id": "tinker",
"name": "Tinker",
"edition": "bmr",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 49,
"otherNightReminder": "The Tinker might die.",
"reminders": ["Dead"],
"setup": false,
"ability": "You might die at any time."
},
{
"id": "moonchild",
"name": "Moonchild",
"edition": "bmr",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 50,
"otherNightReminder": "If the Moonchild used their ability to target a player today: If that player is good, they die.",
"reminders": ["Dead"],
"setup": false,
"ability": "When you learn that you died, publicly choose 1 alive player. Tonight, if it was a good player, they die."
},
{
"id": "goon",
"name": "Goon",
"edition": "bmr",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Drunk"],
"setup": false,
"ability": "Each night, the 1st player to choose you with their ability is drunk until dusk. You become their alignment."
},
{
"id": "lunatic",
"name": "Lunatic",
"edition": "bmr",
"team": "outsider",
"firstNight": 8,
"firstNightReminder": "If 7 or more players: Show the Lunatic a number of arbitrary 'Minions', players equal to the number of Minions in play. Show 3 character tokens of arbitrary good characters. If the token received by the Lunatic is a Demon that would wake tonight: Allow the Lunatic to do the Demon actions. Place their 'attack' markers. Wake the Demon. Show the Demon\u2019s real character token. Show them the Lunatic player. If the Lunatic attacked players: Show the real demon each marked player. Remove any Lunatic 'attack' markers.",
"otherNight": 20,
"otherNightReminder": "Allow the Lunatic to do the actions of the Demon. Place their 'attack' markers. If the Lunatic selected players: Wake the Demon. Show the 'attack' marker, then point to each marked player. Remove any Lunatic 'attack' markers.",
"reminders": ["Attack 1",
"Attack 2",
"Attack 3"],
"setup": false,
"ability": "You think you are a Demon, but you are not. The Demon knows who you are & who you choose at night."
},
{
"id": "godfather",
"name": "Godfather",
"edition": "bmr",
"team": "minion",
"firstNight": 21,
"firstNightReminder": "Show each of the Outsider tokens in play.",
"otherNight": 37,
"otherNightReminder": "If an Outsider died today: The Godfather points to a player. That player dies.",
"reminders": ["Died today",
"Dead"],
"setup": true,
"ability": "You start knowing which Outsiders are in play. If 1 died today, choose a player tonight: they die. [\u22121 or +1 Outsider]"
},
{
"id": "devilsadvocate",
"name": "Devil's Advocate",
"edition": "bmr",
"team": "minion",
"firstNight": 22,
"firstNightReminder": "The Devil\u2019s Advocate points to a living player. That player survives execution tomorrow.",
"otherNight": 13,
"otherNightReminder": "The Devil\u2019s Advocate points to a living player, different from the previous night. That player survives execution tomorrow.",
"reminders": ["Survives execution"],
"setup": false,
"ability": "Each night, choose a living player (different to last night): if executed tomorrow, they don't die."
},
{
"id": "assassin",
"name": "Assassin",
"edition": "bmr",
"team": "minion",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 36,
"otherNightReminder": "If the Assassin has not yet used their ability: The Assassin either shows the 'no' head signal, or points to a player. That player dies.",
"reminders": ["Dead",
"No ability"],
"setup": false,
"ability": "Once per game, at night*, choose a player: they die, even if for some reason they could not."
},
{
"id": "mastermind",
"name": "Mastermind",
"edition": "bmr",
"team": "minion",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "If the Demon dies by execution (ending the game), play for 1 more day. If a player is then executed, their team loses."
},
{
"id": "zombuul",
"name": "Zombuul",
"edition": "bmr",
"team": "demon",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 25,
"otherNightReminder": "If no-one died during the day: The Zombuul points to a player. That player dies.",
"reminders": ["Died today",
"Dead"],
"setup": false,
"ability": "Each night*, if no-one died today, choose a player: they die. The 1st time you die, you live but register as dead."
},
{
"id": "pukka",
"name": "Pukka",
"edition": "bmr",
"team": "demon",
"firstNight": 28,
"firstNightReminder": "The Pukka points to a player. That player is poisoned.",
"otherNight": 26,
"otherNightReminder": "The Pukka points to a player. That player is poisoned. The previously poisoned player dies. ",
"reminders": ["Poisoned",
"Dead"],
"setup": false,
"ability": "Each night, choose a player: they are poisoned. The previously poisoned player dies then becomes healthy."
},
{
"id": "shabaloth",
"name": "Shabaloth",
"edition": "bmr",
"team": "demon",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 27,
"otherNightReminder": "One player that the Shabaloth chose the previous night might be resurrected. The Shabaloth points to two players. Those players die.",
"reminders": ["Dead",
"Alive"],
"setup": false,
"ability": "Each night*, choose 2 players: they die. A dead player you chose last night might be regurgitated."
},
{
"id": "po",
"name": "Po",
"edition": "bmr",
"team": "demon",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 28,
"otherNightReminder": "If the Po chose no-one the previous night: The Po points to three players. Otherwise: The Po either shows the 'no' head signal , or points to a player. Chosen players die",
"reminders": ["Dead",
"3 attacks"],
"setup": false,
"ability": "Each night*, you may choose a player: they die. If your last choice was no-one, choose 3 players tonight."
},
{
"id": "apprentice",
"name": "Apprentice",
"edition": "bmr",
"team": "traveler",
"firstNight": 1,
"firstNightReminder": "Show the Apprentice the 'You are' card, then a Townsfolk or Minion token. In the Grimoire, replace the Apprentice token with that character token, and put the Apprentice's 'Is the Apprentice' reminder by that character token.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Is the Apprentice"],
"setup": false,
"ability": "On your 1st night, you gain a Townsfolk ability (if good), or a Minion ability (if evil)."
},
{
"id": "matron",
"name": "Matron",
"edition": "bmr",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "Each day, you may choose up to 3 sets of 2 players to swap seats. Players may not leave their seats to talk in private."
},
{
"id": "judge",
"name": "Judge",
"edition": "bmr",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["No ability"],
"setup": false,
"ability": "Once per game, if another player nominated, you may choose to force the current execution to pass or fail."
},
{
"id": "bishop",
"name": "Bishop",
"edition": "bmr",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Nominate good",
"Nominate evil"],
"setup": false,
"ability": "Only the Storyteller can nominate. At least 1 opposite player must be nominated each day."
},
{
"id": "voudon",
"name": "Voudon",
"edition": "bmr",
"team": "traveler",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "Only you and the dead can vote. They don't need a vote token to do so. A 50% majority is not required."
},
{
"id": "clockmaker",
"name": "Clockmaker",
"edition": "snv",
"team": "townsfolk",
"firstNight": 41,
"firstNightReminder": "Show the hand signal for the number (1, 2, 3, etc.) of places from Demon to closest Minion.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "You start knowing how many steps from the Demon to its nearest Minion."
},
{
"id": "dreamer",
"name": "Dreamer",
"edition": "snv",
"team": "townsfolk",
"firstNight": 42,
"firstNightReminder": "The Dreamer points to a player. Show 1 good and 1 evil character token; one of these is correct.",
"otherNight": 56,
"otherNightReminder": "The Dreamer points to a player. Show 1 good and 1 evil character token; one of these is correct.",
"reminders": [],
"setup": false,
"ability": "Each night, choose a player (not yourself or Travellers): you learn 1 good and 1 evil character, 1 of which is correct."
},
{
"id": "snakecharmer",
"name": "Snake Charmer",
"edition": "snv",
"team": "townsfolk",
"firstNight": 20,
"firstNightReminder": "The Snake Charmer points to a player. If that player is the Demon: swap the Demon and Snake Charmer character and alignments. Wake each player to inform them of their new role and alignment. The new Snake Charmer is poisoned.",
"otherNight": 11,
"otherNightReminder": "The Snake Charmer points to a player. If that player is the Demon: swap the Demon and Snake Charmer character and alignments. Wake each player to inform them of their new role and alignment. The new Snake Charmer is poisoned.",
"reminders": ["Poisoned"],
"setup": false,
"ability": "Each night, choose an alive player: a chosen Demon swaps characters & alignments with you & is then poisoned."
},
{
"id": "mathematician",
"name": "Mathematician",
"edition": "snv",
"team": "townsfolk",
"firstNight": 52,
"firstNightReminder": "Show the hand signal for the number (0, 1, 2, etc.) of players whose ability malfunctioned due to other abilities.",
"otherNight": 71,
"otherNightReminder": "Show the hand signal for the number (0, 1, 2, etc.) of players whose ability malfunctioned due to other abilities.",
"reminders": ["Abnormal"],
"setup": false,
"ability": "Each night, you learn how many players\u2019 abilities worked abnormally (since dawn) due to another character's ability."
},
{
"id": "flowergirl",
"name": "Flowergirl",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 57,
"otherNightReminder": "Nod 'yes' or shake head 'no' for whether the Demon voted today. Place the 'Demon not voted' marker (remove 'Demon voted', if any).",
"reminders": ["Demon voted",
"Demon not voted"],
"setup": false,
"ability": "Each night*, you learn if a Demon voted today."
},
{
"id": "towncrier",
"name": "Town Crier",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 58,
"otherNightReminder": "Nod 'yes' or shake head 'no' for whether a Minion nominated today. Place the 'Minion not nominated' marker (remove 'Minion nominated', if any).",
"reminders": ["Minions not nominated",
"Minion nominated"],
"setup": false,
"ability": "Each night*, you learn if a Minion nominated today."
},
{
"id": "oracle",
"name": "Oracle",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 59,
"otherNightReminder": "Show the hand signal for the number (0, 1, 2, etc.) of dead evil players.",
"reminders": [],
"setup": false,
"ability": "Each night*, you learn how many dead players are evil."
},
{
"id": "savant",
"name": "Savant",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "Each day, you may visit the Storyteller to learn 2 things in private: 1 is true & 1 is false."
},
{
"id": "seamstress",
"name": "Seamstress",
"edition": "snv",
"team": "townsfolk",
"firstNight": 43,
"firstNightReminder": "The Seamstress either shows a 'no' head signal, or points to two other players. If the Seamstress chose players , nod 'yes' or shake 'no' for whether they are of same alignment.",
"otherNight": 60,
"otherNightReminder": "If the Seamstress has not yet used their ability: the Seamstress either shows a 'no' head signal, or points to two other players. If the Seamstress chose players , nod 'yes' or shake 'no' for whether they are of same alignment.",
"reminders": ["No ability"],
"setup": false,
"ability": "Once per game, at night, choose 2 players (not yourself): you learn if they are the same alignment."
},
{
"id": "philosopher",
"name": "Philosopher",
"edition": "snv",
"team": "townsfolk",
"firstNight": 2,
"firstNightReminder": "The Philosopher either shows a 'no' head signal, or points to a good character on their sheet. If they chose a character: Swap the out-of-play character token with the Philosopher token and add the 'Is the Philosopher' reminder. If the character is in play, place the drunk marker by that player.",
"otherNight": 2,
"otherNightReminder": "If the Philosopher has not used their ability: the Philosopher either shows a 'no' head signal, or points to a good character on their sheet. If they chose a character: Swap the out-of-play character token with the Philosopher token and add the 'Is the Philosopher' reminder. If the character is in play, place the drunk marker by that player.",
"reminders": ["Drunk",
"Is the Philosopher"],
"setup": false,
"ability": "Once per game, at night, choose a good character: gain that ability. If this character is in play, they are drunk."
},
{
"id": "artist",
"name": "Artist",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["No ability"],
"setup": false,
"ability": "Once per game, during the day, privately ask the Storyteller any yes/no question."
},
{
"id": "juggler",
"name": "Juggler",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 61,
"otherNightReminder": "If today was the Juggler\u2019s first day: Show the hand signal for the number (0, 1, 2, etc.) of 'Correct' markers. Remove markers.",
"reminders": ["Correct"],
"setup": false,
"ability": "On your 1st day, publicly guess up to 5 players' characters. That night, you learn how many you got correct."
},
{
"id": "sage",
"name": "Sage",
"edition": "snv",
"team": "townsfolk",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 42,
"otherNightReminder": "If the Sage was killed by a Demon: Point to two players, one of which is that Demon.",
"reminders": [],
"setup": false,
"ability": "If the Demon kills you, you learn that it is 1 of 2 players."
},
{
"id": "mutant",
"name": "Mutant",
"edition": "snv",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "If you are \u201Cmad\u201D about being an Outsider, you might be executed."
},
{
"id": "sweetheart",
"name": "Sweetheart",
"edition": "snv",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 41,
"otherNightReminder": "Choose a player that is drunk.",
"reminders": ["Drunk"],
"setup": false,
"ability": "When you die, 1 player is drunk from now on."
},
{
"id": "barber",
"name": "Barber",
"edition": "snv",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 40,
"otherNightReminder": "If the Barber died today: Wake the Demon. Show the 'This character selected you' card, then Barber token. The Demon either shows a 'no' head signal, or points to 2 players. If they chose players: Swap the character tokens. Wake each player. Show 'You are', then their new character token.",
"reminders": ["Haircuts tonight"],
"setup": false,
"ability": "If you died today or tonight, the Demon may choose 2 players (not another Demon) to swap characters."
},
{
"id": "klutz",
"name": "Klutz",
"edition": "snv",
"team": "outsider",
"firstNight": 0,
"firstNightReminder": "",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"setup": false,
"ability": "When you learn that you died, publicly choose 1 alive player: if they are evil, your team loses."
},
{
"id": "eviltwin",
"name": "Evil Twin",
"edition": "snv",
"team": "minion",
"firstNight": 23,
"firstNightReminder": "Wake the Evil Twin and their twin. Confirm that they have acknowledged each other. Point to the Evil Twin. Show their Evil Twin token to the twin player. Point to the twin. Show their character token to the Evil Twin player.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Twin"],
"setup": false,
"ability": "You & an opposing player know each other. If the good player is executed, evil wins. Good can't win if you both live."
},
{
"id": "witch",
"name": "Witch",