mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
Merge branch 'develop' into updated-jinxes
This commit is contained in:
commit
b1a3755137
13 changed files with 433 additions and 307 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
## Upcomming Version
|
||||
- Adding a missing jinx
|
||||
- Updating night order (and its print)
|
||||
- Correcting automatic adding/deletion of Fabled
|
||||
|
||||
### Version 3.17.0
|
||||
|
||||
|
|
BIN
src/assets/icons/dawn.png
Normal file
BIN
src/assets/icons/dawn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 85 KiB |
BIN
src/assets/icons/dusk.png
Normal file
BIN
src/assets/icons/dusk.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 79 KiB |
|
@ -36,6 +36,18 @@
|
|||
}}</small
|
||||
>
|
||||
</span>
|
||||
<span
|
||||
class="player"
|
||||
v-if="
|
||||
(role.id == 'dawn' || role.team == 'fabled') &&
|
||||
!session.isSpectator &&
|
||||
players.length &&
|
||||
players[0].role.id
|
||||
"
|
||||
>
|
||||
<br />
|
||||
<small> </small>
|
||||
</span>
|
||||
</span>
|
||||
<span
|
||||
class="icon"
|
||||
|
@ -92,6 +104,20 @@
|
|||
}}</small
|
||||
>
|
||||
</span>
|
||||
<span
|
||||
class="player"
|
||||
v-if="
|
||||
(role.id == 'dawn' ||
|
||||
role.id == 'dusk' ||
|
||||
role.team == 'fabled') &&
|
||||
!session.isSpectator &&
|
||||
players.length &&
|
||||
players[0].role.id
|
||||
"
|
||||
>
|
||||
<br />
|
||||
<small> </small>
|
||||
</span>
|
||||
</span>
|
||||
<span class="reminder" v-if="role.otherNightReminder">
|
||||
{{ role.otherNightReminder }}
|
||||
|
@ -113,13 +139,54 @@ export default {
|
|||
computed: {
|
||||
rolesFirstNight: function () {
|
||||
const rolesFirstNight = [];
|
||||
// Ajouter le matin à l'ordre nocturne
|
||||
rolesFirstNight.push({
|
||||
id: "dawn",
|
||||
name: this.locale.modal.nightOrder.dawn,
|
||||
firstNight: Infinity,
|
||||
team: "default",
|
||||
players: [],
|
||||
firstNightReminder: this.locale.modal.nightOrder.dawnDescription1,
|
||||
});
|
||||
var toymaker = false;
|
||||
// Ajout des fabuleux
|
||||
this.fabled.forEach((fabled) => {
|
||||
if (fabled.firstNight) {
|
||||
rolesFirstNight.push(Object.assign({ players: [] }, fabled));
|
||||
} else if (fabled.id == "toymaker") {
|
||||
toymaker = true;
|
||||
}
|
||||
});
|
||||
this.roles.forEach((role) => {
|
||||
const players = this.players.filter((p) => p.role.id === role.id);
|
||||
if (role.firstNight && role.team !== "traveler") {
|
||||
rolesFirstNight.push(Object.assign({ players }, role));
|
||||
}
|
||||
});
|
||||
// Ajout des Voyageurs, en n'ajoutant qu'une fois ceux en double
|
||||
const seenTravelers = [];
|
||||
var nbTravelers = 0;
|
||||
this.players.forEach((player) => {
|
||||
if (player.role.team == "traveler") {
|
||||
nbTravelers++;
|
||||
if (!seenTravelers.includes(player.role.id)) {
|
||||
seenTravelers.push(player.role.id);
|
||||
if (player.role.firstNight) {
|
||||
const players = this.players.filter(
|
||||
(p) => p.role.id === player.role.id,
|
||||
);
|
||||
rolesFirstNight.push(Object.assign({ players }, player.role));
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
// Ajouter minion / demon infos à l'ordre nocturne
|
||||
if (this.players.length > 6) {
|
||||
if (this.players.length - nbTravelers > 6 || toymaker) {
|
||||
rolesFirstNight.push(
|
||||
{
|
||||
id: "evil",
|
||||
id: "minion",
|
||||
name: this.locale.modal.nightOrder.minionInfo,
|
||||
firstNight: 5,
|
||||
firstNight: 7,
|
||||
team: "minion",
|
||||
players: this.players.filter((p) => p.role.team === "minion"),
|
||||
firstNightReminder:
|
||||
|
@ -128,7 +195,7 @@ export default {
|
|||
{
|
||||
id: "evil",
|
||||
name: this.locale.modal.nightOrder.demonInfo,
|
||||
firstNight: 8,
|
||||
firstNight: 10,
|
||||
team: "demon",
|
||||
players: this.players.filter((p) => p.role.team === "demon"),
|
||||
firstNightReminder:
|
||||
|
@ -136,37 +203,66 @@ export default {
|
|||
},
|
||||
);
|
||||
}
|
||||
this.roles.forEach((role) => {
|
||||
const players = this.players.filter((p) => p.role.id === role.id);
|
||||
if (role.firstNight && (role.team !== "traveler" || players.length)) {
|
||||
rolesFirstNight.push(Object.assign({ players }, role));
|
||||
}
|
||||
});
|
||||
this.fabled
|
||||
.filter(({ firstNight }) => firstNight)
|
||||
.forEach((fabled) => {
|
||||
rolesFirstNight.push(Object.assign({ players: [] }, fabled));
|
||||
});
|
||||
rolesFirstNight.sort((a, b) => a.firstNight - b.firstNight);
|
||||
return rolesFirstNight;
|
||||
},
|
||||
rolesOtherNight: function () {
|
||||
const rolesOtherNight = [];
|
||||
this.roles.forEach((role) => {
|
||||
const players = this.players.filter((p) => p.role.id === role.id);
|
||||
if (role.otherNight && (role.team !== "traveler" || players.length)) {
|
||||
rolesOtherNight.push(Object.assign({ players }, role));
|
||||
}
|
||||
});
|
||||
rolesOtherNight.push(
|
||||
{
|
||||
id: "dusk",
|
||||
name: this.locale.modal.nightOrder.dusk,
|
||||
team: "default",
|
||||
otherNight: 1,
|
||||
players: [],
|
||||
otherNightReminder: this.locale.modal.nightOrder.duskDescription,
|
||||
},
|
||||
{
|
||||
id: "dawn",
|
||||
name: this.locale.modal.nightOrder.dawn,
|
||||
team: "default",
|
||||
otherNight: Infinity,
|
||||
players: [],
|
||||
otherNightReminder: this.locale.modal.nightOrder.dawnDescription2,
|
||||
},
|
||||
);
|
||||
this.fabled
|
||||
.filter(({ otherNight }) => otherNight)
|
||||
.forEach((fabled) => {
|
||||
rolesOtherNight.push(Object.assign({ players: [] }, fabled));
|
||||
});
|
||||
this.roles.forEach((role) => {
|
||||
const players = this.players.filter((p) => p.role.id === role.id);
|
||||
if (role.otherNight && role.team !== "traveler") {
|
||||
rolesOtherNight.push(Object.assign({ players }, role));
|
||||
}
|
||||
});
|
||||
// Ajout des Voyageurs, en n'ajoutant qu'une fois ceux en double
|
||||
const seenTravelers = [];
|
||||
this.players.forEach((player) => {
|
||||
if (
|
||||
player.role.otherNight &&
|
||||
player.role.team == "traveler" &&
|
||||
!seenTravelers.includes(player.role.id)
|
||||
) {
|
||||
const players = this.players.filter(
|
||||
(p) => p.role.id === player.role.id,
|
||||
);
|
||||
seenTravelers.push(player.role.id);
|
||||
rolesOtherNight.push(Object.assign({ players }, player.role));
|
||||
}
|
||||
});
|
||||
rolesOtherNight.sort((a, b) => a.otherNight - b.otherNight);
|
||||
return rolesOtherNight;
|
||||
},
|
||||
...mapState(["roles", "modals", "edition", "grimoire", "locale"]),
|
||||
...mapState([
|
||||
"roles",
|
||||
"modals",
|
||||
"edition",
|
||||
"grimoire",
|
||||
"locale",
|
||||
"session",
|
||||
]),
|
||||
...mapState("players", ["players", "fabled"]),
|
||||
},
|
||||
methods: {
|
||||
|
@ -255,15 +351,32 @@ h4 {
|
|||
}
|
||||
}
|
||||
}
|
||||
.traveler {
|
||||
.name {
|
||||
background: linear-gradient(90deg, $traveler, transparent 35%);
|
||||
.night .other & {
|
||||
background: linear-gradient(-90deg, $traveler, transparent 35%);
|
||||
}
|
||||
}
|
||||
}
|
||||
.default {
|
||||
.name {
|
||||
background: linear-gradient(90deg, $default, transparent 35%);
|
||||
.night .other & {
|
||||
background: linear-gradient(-90deg, $default, transparent 35%);
|
||||
}
|
||||
}
|
||||
}
|
||||
ul {
|
||||
li {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin-bottom: 3px;
|
||||
.icon {
|
||||
width: 6vh;
|
||||
background-size: cover;
|
||||
background-position: 0 0;
|
||||
width: 5vh;
|
||||
background-size: 100% auto;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
text-align: center;
|
||||
|
@ -277,7 +390,7 @@ ul {
|
|||
.name {
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
width: 15%;
|
||||
width: 5%;
|
||||
text-align: right;
|
||||
font-size: 110%;
|
||||
padding: 5px;
|
||||
|
|
|
@ -68,8 +68,8 @@
|
|||
vote.votes == null
|
||||
? 'minus-square'
|
||||
: vote.votes.length >= vote.majority
|
||||
? 'check-square'
|
||||
: 'square',
|
||||
? 'check-square'
|
||||
: 'square',
|
||||
]"
|
||||
/>
|
||||
</td>
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
{
|
||||
"id": "toymaker",
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "If it is a night when a Demon attack could end the game, and the Demon is marked “Final night: No Attack,” then the Demon does not act tonight. (Do not wake them.)",
|
||||
"reminders": ["Final Night: No Attack"],
|
||||
"setup": false,
|
||||
|
@ -83,7 +83,7 @@
|
|||
{
|
||||
"id": "duchess",
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Wake each player marked “Visitor” or “False Info” one at a time. Show them the Duchess token, then fingers (1, 2, 3) equaling the number of evil players marked “Visitor” or, if you are waking the player marked “False Info,” show them any number of fingers except the number of evil players marked “Visitor.”",
|
||||
"reminders": ["Visitor", "False Info"],
|
||||
"setup": false,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"name": "Washerwoman",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 33,
|
||||
"firstNight": 35,
|
||||
"firstNightReminder": "Show the character token of a Townsfolk in play. Point to two players, one of which is that character.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -18,7 +18,7 @@
|
|||
"name": "Librarian",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 34,
|
||||
"firstNight": 36,
|
||||
"firstNightReminder": "Show the character token of an Outsider in play. Point to two players, one of which is that character.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -32,7 +32,7 @@
|
|||
"name": "Investigator",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 35,
|
||||
"firstNight": 37,
|
||||
"firstNightReminder": "Show the character token of a Minion in play. Point to two players, one of which is that character.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -46,7 +46,7 @@
|
|||
"name": "Chef",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 36,
|
||||
"firstNight": 38,
|
||||
"firstNightReminder": "Show the finger signal (0, 1, 2, \u2026) for the number of pairs of neighbouring evil players.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -59,9 +59,9 @@
|
|||
"name": "Empath",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 37,
|
||||
"firstNight": 39,
|
||||
"firstNightReminder": "Show the finger signal (0, 1, 2) for the number of evil alive neighbours of the Empath.",
|
||||
"otherNight": 53,
|
||||
"otherNight": 58,
|
||||
"otherNightReminder": "Show the finger signal (0, 1, 2) for the number of evil neighbours.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -72,9 +72,9 @@
|
|||
"name": "Fortune Teller",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 38,
|
||||
"firstNight": 40,
|
||||
"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,
|
||||
"otherNight": 59,
|
||||
"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,
|
||||
|
@ -87,7 +87,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 55,
|
||||
"otherNight": 60,
|
||||
"otherNightReminder": "If a player was executed today: Show that player\u2019s character token.",
|
||||
"reminders": ["Executed"],
|
||||
"setup": false,
|
||||
|
@ -100,7 +100,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 12,
|
||||
"otherNight": 13,
|
||||
"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,
|
||||
|
@ -113,7 +113,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 52,
|
||||
"otherNight": 57,
|
||||
"otherNightReminder": "If the Ravenkeeper died tonight: The Ravenkeeper points to a player. Show that player\u2019s character token.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -176,9 +176,9 @@
|
|||
"name": "Butler",
|
||||
"edition": "tb",
|
||||
"team": "outsider",
|
||||
"firstNight": 39,
|
||||
"firstNight": 41,
|
||||
"firstNightReminder": "The Butler points to a player. Mark that player as 'Master'.",
|
||||
"otherNight": 67,
|
||||
"otherNight": 73,
|
||||
"otherNightReminder": "The Butler points to a player. Mark that player as 'Master'.",
|
||||
"reminders": ["Master"],
|
||||
"setup": false,
|
||||
|
@ -229,9 +229,9 @@
|
|||
"name": "Poisoner",
|
||||
"edition": "tb",
|
||||
"team": "minion",
|
||||
"firstNight": 17,
|
||||
"firstNight": 18,
|
||||
"firstNightReminder": "The Poisoner points to a player. That player is poisoned.",
|
||||
"otherNight": 7,
|
||||
"otherNight": 8,
|
||||
"otherNightReminder": "The previously poisoned player is no longer poisoned. The Poisoner points to a player. That player is poisoned.",
|
||||
"reminders": ["Poisoned"],
|
||||
"setup": false,
|
||||
|
@ -242,9 +242,9 @@
|
|||
"name": "Spy",
|
||||
"edition": "tb",
|
||||
"team": "minion",
|
||||
"firstNight": 49,
|
||||
"firstNight": 55,
|
||||
"firstNightReminder": "Show the Grimoire to the Spy for as long as they need.",
|
||||
"otherNight": 68,
|
||||
"otherNight": 74,
|
||||
"otherNightReminder": "Show the Grimoire to the Spy for as long as they need.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -257,7 +257,7 @@
|
|||
"team": "minion",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 19,
|
||||
"otherNight": 21,
|
||||
"otherNightReminder": "If the Scarlet Woman became the Demon today: Show the 'You are' card, then the demon token.",
|
||||
"reminders": ["Demon"],
|
||||
"setup": false,
|
||||
|
@ -283,7 +283,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 24,
|
||||
"otherNight": 26,
|
||||
"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,
|
||||
|
@ -296,7 +296,7 @@
|
|||
"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,
|
||||
"otherNight": 2,
|
||||
"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,
|
||||
|
@ -309,7 +309,7 @@
|
|||
"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,
|
||||
"otherNight": 2,
|
||||
"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,
|
||||
|
@ -359,9 +359,9 @@
|
|||
"name": "Grandmother",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 40,
|
||||
"firstNight": 42,
|
||||
"firstNightReminder": "Show the marked character token. Point to the marked player.",
|
||||
"otherNight": 51,
|
||||
"otherNight": 56,
|
||||
"otherNightReminder": "If the Grandmother\u2019s grandchild was killed by the Demon tonight: The Grandmother dies.",
|
||||
"reminders": ["Grandchild"],
|
||||
"setup": false,
|
||||
|
@ -372,9 +372,9 @@
|
|||
"name": "Sailor",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 11,
|
||||
"firstNight": 12,
|
||||
"firstNightReminder": "The Sailor points to a living player. Either the Sailor, or the chosen player, is drunk.",
|
||||
"otherNight": 4,
|
||||
"otherNight": 5,
|
||||
"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,
|
||||
|
@ -385,9 +385,9 @@
|
|||
"name": "Chambermaid",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 51,
|
||||
"firstNight": 58,
|
||||
"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,
|
||||
"otherNight": 77,
|
||||
"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,
|
||||
|
@ -400,7 +400,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 21,
|
||||
"otherNight": 23,
|
||||
"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,
|
||||
|
@ -413,7 +413,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 9,
|
||||
"otherNight": 10,
|
||||
"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"],
|
||||
|
@ -427,7 +427,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 10,
|
||||
"otherNight": 11,
|
||||
"otherNightReminder": "The Gambler points to a player, and a character on their sheet. If incorrect, the Gambler dies.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -440,7 +440,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 38,
|
||||
"otherNight": 42,
|
||||
"otherNightReminder": "If the Gossip\u2019s public statement was true: Choose a player not protected from dying tonight. That player dies.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -451,9 +451,9 @@
|
|||
"name": "Courtier",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 19,
|
||||
"firstNight": 20,
|
||||
"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,
|
||||
"otherNight": 9,
|
||||
"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",
|
||||
|
@ -469,7 +469,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 43,
|
||||
"otherNight": 48,
|
||||
"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"],
|
||||
|
@ -535,7 +535,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 49,
|
||||
"otherNight": 54,
|
||||
"otherNightReminder": "The Tinker might die.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -548,7 +548,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 50,
|
||||
"otherNight": 55,
|
||||
"otherNightReminder": "If the Moonchild used their ability to target a player today: If that player is good, they die.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -572,9 +572,9 @@
|
|||
"name": "Lunatic",
|
||||
"edition": "bmr",
|
||||
"team": "outsider",
|
||||
"firstNight": 8,
|
||||
"firstNight": 9,
|
||||
"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,
|
||||
"otherNight": 22,
|
||||
"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": [],
|
||||
"remindersGlobal": ["Lunatic"],
|
||||
|
@ -586,9 +586,9 @@
|
|||
"name": "Godfather",
|
||||
"edition": "bmr",
|
||||
"team": "minion",
|
||||
"firstNight": 21,
|
||||
"firstNight": 22,
|
||||
"firstNightReminder": "Show each of the Outsider tokens in play.",
|
||||
"otherNight": 37,
|
||||
"otherNight": 41,
|
||||
"otherNightReminder": "If an Outsider died today: The Godfather points to a player. That player dies.",
|
||||
"reminders": ["Died today",
|
||||
"Dead"],
|
||||
|
@ -600,9 +600,9 @@
|
|||
"name": "Devil's Advocate",
|
||||
"edition": "bmr",
|
||||
"team": "minion",
|
||||
"firstNight": 22,
|
||||
"firstNight": 23,
|
||||
"firstNightReminder": "The Devil\u2019s Advocate points to a living player. That player survives execution tomorrow.",
|
||||
"otherNight": 13,
|
||||
"otherNight": 14,
|
||||
"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,
|
||||
|
@ -615,7 +615,7 @@
|
|||
"team": "minion",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 36,
|
||||
"otherNight": 40,
|
||||
"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"],
|
||||
|
@ -642,7 +642,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 25,
|
||||
"otherNight": 27,
|
||||
"otherNightReminder": "If no-one died during the day: The Zombuul points to a player. That player dies.",
|
||||
"reminders": ["Died today",
|
||||
"Dead"],
|
||||
|
@ -654,9 +654,9 @@
|
|||
"name": "Pukka",
|
||||
"edition": "bmr",
|
||||
"team": "demon",
|
||||
"firstNight": 28,
|
||||
"firstNight": 30,
|
||||
"firstNightReminder": "The Pukka points to a player. That player is poisoned.",
|
||||
"otherNight": 26,
|
||||
"otherNight": 28,
|
||||
"otherNightReminder": "The Pukka points to a player. That player is poisoned. The previously poisoned player dies. ",
|
||||
"reminders": ["Poisoned",
|
||||
"Dead"],
|
||||
|
@ -670,7 +670,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 27,
|
||||
"otherNight": 29,
|
||||
"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"],
|
||||
|
@ -684,7 +684,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 28,
|
||||
"otherNight": 30,
|
||||
"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"],
|
||||
|
@ -698,8 +698,8 @@
|
|||
"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": "",
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "If the Apprentice has just arrived, show them 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.",
|
||||
"reminders": ["Is the Apprentice"],
|
||||
"setup": false,
|
||||
"ability": "On your 1st night, you gain a Townsfolk ability (if good), or a Minion ability (if evil)."
|
||||
|
@ -762,7 +762,7 @@
|
|||
"name": "Clockmaker",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 41,
|
||||
"firstNight": 43,
|
||||
"firstNightReminder": "Show the hand signal for the number (1, 2, 3, etc.) of places from Demon to closest Minion.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -775,9 +775,9 @@
|
|||
"name": "Dreamer",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 42,
|
||||
"firstNight": 44,
|
||||
"firstNightReminder": "The Dreamer points to a player. Show 1 good and 1 evil character token; one of these is correct.",
|
||||
"otherNight": 56,
|
||||
"otherNight": 61,
|
||||
"otherNightReminder": "The Dreamer points to a player. Show 1 good and 1 evil character token; one of these is correct.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -788,9 +788,9 @@
|
|||
"name": "Snake Charmer",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 20,
|
||||
"firstNight": 21,
|
||||
"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,
|
||||
"otherNight": 12,
|
||||
"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,
|
||||
|
@ -801,9 +801,9 @@
|
|||
"name": "Mathematician",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 52,
|
||||
"firstNight": 59,
|
||||
"firstNightReminder": "Show the hand signal for the number (0, 1, 2, etc.) of players whose ability malfunctioned due to other abilities.",
|
||||
"otherNight": 71,
|
||||
"otherNight": 78,
|
||||
"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,
|
||||
|
@ -816,7 +816,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 57,
|
||||
"otherNight": 62,
|
||||
"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"],
|
||||
|
@ -830,7 +830,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 58,
|
||||
"otherNight": 63,
|
||||
"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"],
|
||||
|
@ -844,7 +844,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 59,
|
||||
"otherNight": 64,
|
||||
"otherNightReminder": "Show the hand signal for the number (0, 1, 2, etc.) of dead evil players.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -868,9 +868,9 @@
|
|||
"name": "Seamstress",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 43,
|
||||
"firstNight": 45,
|
||||
"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,
|
||||
"otherNight": 65,
|
||||
"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,
|
||||
|
@ -883,7 +883,7 @@
|
|||
"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,
|
||||
"otherNight": 3,
|
||||
"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",
|
||||
"Philosopher",
|
||||
|
@ -911,7 +911,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 61,
|
||||
"otherNight": 66,
|
||||
"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,
|
||||
|
@ -924,7 +924,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 42,
|
||||
"otherNight": 47,
|
||||
"otherNightReminder": "If the Sage was killed by a Demon: Point to two players, one of which is that Demon.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -950,7 +950,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 41,
|
||||
"otherNight": 46,
|
||||
"otherNightReminder": "Choose a player that is drunk.",
|
||||
"reminders": ["Drunk"],
|
||||
"setup": false,
|
||||
|
@ -963,7 +963,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 40,
|
||||
"otherNight": 45,
|
||||
"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,
|
||||
|
@ -987,7 +987,7 @@
|
|||
"name": "Evil Twin",
|
||||
"edition": "snv",
|
||||
"team": "minion",
|
||||
"firstNight": 23,
|
||||
"firstNight": 24,
|
||||
"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": "",
|
||||
|
@ -1001,9 +1001,9 @@
|
|||
"name": "Witch",
|
||||
"edition": "snv",
|
||||
"team": "minion",
|
||||
"firstNight": 24,
|
||||
"firstNight": 25,
|
||||
"firstNightReminder": "The Witch points to a player. If that player nominates tomorrow they die immediately.",
|
||||
"otherNight": 14,
|
||||
"otherNight": 15,
|
||||
"otherNightReminder": "If there are 4 or more players alive: The Witch points to a player. If that player nominates tomorrow they die immediately.",
|
||||
"reminders": ["Cursed"],
|
||||
"setup": false,
|
||||
|
@ -1014,9 +1014,9 @@
|
|||
"name": "Cerenovus",
|
||||
"edition": "snv",
|
||||
"team": "minion",
|
||||
"firstNight": 25,
|
||||
"firstNight": 26,
|
||||
"firstNightReminder": "The Cerenovus points to a player, then to a character on their sheet. Wake that player. Show the 'This character selected you' card, then the Cerenovus token. Show the selected character token. If the player is not mad about being that character tomorrow, they can be executed.",
|
||||
"otherNight": 15,
|
||||
"otherNight": 16,
|
||||
"otherNightReminder": "The Cerenovus points to a player, then to a character on their sheet. Wake that player. Show the 'This character selected you' card, then the Cerenovus token. Show the selected character token. If the player is not mad about being that character tomorrow, they can be executed.",
|
||||
"reminders": ["Mad"],
|
||||
"setup": false,
|
||||
|
@ -1029,7 +1029,7 @@
|
|||
"team": "minion",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 16,
|
||||
"otherNight": 17,
|
||||
"otherNightReminder": "The Pit-Hag points to a player and a character on the sheet. If this character is not in play, wake that player and show them the 'You are' card and the relevant character token. If the character is in play, nothing happens.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1042,7 +1042,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 29,
|
||||
"otherNight": 31,
|
||||
"otherNightReminder": "The Fang Gu points to a player. That player dies. Or, if that player was an Outsider and there are no other Fang Gu in play: The Fang Gu dies instead of the chosen player. The chosen player is now an evil Fang Gu. Wake the new Fang Gu. Show the 'You are' card, then the Fang Gu token. Show the 'You are' card, then the thumb-down 'evil' hand sign.",
|
||||
"reminders": ["Dead",
|
||||
"Once"],
|
||||
|
@ -1056,7 +1056,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 32,
|
||||
"otherNight": 34,
|
||||
"otherNightReminder": "The Vigormortis points to a player. That player dies. If a Minion, they keep their ability and one of their Townsfolk neighbours is poisoned.",
|
||||
"reminders": ["Dead",
|
||||
"Has ability",
|
||||
|
@ -1071,7 +1071,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 30,
|
||||
"otherNight": 32,
|
||||
"otherNightReminder": "The No Dashii points to a player. That player dies.",
|
||||
"reminders": ["Dead",
|
||||
"Poisoned"],
|
||||
|
@ -1085,7 +1085,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 31,
|
||||
"otherNight": 33,
|
||||
"otherNightReminder": "The Vortox points to a player. That player dies.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -1098,7 +1098,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 1,
|
||||
"firstNightReminder": "Choose a player, wake them and tell them which Barista power is affecting them. Treat them accordingly (sober/healthy/true info or activate their ability twice).",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Choose a player, wake them and tell them which Barista power is affecting them. Treat them accordingly (sober/healthy/true info or activate their ability twice).",
|
||||
"reminders": ["Sober & Healthy",
|
||||
"Ability twice"],
|
||||
|
@ -1112,7 +1112,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "The Harlot points at any player. Then, put the Harlot to sleep. Wake the chosen player, show them the 'This character selected you' token, then the Harlot token. That player either nods their head yes or shakes their head no. If they nodded their head yes, wake the Harlot and show them the chosen player's character token. Then, you may decide that both players die.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -1138,7 +1138,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "The Bone Collector either shakes their head no or points at any dead player. If they pointed at any dead player, put the Bone Collector's 'Has Ability' reminder by the chosen player's character token. (They may need to be woken tonight to use it.)",
|
||||
"reminders": ["No ability",
|
||||
"Has ability"],
|
||||
|
@ -1163,7 +1163,7 @@
|
|||
"name": "Noble",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 44,
|
||||
"firstNight": 48,
|
||||
"firstNightReminder": "Point to 3 players including one evil player, in no particular order.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1176,9 +1176,9 @@
|
|||
"name": "Bounty Hunter",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 46,
|
||||
"firstNight": 52,
|
||||
"firstNightReminder": "Point to 1 evil player. Wake the townsfolk who is evil and show them the 'You are' card and the thumbs down evil sign.",
|
||||
"otherNight": 64,
|
||||
"otherNight": 70,
|
||||
"otherNightReminder": "If the known evil player has died, point to another evil player. ",
|
||||
"reminders": ["Known"],
|
||||
"setup": true,
|
||||
|
@ -1189,7 +1189,7 @@
|
|||
"name": "Pixie",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 29,
|
||||
"firstNight": 31,
|
||||
"firstNightReminder": "Show the Pixie 1 in-play Townsfolk character token.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1203,9 +1203,9 @@
|
|||
"name": "General",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 50,
|
||||
"firstNight": 57,
|
||||
"firstNightReminder": "Show the General thumbs up for good winning, thumbs down for evil winning or thumb to the side for neither.",
|
||||
"otherNight": 69,
|
||||
"otherNight": 76,
|
||||
"otherNightReminder": "Show the General thumbs up for good winning, thumbs down for evil winning or thumb to the side for neither.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1216,9 +1216,9 @@
|
|||
"name": "Preacher",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 14,
|
||||
"firstNight": 15,
|
||||
"firstNightReminder": "The Preacher chooses a player. If a Minion is chosen, wake the Minion and show the 'This character selected you' card and then the Preacher token.",
|
||||
"otherNight": 6,
|
||||
"otherNight": 7,
|
||||
"otherNightReminder": "The Preacher chooses a player. If a Minion is chosen, wake the Minion and show the 'This character selected you' card and then the Preacher token.",
|
||||
"reminders": ["At a sermon"],
|
||||
"setup": false,
|
||||
|
@ -1229,9 +1229,9 @@
|
|||
"name": "King",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 10,
|
||||
"firstNight": 11,
|
||||
"firstNightReminder": "Wake the Demon, show them the 'This character selected you' card, show the King token and point to the King player.",
|
||||
"otherNight": 63,
|
||||
"otherNight": 69,
|
||||
"otherNightReminder": "If there are more dead than living, show the King a character token of a living player.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1242,9 +1242,9 @@
|
|||
"name": "Balloonist",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 45,
|
||||
"firstNight": 49,
|
||||
"firstNightReminder": "Choose a character type. Point to a player whose character is of that type. Place the Balloonist's Seen reminder next to that character.",
|
||||
"otherNight": 62,
|
||||
"otherNight": 67,
|
||||
"otherNightReminder": "Choose a character type that does not yet have a Seen reminder next to a character of that type. Point to a player whose character is of that type, if there are any. Place the Balloonist's Seen reminder next to that character.",
|
||||
"reminders": ["Seen Townsfolk",
|
||||
"Seen Outsider",
|
||||
|
@ -1258,9 +1258,9 @@
|
|||
"name": "Cult Leader",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 48,
|
||||
"firstNight": 54,
|
||||
"firstNightReminder": "If the cult leader changed alignment, show them the thumbs up good signal of the thumbs down evil signal accordingly.",
|
||||
"otherNight": 66,
|
||||
"otherNight": 72,
|
||||
"otherNightReminder": "If the cult leader changed alignment, show them the thumbs up good signal of the thumbs down evil signal accordingly.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1273,7 +1273,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 22,
|
||||
"otherNight": 24,
|
||||
"otherNightReminder": "The Lycanthrope points to a living player: if good, they die and no one else can die tonight.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -1284,9 +1284,9 @@
|
|||
"name": "Amnesiac",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 32,
|
||||
"firstNight": 34,
|
||||
"firstNightReminder": "Decide the Amnesiac's entire ability. If the Amnesiac's ability causes them to wake tonight: Wake the Amnesiac and run their ability.",
|
||||
"otherNight": 47,
|
||||
"otherNight": 52,
|
||||
"otherNightReminder": "If the Amnesiac's ability causes them to wake tonight: Wake the Amnesiac and run their ability.",
|
||||
"reminders": ["?"],
|
||||
"setup": false,
|
||||
|
@ -1297,9 +1297,9 @@
|
|||
"name": "Nightwatchman",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 47,
|
||||
"firstNight": 53,
|
||||
"firstNightReminder": "The Nightwatchman may point to a player. Wake that player, show the 'This character selected you' card and the Nightwatchman token, then point to the Nightwatchman player.",
|
||||
"otherNight": 65,
|
||||
"otherNight": 71,
|
||||
"otherNightReminder": "The Nightwatchman may point to a player. Wake that player, show the 'This character selected you' card and the Nightwatchman token, then point to the Nightwatchman player.",
|
||||
"reminders": ["No ability"],
|
||||
"setup": false,
|
||||
|
@ -1310,9 +1310,9 @@
|
|||
"name": "Engineer",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 13,
|
||||
"firstNight": 14,
|
||||
"firstNightReminder": "The Engineer shows a 'no' head signal, or points to a Demon or points to the relevant number of Minions. If the Engineer chose characters, replace the Demon or Minions with the choices, then wake the relevant players and show them the You are card and the relevant character tokens.",
|
||||
"otherNight": 5,
|
||||
"otherNight": 6,
|
||||
"otherNightReminder": "The Engineer shows a 'no' head signal, or points to a Demon or points to the relevant number of Minions. If the Engineer chose characters, replace the Demon or Minions with the choices, then wake the relevant players and show them the 'You are' card and the relevant character tokens.",
|
||||
"reminders": ["No ability"],
|
||||
"setup": false,
|
||||
|
@ -1336,9 +1336,9 @@
|
|||
"name": "Huntsman",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 30,
|
||||
"firstNight": 32,
|
||||
"firstNightReminder": "The Huntsman shakes their head 'no' or points to a player. If they point to the Damsel, wake that player, show the 'You are' card and a not-in-play character token.",
|
||||
"otherNight": 45,
|
||||
"otherNight": 50,
|
||||
"otherNightReminder": "The Huntsman shakes their head 'no' or points to a player. If they point to the Damsel, wake that player, show the 'You are' card and a not-in-play character token.",
|
||||
"reminders": ["No ability"],
|
||||
"setup": true,
|
||||
|
@ -1349,7 +1349,7 @@
|
|||
"name": "Alchemist",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 3,
|
||||
"firstNight": 4,
|
||||
"firstNightReminder": "Show the Alchemist a not-in-play Minion token",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1365,7 +1365,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 48,
|
||||
"otherNight": 53,
|
||||
"otherNightReminder": "If a Farmer died tonight, choose another good player and make them the Farmer. Wake this player, show them the 'You are' card and the Farmer character token.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1376,8 +1376,8 @@
|
|||
"name": "Magician",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 5,
|
||||
"firstNightReminder": "",
|
||||
"firstNight": 6,
|
||||
"firstNightReminder": "To the Minions, show the Magician as another Demon. To the Demon, show the Magician as another Minion.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
"reminders": [],
|
||||
|
@ -1391,7 +1391,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 44,
|
||||
"otherNight": 49,
|
||||
"otherNightReminder": "If the King was killed by the Demon, wake the Choirboy and point to the Demon player.",
|
||||
"reminders": [],
|
||||
"setup": true,
|
||||
|
@ -1402,9 +1402,9 @@
|
|||
"name": "Poppy Grower",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 4,
|
||||
"firstNight": 5,
|
||||
"firstNightReminder": "Do not inform the Demon/Minions who each other are",
|
||||
"otherNight": 3,
|
||||
"otherNight": 4,
|
||||
"otherNightReminder": "If the Poppy Grower has died, show the Minions/Demon who each other are.",
|
||||
"reminders": ["Evil wakes"],
|
||||
"setup": false,
|
||||
|
@ -1442,7 +1442,7 @@
|
|||
"name": "Snitch",
|
||||
"edition": "",
|
||||
"team": "outsider",
|
||||
"firstNight": 7,
|
||||
"firstNight": 8,
|
||||
"firstNightReminder": "After Minion info wake each Minion and show them three not-in-play character tokens. These may be the same or different to each other and the ones shown to the Demon.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1457,7 +1457,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 39,
|
||||
"otherNight": 43,
|
||||
"otherNightReminder": "If a good living neighbour is drunk or poisoned, the Acrobat player dies.",
|
||||
"reminders": ["Dead"],
|
||||
"setup": false,
|
||||
|
@ -1495,9 +1495,9 @@
|
|||
"name": "Damsel",
|
||||
"edition": "",
|
||||
"team": "outsider",
|
||||
"firstNight": 31,
|
||||
"firstNightReminder": "Wake all the Minions, show them the 'This character selected you' card and the Damsel token.",
|
||||
"otherNight": 46,
|
||||
"firstNight": 33,
|
||||
"firstNightReminder": "If selected by the Huntsman, wake the Damsel, show 'You are' card and a not-in-play Townsfolk token.",
|
||||
"otherNight": 51,
|
||||
"otherNightReminder": "If selected by the Huntsman, wake the Damsel, show 'You are' card and a not-in-play Townsfolk token.",
|
||||
"reminders": ["Guess used"],
|
||||
"setup": false,
|
||||
|
@ -1534,7 +1534,7 @@
|
|||
"name": "Widow",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 18,
|
||||
"firstNight": 19,
|
||||
"firstNightReminder": "Show the Grimoire to the Widow for as long as they need. The Widow points to a player. That player is poisoned. Wake a good player. Show the 'These characters are in play' card, then the Widow character token.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1548,9 +1548,9 @@
|
|||
"name": "Fearmonger",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 26,
|
||||
"firstNight": 27,
|
||||
"firstNightReminder": "The Fearmonger points to a player. Place the Fear token next to that player and announce that a new player has been selected with the Fearmonger ability.",
|
||||
"otherNight": 17,
|
||||
"otherNight": 18,
|
||||
"otherNightReminder": "The Fearmonger points to a player. If different from the previous night, place the Fear token next to that player and announce that a new player has been selected with the Fearmonger ability.",
|
||||
"reminders": ["Fear"],
|
||||
"setup": false,
|
||||
|
@ -1587,9 +1587,9 @@
|
|||
"name": "Mephit",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 27,
|
||||
"firstNight": 29,
|
||||
"firstNightReminder": "Show the Mephit their secret word.",
|
||||
"otherNight": 18,
|
||||
"otherNight": 20,
|
||||
"otherNightReminder": "Wake the 1st good player that said the Mephit's secret word and show them the 'You are' card and the thumbs down evil signal.",
|
||||
"reminders": ["Turns evil",
|
||||
"No ability"],
|
||||
|
@ -1601,9 +1601,9 @@
|
|||
"name": "Mezepheles",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 27,
|
||||
"firstNight": 29,
|
||||
"firstNightReminder": "Show the Mezepheles their secret word.",
|
||||
"otherNight": 18,
|
||||
"otherNight": 20,
|
||||
"otherNightReminder": "Wake the 1st good player that said the Mezepheles' secret word and show them the 'You are' card and the thumbs down evil signal.",
|
||||
"reminders": ["Turns evil",
|
||||
"No ability"],
|
||||
|
@ -1615,7 +1615,7 @@
|
|||
"name": "Marionette",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 12,
|
||||
"firstNight": 13,
|
||||
"firstNightReminder": "Select one of the good players next to the Demon and place the Is the Marionette reminder token. Wake the Demon and show them the Marionette.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1656,9 +1656,9 @@
|
|||
"name": "Lil' Monsta",
|
||||
"edition": "",
|
||||
"team": "demon",
|
||||
"firstNight": 15,
|
||||
"firstNight": 16,
|
||||
"firstNightReminder": "Wake all Minions together, allow them to vote by pointing at who they want to babysit Lil' Monsta.",
|
||||
"otherNight": 35,
|
||||
"otherNight": 38,
|
||||
"otherNightReminder": "Wake all Minions together, allow them to vote by pointing at who they want to babysit Lil' Monsta. Choose a player, that player dies.",
|
||||
"reminders": [],
|
||||
"remindersGlobal": ["Is the Demon",
|
||||
|
@ -1671,9 +1671,9 @@
|
|||
"name": "Lleech",
|
||||
"edition": "",
|
||||
"team": "demon",
|
||||
"firstNight": 16,
|
||||
"firstNight": 17,
|
||||
"firstNightReminder": "The Lleech points to a player. Place the Poisoned reminder token.",
|
||||
"otherNight": 34,
|
||||
"otherNight": 37,
|
||||
"otherNightReminder": "The Lleech points to a player. That player dies.",
|
||||
"reminders": ["Dead",
|
||||
"Poisoned"],
|
||||
|
@ -1687,7 +1687,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 33,
|
||||
"otherNight": 36,
|
||||
"otherNightReminder": "The Al-Hadikhia chooses 3 players. Announce the first player, wake them to nod yes to live or shake head no to die, kill or resurrect accordingly, then put to sleep and announce the next player. If all 3 are alive after this, all 3 die.",
|
||||
"reminders": ["1", "2", "3",
|
||||
"Chose death",
|
||||
|
@ -1702,7 +1702,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 23,
|
||||
"otherNight": 25,
|
||||
"otherNightReminder": "Choose a player, that player dies.",
|
||||
"reminders": ["Dead",
|
||||
"About to die"],
|
||||
|
@ -1714,9 +1714,9 @@
|
|||
"name": "Leviathan",
|
||||
"edition": "",
|
||||
"team": "demon",
|
||||
"firstNight": 54,
|
||||
"firstNight": 61,
|
||||
"firstNightReminder": "Place the Leviathan 'Day 1' marker. Announce 'The Leviathan is in play; this is Day 1.'",
|
||||
"otherNight": 73,
|
||||
"otherNight": 80,
|
||||
"otherNightReminder": "Change the Leviathan Day reminder for the next day.",
|
||||
"reminders": ["Good player executed"],
|
||||
"remindersGlobal": ["Day 1",
|
||||
|
|
|
@ -200,9 +200,14 @@
|
|||
"firstNight": "First Night",
|
||||
"otherNights": "Other Nights",
|
||||
"minionInfo": "Minion info",
|
||||
"minionInfoDescription": "• If more than one Minion, they all make eye contact with each other. • Show the “This is the Demon” card. Point to the Demon.",
|
||||
"minionInfoDescription": "If more than one Minion, they all make eye contact with each other. Show the “This is the Demon” card. Point to the Demon.",
|
||||
"demonInfo": "Demon info & bluffs",
|
||||
"demonInfoDescription": "• Show the “These are your minions” card. Point to each Minion. • Show the “These characters are not in play” card. Show 3 character tokens of good characters not in play."
|
||||
"demonInfoDescription": "Show the “These are your minions” card. Point to each Minion. Show the “These characters are not in play” card. Show 3 character tokens of good characters not in play.",
|
||||
"dawn": "Dawn",
|
||||
"dawnDescription1": "Wake all players.",
|
||||
"dawnDescription2": "Wake all players, then announce who died this night.",
|
||||
"dusk": "Dusk",
|
||||
"duskDescription": "End the day, and put all players to sleep."
|
||||
},
|
||||
"reference": {
|
||||
"title": "Character Reference",
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
{
|
||||
"id": "toymaker",
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Si le Démon pourrait terminer la partie cette nuit, mais qu'il a toujours son marqueur 'nuit sans attaque', il n'agit pas cette nuit (ne le réveillez pas)",
|
||||
"reminders": ["Nuit sans attaque"],
|
||||
"setup": false,
|
||||
|
@ -83,7 +83,7 @@
|
|||
{
|
||||
"id": "duchess",
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Reveillez chaque visiteur dans l'ordre un par un. Indiquez à chacun d'entre eux combien de Visiteurs sont mauvais. Excepté celui qui reçoit les fausses informations qui recevra à la place n'importe quel autre nombre.",
|
||||
"reminders": ["Visiteur 1", "Visiteur 2", "Visiteur 3", "Fausse Info"],
|
||||
"setup": false,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"name": "Lavandière",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 32,
|
||||
"firstNight": 35,
|
||||
"firstNightReminder": "Indiquez un rôle de villageois en jeu et deux joueurs. L'un de ces joueurs est ce personnage.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "Bibliothécaire",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 33,
|
||||
"firstNight": 36,
|
||||
"firstNightReminder": "Indiquez un rôle d'Étranger en jeu et deux joueurs. L'un de ces joueurs est ce personnage. (S'il n'y a pas d'Étranger, indiquez le).",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -36,7 +36,7 @@
|
|||
"name": "Enquêteur",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 34,
|
||||
"firstNight": 37,
|
||||
"firstNightReminder": "Indiquez un rôle de Serviteur en jeu et deux joueurs. L'un de ces joueurs est ce personnage.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -52,7 +52,7 @@
|
|||
"name": "Chef",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 35,
|
||||
"firstNight": 38,
|
||||
"firstNightReminder": "Indiquez combien de paires de Mauvais voisins sont dans la partie.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -65,9 +65,9 @@
|
|||
"name": "Empathe",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 36,
|
||||
"firstNight": 39,
|
||||
"firstNightReminder": "Indiquez combien de joueurs sont Mauvais parmi les voisins de l'Empathe.",
|
||||
"otherNight": 53,
|
||||
"otherNight": 58,
|
||||
"otherNightReminder": "Indiquez combien de joueurs sont Mauvais parmi les voisins vivants de l'Empathe.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -78,9 +78,9 @@
|
|||
"name": "Voyant",
|
||||
"edition": "tb",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 37,
|
||||
"firstNight": 40,
|
||||
"firstNightReminder": "Le Voyant désigne 2 joueurs. Indiquez si, oui ou non, l'un d'eux est le Démon (ou la fausse piste).",
|
||||
"otherNight": 54,
|
||||
"otherNight": 59,
|
||||
"otherNightReminder": "Le Voyant désigne 2 joueurs. Indiquez si, oui ou non, l'un d'eux est le Démon (ou la fausse piste).",
|
||||
"reminders": [
|
||||
"Fausse piste"
|
||||
|
@ -95,7 +95,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 56,
|
||||
"otherNight": 60,
|
||||
"otherNightReminder": "Si un joueur est mort par execution aujourd'hui, indiquez le personnage du joueur exécuté.",
|
||||
"reminders": [
|
||||
"Executé"
|
||||
|
@ -125,7 +125,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 42,
|
||||
"otherNight": 57,
|
||||
"otherNightReminder": "Si le Corbeau est mort cette nuit, il désigne un joueur. Indiquez le rôle de ce joueur.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -192,9 +192,9 @@
|
|||
"name": "Majordome",
|
||||
"edition": "tb",
|
||||
"team": "outsider",
|
||||
"firstNight": 38,
|
||||
"firstNight": 41,
|
||||
"firstNightReminder": "Le Majordome désigne un joueur. Marquez ce joueur comme 'Maître'.",
|
||||
"otherNight": 55,
|
||||
"otherNight": 73,
|
||||
"otherNightReminder": "Le Majordome désigne un joueur. Marquez ce joueur comme 'Maître'.",
|
||||
"reminders": [
|
||||
"Maître"
|
||||
|
@ -249,7 +249,7 @@
|
|||
"name": "Empoisonneur",
|
||||
"edition": "tb",
|
||||
"team": "minion",
|
||||
"firstNight": 17,
|
||||
"firstNight": 18,
|
||||
"firstNightReminder": "L'empoisonneur désigne un joueur, marquez-le comme empoisonné.",
|
||||
"otherNight": 8,
|
||||
"otherNightReminder": "Le joueur précédement empoisonné ne l'est plus. L'empoisonneur désigne un joueur. Ce joueur est empoisonné.",
|
||||
|
@ -264,9 +264,9 @@
|
|||
"name": "Espion",
|
||||
"edition": "tb",
|
||||
"team": "minion",
|
||||
"firstNight": 48,
|
||||
"firstNight": 55,
|
||||
"firstNightReminder": "Montrez votre grimoire à l'Espion aussi longtemps qu'il en a besoin.",
|
||||
"otherNight": 68,
|
||||
"otherNight": 74,
|
||||
"otherNightReminder": "Montrez votre grimoire à l'Espion aussi longtemps qu'il en a besoin.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -279,7 +279,7 @@
|
|||
"team": "minion",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 20,
|
||||
"otherNight": 21,
|
||||
"otherNightReminder": "Si le Démon est mort (et que la partie n'a pas pris fin), informez le Gourgandin qu'il devient le Démon.",
|
||||
"reminders": [
|
||||
"Démon"
|
||||
|
@ -307,7 +307,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 24,
|
||||
"otherNight": 26,
|
||||
"otherNightReminder": "Le Diablotin désigne un joueur, ce joueur meurt. Si le Diablotin se choisit lui-même, l'un de ses Serviteurs encore en vie devient le Diablotin.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -323,7 +323,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 1,
|
||||
"firstNightReminder": "Le Bureaucrate indique un joueur. Placez le marqueur 'triple vote' sur ce joueur.",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Le Bureaucrate indique un joueur. Placez le marqueur 'triple vote' sur ce joueur.",
|
||||
"reminders": [
|
||||
"Triple vote"
|
||||
|
@ -338,7 +338,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 1,
|
||||
"firstNightReminder": "Le Voleur désigne un joueur. Placez le marqueur 'Vote négatif' sur ce joueur.",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Le Voleur désigne un joueur. Placez le marqueur 'Vote négatif' sur ce joueur.",
|
||||
"reminders": [
|
||||
"Vote négatif"
|
||||
|
@ -390,9 +390,9 @@
|
|||
"name": "Grand-mère",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 39,
|
||||
"firstNight": 42,
|
||||
"firstNightReminder": "Indiquez à la Grand-mère qui est son Petit-fils.",
|
||||
"otherNight": 50,
|
||||
"otherNight": 56,
|
||||
"otherNightReminder": "Si le Petit-Fils a été tué par le Démon cette nuit: la Grand-mère meurt.",
|
||||
"reminders": [
|
||||
"Petit-fils"
|
||||
|
@ -405,9 +405,9 @@
|
|||
"name": "Marin",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 10,
|
||||
"firstNight": 12,
|
||||
"firstNightReminder": "Le Marin désigne un autre joueur. Le marin ou le joueur qu'il a désigné est Ivre jusqu'à la tombée de la nuit.",
|
||||
"otherNight": 4,
|
||||
"otherNight": 5,
|
||||
"otherNightReminder": "Le joueur précédement Ivre ne l'est plus. Le Marin désigne un autre joueur. Le marin ou le joueur qu'il a désigné est Ivre jusqu'à la tombée de la nuit.",
|
||||
"reminders": [
|
||||
"Ivre"
|
||||
|
@ -420,9 +420,9 @@
|
|||
"name": "Femme de chambre",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 50,
|
||||
"firstNight": 58,
|
||||
"firstNightReminder": "La Femme de chambre désigne deux autres joueurs vivants. Indiquez combien parmi eux ont été reveillés pour leur pouvoir cette nuit.",
|
||||
"otherNight": 70,
|
||||
"otherNight": 77,
|
||||
"otherNightReminder": "La Femme de chambre désigne deux autres joueurs vivants. Indiquez combien parmi eux ont été reveillés pour leur pouvoir cette nuit.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -435,7 +435,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 22,
|
||||
"otherNight": 23,
|
||||
"otherNightReminder": "L'Exorciste désigne un joueur, différent de la nuit précédente. Si ce joueur est le Démon, informez celui-ci qu'il a été identifié par l'Exorciste et dévoilez-lui qui est l'Exorciste. Ne réveillez pas le Démon pour utiliser son pouvoir cette nuit.",
|
||||
"reminders": [
|
||||
"Exorcisé"
|
||||
|
@ -450,7 +450,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 9,
|
||||
"otherNight": 10,
|
||||
"otherNightReminder": "Les joueurs Ivres et protégés désignés précédement ne le sont plus. L'Aubergiste désigne 2 joueurs. Ils sont protégés. L'un des 2 est Ivre.",
|
||||
"reminders": [
|
||||
"Protégé",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 47,
|
||||
"otherNight": 42,
|
||||
"otherNightReminder": "Si les annonces publiques de la Commère étaient vraie aujourd'hui, choisisser un joueur non protégé. Ce joueur meurt.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -494,9 +494,9 @@
|
|||
"name": "Courtisan",
|
||||
"edition": "bmr",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 19,
|
||||
"firstNight": 20,
|
||||
"firstNightReminder": "Le Courtisan décide d'utiliser ou non son pouvoir. S'il le fait, il désigne un rôle : si ce rôle est en jeu, il devient Ivre.",
|
||||
"otherNight": 10,
|
||||
"otherNight": 9,
|
||||
"otherNightReminder": "S'il ne l'a pas déjà fait, Le Courtisan décide d'utiliser ou non son pouvoir. S'il le fait, il désigne un rôle : si ce rôle est en jeu, il devient Ivre pour 3 jours et 3 nuits.",
|
||||
"reminders": [
|
||||
"Ivre 3",
|
||||
|
@ -514,7 +514,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 45,
|
||||
"otherNight": 48,
|
||||
"otherNightReminder": "S'il ne l'a pas déjà fait, Le Professeur décide d'utiliser ou non sa capacité. S'il le fait, il désigne un joueur mort. Si c'est un Villageois, il est ressuscité.",
|
||||
"reminders": [
|
||||
"Vivant",
|
||||
|
@ -588,7 +588,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 48,
|
||||
"otherNight": 54,
|
||||
"otherNightReminder": "Le bricoleur peut mourir à tout moment.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -603,7 +603,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 49,
|
||||
"otherNight": 55,
|
||||
"otherNightReminder": "Si l'Enfant de la lune a désigné un joueur et que ce joueur est bon, le joueur désigné meurt.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -631,9 +631,9 @@
|
|||
"name": "Aliéné",
|
||||
"edition": "bmr",
|
||||
"team": "outsider",
|
||||
"firstNight": 7,
|
||||
"firstNight": 9,
|
||||
"firstNightReminder": "S'il y a 7 joueurs ou plus, indiquez à l'Aliéné un nombre de rôles de Serviteurs correspondant au nombre de Serviteurs en jeu et des joueurs pour chacuns de ces personnages. Montrez 3 jetons de personnages bons de votre choix. Si le faux personnage de Démon assigné à l'Aliéné a des actions de nuit, prétendez que vous lui faites réaliser ces actions. Placez le(s) marqueur(s) d'attaque de l'Aliéné. Réveillez le vrai Démon. Dévoilez au Démon les véritables Serviteurs et 3 bons personnages qui ne sont pas en jeu. Dévoilez au Démon qui est l'Aliéné. Si l'Aliéné a attaqué des joueurs, dévoilez au véritable Démon les joueurs marqués puis retirez les marqueurs de l'Aliéné.",
|
||||
"otherNight": 21,
|
||||
"otherNight": 22,
|
||||
"otherNightReminder": "Permettez à l'Aliéné de réaliser les actions du Démon qu'il croit être. Placez le(s) marqueur(s) d'attaque. Si l'Aliéné a indiqué des joueurs, réveillez le Démon. Dévoilez au Démon les marqueurs de l'Aliéné puis retirez-les.",
|
||||
"reminders": [],
|
||||
"remindersGlobal": [
|
||||
|
@ -647,9 +647,9 @@
|
|||
"name": "Parrain",
|
||||
"edition": "bmr",
|
||||
"team": "minion",
|
||||
"firstNight": 21,
|
||||
"firstNight": 22,
|
||||
"firstNightReminder": "Dévoilez les rôles d'Étrangers en jeu.",
|
||||
"otherNight": 38,
|
||||
"otherNight": 41,
|
||||
"otherNightReminder": "Si un Étranger est mort aujourd'hui, le Parrain désigne un joueur. Ce joueur meurt.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -662,7 +662,7 @@
|
|||
"name": "Avocat du diable",
|
||||
"edition": "bmr",
|
||||
"team": "minion",
|
||||
"firstNight": 22,
|
||||
"firstNight": 23,
|
||||
"firstNightReminder": "L'avocat du Diable désigne un joueur vivant. Si ce joueur est executé demain, il ne meurt pas.",
|
||||
"otherNight": 14,
|
||||
"otherNightReminder": "L'avocat du Diable désigne un joueur vivant différent de la nuit précédente. Si ce joueur est executé demain, il ne meurt pas.",
|
||||
|
@ -679,7 +679,7 @@
|
|||
"team": "minion",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 37,
|
||||
"otherNight": 40,
|
||||
"otherNightReminder": "S'il ne l'a pas déjà fait, L'Assassin décide d'utiliser ou non son pouvoir. S'il le fait, il désigne un joueur. Ce joueur meurt même s'il ne devrait pas pouvoir mourrir pour une raison quelconque.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -708,7 +708,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 25,
|
||||
"otherNight": 27,
|
||||
"otherNightReminder": "Si personne n'est mort aujourd'hui, Le Zombuul désigne un joueur. Ce joueur meurt.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -721,9 +721,9 @@
|
|||
"name": "Pukka",
|
||||
"edition": "bmr",
|
||||
"team": "demon",
|
||||
"firstNight": 28,
|
||||
"firstNight": 30,
|
||||
"firstNightReminder": "Le Pukka désigne un joueur. Ce joueur est empoisonné.",
|
||||
"otherNight": 26,
|
||||
"otherNight": 28,
|
||||
"otherNightReminder": "Le Pukka désigne un joueur. Ce joueur est empoisonné. Le joueur précédement empoisonné meurt et devient sain.",
|
||||
"reminders": [
|
||||
"Empoisonné",
|
||||
|
@ -739,7 +739,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 27,
|
||||
"otherNight": 29,
|
||||
"otherNightReminder": "L'un des joueurs désignés par le Shabaloth la nuit précédente peut être régurgité. Le Shabaloth désigne deux joueurs. Ces joueurs meurent.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -755,7 +755,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 28,
|
||||
"otherNight": 30,
|
||||
"otherNightReminder": "Si le Po n'a désigné personne la nuit précédente, Le Po choisit 3 joueurs. Sinon, il n'en choisit qu'un. Les joueurs désignés meurent",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -770,9 +770,9 @@
|
|||
"edition": "bmr",
|
||||
"team": "traveler",
|
||||
"firstNight": 1,
|
||||
"firstNightReminder": "Indiquez à l'Apprenti à quelle équipe il appartient et de rôle il acquiert la capacité. Dans le grimmoire, remplacez l'Apprenti par le personnage dont il copie le pouvoir et marquez-le comme apprenti.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
"firstNightReminder": "Indiquez à l'Apprenti à quelle équipe il appartient et de quel rôle il acquiert la capacité. Dans le grimmoire, remplacez l'Apprenti par le personnage dont il copie le pouvoir et marquez-le comme apprenti.",
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Si l'Apprenti vient d'emménager, indiquez-lui à quelle équipe il appartient et de quel rôle il acquiert la capacité. Dans le grimmoire, remplacez l'Apprenti par le personnage dont il copie le pouvoir et marquez-le comme apprenti.",
|
||||
"reminders": [
|
||||
"Apprenti"
|
||||
],
|
||||
|
@ -841,7 +841,7 @@
|
|||
"name": "Horloger",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 40,
|
||||
"firstNight": 43,
|
||||
"firstNightReminder": "Indiquez à quelle distance le Démon se trouve de son Serviteur le plus proche (en nombre de maisons).",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -854,9 +854,9 @@
|
|||
"name": "Rêveur",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 41,
|
||||
"firstNight": 44,
|
||||
"firstNightReminder": "Le Rêveur désigne un joueur. Indiquez lui un rôle Bon et un rôle Mauvais. L'un de ces deux personnages est ce joueur.",
|
||||
"otherNight": 57,
|
||||
"otherNight": 61,
|
||||
"otherNightReminder": "Le Rêveur désigne un joueur. Indiquez lui un rôle Bon et un rôle Mauvais. L'un de ces deux personnages est ce joueur.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -867,7 +867,7 @@
|
|||
"name": "Charmeur",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 20,
|
||||
"firstNight": 21,
|
||||
"firstNightReminder": "Le Charmeur de Serpents désigne un joueur. Si ce joueur est le Démon: inversez les personnages et les équipes du Charmeur de Serpents et du Démon. Reveillez-les pour les en informer. Le nouveau Charmeur de Serpents est empoisonné.",
|
||||
"otherNight": 12,
|
||||
"otherNightReminder": "Le Charmeur de Serpents désigne un joueur. Si ce joueur est le Démon: inversez les personnages et les équipes du Charmeur de Serpents et du Démon. Reveillez-les pour les en informer. Le nouveau Charmeur de Serpents est empoisonné.",
|
||||
|
@ -882,9 +882,9 @@
|
|||
"name": "Mathématicien",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 51,
|
||||
"firstNight": 59,
|
||||
"firstNightReminder": "Indiquez combien de pouvoirs ont dysfonctionné à cause du pouvoir d'un autre joueur depuis la fin de la nuit précédente.",
|
||||
"otherNight": 71,
|
||||
"otherNight": 78,
|
||||
"otherNightReminder": "Indiquez combien de pouvoirs ont dysfonctionné à cause du pouvoir d'un autre joueur depuis la fin de la nuit précédente.",
|
||||
"reminders": [
|
||||
"Anormal"
|
||||
|
@ -899,7 +899,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 58,
|
||||
"otherNight": 62,
|
||||
"otherNightReminder": "Indiquez si le Démon a voté ou non aujourd'hui.",
|
||||
"reminders": [
|
||||
"Démon Votant",
|
||||
|
@ -915,7 +915,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 59,
|
||||
"otherNight": 63,
|
||||
"otherNightReminder": "Indiquez si un Serviteur a lancé une accusation aujourd'hui",
|
||||
"reminders": [
|
||||
"A Accusé",
|
||||
|
@ -931,7 +931,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 60,
|
||||
"otherNight": 64,
|
||||
"otherNightReminder": "Indiquez combien de joueurs morts sont Mauvais.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -955,9 +955,9 @@
|
|||
"name": "Couturier",
|
||||
"edition": "snv",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 42,
|
||||
"firstNight": 45,
|
||||
"firstNightReminder": "Si le Couturier désigne 2 joueurs, indiquez si ces joueurs sont dans la même équipe.",
|
||||
"otherNight": 61,
|
||||
"otherNight": 65,
|
||||
"otherNightReminder": "Si le Couturier n'a pas encore utilisé son pouvoir et qu'il désigne 2 joueurs, indiquez si ces joueurs sont du même alignement.",
|
||||
"reminders": [
|
||||
"Épuisé"
|
||||
|
@ -972,7 +972,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 2,
|
||||
"firstNightReminder": "Le Philosophe choisit s'il souhaite utiliser son pouvoir. S'il le fait, il choisir un personnage Bon. Si ce personnage n'est pas en jeu, le philosophe gagne son pouvoir. Sinon, ce personnage devient Ivre.",
|
||||
"otherNight": 2,
|
||||
"otherNight": 3,
|
||||
"otherNightReminder": "S'il ne l'a pas encore fait, le Philosophe choisit s'il souhaite utiliser son pouvoir. S'il le fait, il choisit un personnage Bon. Si ce personnage n'est pas en jeu, le philosophe gagne son pouvoir. Sinon, ce personnage devient Ivre.",
|
||||
"reminders": [
|
||||
"Ivre",
|
||||
|
@ -1004,7 +1004,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 62,
|
||||
"otherNight": 66,
|
||||
"otherNightReminder": "Si aujourd'hui était la première journée du jongleur, indiquez-lui combien de ses prédictions étaient juste.",
|
||||
"reminders": [
|
||||
"Correct",
|
||||
|
@ -1020,7 +1020,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 43,
|
||||
"otherNight": 47,
|
||||
"otherNightReminder": "Si le sage a été tué par le Démon, indiquez-lui deux joueur dont l'un est le Démon.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1046,7 +1046,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 41,
|
||||
"otherNight": 46,
|
||||
"otherNightReminder": "Si le Bien-aimé est mort aujourd'hui, choisissez un joueur qui sera définitivement Ivre.",
|
||||
"reminders": [
|
||||
"Ivre définitif"
|
||||
|
@ -1061,7 +1061,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 40,
|
||||
"otherNight": 45,
|
||||
"otherNightReminder": "Si le Barbier est mort aujourd'hui, réveillez le Démon. Le Démon désigne 2 joueurs : reveillez ces joueurs et informez-les de leur nouveau personnage.",
|
||||
"reminders": [
|
||||
"Échanges"
|
||||
|
@ -1087,7 +1087,7 @@
|
|||
"name": "Jumeau maléfique",
|
||||
"edition": "snv",
|
||||
"team": "minion",
|
||||
"firstNight": 23,
|
||||
"firstNight": 24,
|
||||
"firstNightReminder": "Réveillez le Jumeau Maléfique et son Jumeau. Informez-les tous deux du rôle de l'autre.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1103,7 +1103,7 @@
|
|||
"name": "Sorcière",
|
||||
"edition": "snv",
|
||||
"team": "minion",
|
||||
"firstNight": 24,
|
||||
"firstNight": 25,
|
||||
"firstNightReminder": "S'il reste 4 joueurs ou plus en vie, la sorcière désigne un joueur. Si ce joueur accuse demain, il est exécuté.",
|
||||
"otherNight": 15,
|
||||
"otherNightReminder": "S'il reste 4 joueurs ou plus en vie, la sorcière désigne un joueur. Si ce joueur accuse demain, il est exécuté.",
|
||||
|
@ -1118,7 +1118,7 @@
|
|||
"name": "Cerenovus",
|
||||
"edition": "snv",
|
||||
"team": "minion",
|
||||
"firstNight": 25,
|
||||
"firstNight": 26,
|
||||
"firstNightReminder": "Le Cerenovus désigne un joueur et un personnage. Reveillez ce joueur. Informez-le qu'il est persuadé d'être ce personnage. S'il n'est pas convaincant, il peut être exécuté.",
|
||||
"otherNight": 16,
|
||||
"otherNightReminder": "Le Cerenovus désigne un joueur et un personnage. Reveillez ce joueur. Informez-le qu'il est persuadé d'être ce personnage. S'il n'est pas convaincant, il peut être exécuté.",
|
||||
|
@ -1148,7 +1148,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 29,
|
||||
"otherNight": 31,
|
||||
"otherNightReminder": "Le Fang Gu désigne un joueur. Si ce joueur n'est pas un Étranger, il meurt. Si ce personnage est un Étranger et qu'il n'y a qu'un seul Fang gu en jeu, le Fang Gu meurt à la place du joueur désigné. Le joueur désigné devient un Fang Gu et rejoint l'équipe des Mauvais. Réveillez le nouveau Fang Gu. Indiquez-lui son nouveau rôle.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -1166,7 +1166,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 32,
|
||||
"otherNight": 34,
|
||||
"otherNightReminder": "Le Vigormortis désigne un joueur. Ce joueur meurt. Si c'est un Serviteur, l'un de ses voisins Villageois est empoisonné.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -1183,7 +1183,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 30,
|
||||
"otherNight": 32,
|
||||
"otherNightReminder": "Le No Dashii désigne un joueur. Ce joueur meurt. Les voisins villageois du No Dashii sont empoisonnés.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -1199,7 +1199,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 31,
|
||||
"otherNight": 33,
|
||||
"otherNightReminder": "Le Vortox désigne un joueur. Ce joueur meurt.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -1214,7 +1214,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 1,
|
||||
"firstNightReminder": "Choisissez un joueur, reveillez-le et indiquez-lui s'il est soigné et l'esprit clair ou s'il bénéficie de double capacité. Traitez-le en conséquences.",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Choisissez un joueur, reveillez-le et indiquez-lui s'il est soigné et l'esprit clair ou s'il bénéficie de double capacité. Traitez-le en conséquences.",
|
||||
"reminders": [
|
||||
"Sobriété & Santé",
|
||||
|
@ -1230,7 +1230,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "La prosituée désigne un joueur puis s'endort. Reveillez le joueur désigné, informez-le qu'il a été désigné par la prostituée. Le joueur décide s'il accepte ou non de dévoiler son rôle au rique de mourrir. Vous décidez s'ils meurent tous les deux.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -1258,7 +1258,7 @@
|
|||
"team": "traveler",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 1,
|
||||
"otherNight": 2,
|
||||
"otherNightReminder": "Le Collecteur d'os peut, s'il n'a pas encore utilisé sa capacité, désigner un joueur mort. S'il le fait, le joueur désigné peut utiliser sa capacité jusqu'à la nuit prochaine. (Pensez à le reveiller si son pouvoir s'active la nuit).",
|
||||
"reminders": [
|
||||
"Épuisé",
|
||||
|
@ -1285,7 +1285,7 @@
|
|||
"name": "Noble",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 43,
|
||||
"firstNight": 48,
|
||||
"firstNightReminder": "Indiquez 3 joueurs dont un seul est Mauvais, sans ordre particulier.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1300,9 +1300,9 @@
|
|||
"name": "Mercenaire",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 45,
|
||||
"firstNight": 52,
|
||||
"firstNightReminder": "Indiquer au Mercenaire un joueur de l'équipe des Mauvais. Réveillez le Villageois qui fait partie des Mauvais pour l'informer qu'il est Mauvais.",
|
||||
"otherNight": 65,
|
||||
"otherNight": 70,
|
||||
"otherNightReminder": "Si le Mauvais connu par le Mercenaire est mort, informez-le d'un autre Mauvais.",
|
||||
"reminders": [
|
||||
"Connu"
|
||||
|
@ -1315,7 +1315,7 @@
|
|||
"name": "Pixie",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 29,
|
||||
"firstNight": 31,
|
||||
"firstNightReminder": "Indiquez à la Pixie le rôle d'un villageois déjà en jeu.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1331,9 +1331,9 @@
|
|||
"name": "Général",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 49,
|
||||
"firstNight": 57,
|
||||
"firstNightReminder": "Indiquez quelle équipe est selon vous en train de mener la partie : les Bons, les Mauvais ou personne.",
|
||||
"otherNight": 69,
|
||||
"otherNight": 76,
|
||||
"otherNightReminder": "Indiquez quelle équipe est selon vous en train de mener la partie : les Bons, les Mauvais ou personne.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1344,7 +1344,7 @@
|
|||
"name": "Prêcheur",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 14,
|
||||
"firstNight": 15,
|
||||
"firstNightReminder": "Le Prêcheur désigne un joueur. Si c'est un Serviteur, réveillez-le et indiquez lui qu'il a été démasqué par le Prêcheur. Le Serviteur perd ses capacités.",
|
||||
"otherNight": 7,
|
||||
"otherNightReminder": "Le Prêcheur désigne un joueur. Si c'est un Serviteur, réveillez-le et indiquez lui qu'il a été démasqué par le Prêcheur. Le Serviteur perd ses capacités.",
|
||||
|
@ -1359,9 +1359,9 @@
|
|||
"name": "Roi",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 9,
|
||||
"firstNight": 11,
|
||||
"firstNightReminder": "Informez le Démon de qui est le Roi.",
|
||||
"otherNight": 64,
|
||||
"otherNight": 69,
|
||||
"otherNightReminder": "S'il y a plus de joueurs morts que vivants, révélez au roi le personnage d'un joueur encore en vie.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1372,9 +1372,9 @@
|
|||
"name": "Montgolfier",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 44,
|
||||
"firstNight": 49,
|
||||
"firstNightReminder": "Choisissez un type de personnage. Indiquez au Montgolfier le personnage d'un joueur qui est de ce type. Marquez ce personnage comme vu par le Montgolfier.",
|
||||
"otherNight": 63,
|
||||
"otherNight": 67,
|
||||
"otherNightReminder": "Choisissez un type de personnage qui n'a pas encore été vu par le Montgolfier. Indiquez au Montgolfier un joueur dont le personnage est de ce type. Marquez ce type de personnage comme vu par le Montgolfier.",
|
||||
"reminders": [
|
||||
"Villageois vu",
|
||||
|
@ -1390,9 +1390,9 @@
|
|||
"name": "Gourou",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 47,
|
||||
"firstNight": 54,
|
||||
"firstNightReminder": "Si le Gourou change d'équipe, réveillez-le pour l'en informer.",
|
||||
"otherNight": 67,
|
||||
"otherNight": 72,
|
||||
"otherNightReminder": "Si le Gourou change d'équipe, réveillez-le pour l'en informer.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1405,7 +1405,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 23,
|
||||
"otherNight": 24,
|
||||
"otherNightReminder": "Le Lycanthrope désigne un joueur vivant : s'il est gentil, il meurt, et personne d'autre ne pourra mourir cette nuit.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -1418,9 +1418,9 @@
|
|||
"name": "Amnésique",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 12,
|
||||
"firstNight": 34,
|
||||
"firstNightReminder": "Décidez du pouvoir de l'Amnésique. Si sa capacité nécessite de le réveiller la nuit, réveillez l'Amnésique et faites-lui utiliser son pouvoir.",
|
||||
"otherNight": 5,
|
||||
"otherNight": 52,
|
||||
"otherNightReminder": "Si son pouvoir nécessite de le réveiller la nuit, réveillez l'Amnésique et faites-lui utiliser son pouvoir.",
|
||||
"reminders": [
|
||||
"?"
|
||||
|
@ -1433,9 +1433,9 @@
|
|||
"name": "Gardien de nuit",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 46,
|
||||
"firstNight": 53,
|
||||
"firstNightReminder": "Le Garde de nuit peut désigner un joueur. Reveillez ce joueur, indiquez lui que le garde de nuit se dévoile à lui.",
|
||||
"otherNight": 66,
|
||||
"otherNight": 71,
|
||||
"otherNightReminder": "Le Garde de nuit peut désigner un joueur. Reveillez ce joueur, indiquez lui que le garde de nuit se dévoile à lui.",
|
||||
"reminders": [
|
||||
"Épuisé"
|
||||
|
@ -1448,7 +1448,7 @@
|
|||
"name": "Ingénieur",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 13,
|
||||
"firstNight": 14,
|
||||
"firstNightReminder": "L'ingénieur décide s'il veut utiliser son pouvoir. S'il le fait, il désigne un personnage de Démon et autant de personnages de Serviteurs qu'il y en a en jeu. Remplacez les rôles des joueurs correspondants par les rôles désignés, puis réveillez-les un à un pour leur indiquer leurs nouveaux rôles.",
|
||||
"otherNight": 6,
|
||||
"otherNightReminder": "S'il ne l'a pas encore fait, l'Ingénieur décide s'il veut utiliser son pouvoir. S'il le fait, il désigne un personnage de Démon et autant de personnages de Serviteurs qu'il y en a en jeu. Remplacez les rôles des joueurs correspondants par les rôles désignés, puis réveillez-les un à un pour leur indiquer leurs nouveaux rôles.",
|
||||
|
@ -1479,9 +1479,9 @@
|
|||
"name": "Chasseur",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 30,
|
||||
"firstNight": 32,
|
||||
"firstNightReminder": "Le chasseur décide s'il souhaite utiliser sa compétence. S'il le fait : il désigne un joueur qu'il suppose être la demoiselle, s'il a raison, la demoiselle devient un villageois qui n'est pas encore en jeu.",
|
||||
"otherNight": 51,
|
||||
"otherNight": 50,
|
||||
"otherNightReminder": "S'il ne l'a pas encore fait, le chasseur décide s'il souhaite utiliser sa compétence. S'il le fait : il désigne un joueur qu'il suppose être la demoiselle, s'il a raison, la demoiselle devient un villageois qui n'est pas encore en jeu.",
|
||||
"reminders": [
|
||||
"Épuisé"
|
||||
|
@ -1494,7 +1494,7 @@
|
|||
"name": "Alchimiste",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 3,
|
||||
"firstNight": 4,
|
||||
"firstNightReminder": "Indiquez à l'alchimiste de quelle capacité il dispose.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "Si la capacité de l'alchimiste s'utilise la nuit, réveillez le.",
|
||||
|
@ -1510,7 +1510,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 46,
|
||||
"otherNight": 53,
|
||||
"otherNightReminder": "Si le Fermier est mort aujourd'hui, réveillez un villageois et indiquez-lui qu'il est devenu le Fermier.",
|
||||
"reminders": [],
|
||||
"setup": false,
|
||||
|
@ -1521,8 +1521,8 @@
|
|||
"name": "Magicien",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"firstNight": 6,
|
||||
"firstNightReminder": "Aux Serviteurs, montrez le Magicien comme un autre Démon. Au Démon, montrez le Magicien comme un autre Serviteur.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
"reminders": [],
|
||||
|
@ -1536,7 +1536,7 @@
|
|||
"team": "townsfolk",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 44,
|
||||
"otherNight": 49,
|
||||
"otherNightReminder": "Si le Roi a été tué par le Démon, réveillez l'Enfant de chœur et dévoilez-lui quel joueur est le Démon.",
|
||||
"reminders": [],
|
||||
"setup": true,
|
||||
|
@ -1547,9 +1547,9 @@
|
|||
"name": "Planteur de pavot",
|
||||
"edition": "",
|
||||
"team": "townsfolk",
|
||||
"firstNight": 4,
|
||||
"firstNight": 5,
|
||||
"firstNightReminder": "Ne donnez pas les informations sur leurs alliés au Démon et aux Serviteurs.",
|
||||
"otherNight": 3,
|
||||
"otherNight": 4,
|
||||
"otherNightReminder": "Si le Cultivateur de Pavot est mort, indiquez au Démon et à ses Serviteurs qui sont leurs alliés.",
|
||||
"reminders": [
|
||||
"Revélations",
|
||||
|
@ -1592,7 +1592,7 @@
|
|||
"name": "Cafteur",
|
||||
"edition": "",
|
||||
"team": "outsider",
|
||||
"firstNight": 6,
|
||||
"firstNight": 8,
|
||||
"firstNightReminder": "Reveillez les Serviteurs séparement et indiquez leur 3 personnages qui ne sont pas en jeu. Ces personnages peuvent différer ou être les mêmes que ceux montrés à d'autres Serviteurs et/ou au Démon.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1607,7 +1607,7 @@
|
|||
"team": "outsider",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 39,
|
||||
"otherNight": 43,
|
||||
"otherNightReminder": "Si l'un de ses bons voisins vivants est Ivre ou Empoisonné, l'Accrobate meurt.",
|
||||
"reminders": [
|
||||
"Mort"
|
||||
|
@ -1649,10 +1649,10 @@
|
|||
"name": "Demoiselle",
|
||||
"edition": "",
|
||||
"team": "outsider",
|
||||
"firstNight": 31,
|
||||
"firstNightReminder": "Réveillez tous les Serviteurs, informez les que la demoiselle est en jeu.",
|
||||
"otherNight": 52,
|
||||
"otherNightReminder": "Si sélectionnée par le chasseur, la demoiselle devient un villageois qui n'était pas en jeu.",
|
||||
"firstNight": 33,
|
||||
"firstNightReminder": "Si sélectionnée par le Chasseur, la demoiselle devient un Villageois qui n'était pas en jeu.",
|
||||
"otherNight": 51,
|
||||
"otherNightReminder": "Si sélectionnée par le Chasseur, la demoiselle devient un Villageois qui n'était pas en jeu.",
|
||||
"reminders": [
|
||||
"Épuisé"
|
||||
],
|
||||
|
@ -1692,7 +1692,7 @@
|
|||
"name": "Veuve",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 18,
|
||||
"firstNight": 19,
|
||||
"firstNightReminder": "Montrez le grimmoire à la Veuve aussi longtemps qu'elle le souhaite. La Veuve désigne un joueur. Ce joueur est empoisonné. Reveillez un joueur Bon. Indiquez-lui qu'il y a une Veuve dans la partie.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1710,9 +1710,9 @@
|
|||
"name": "Semeur de peur",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 26,
|
||||
"firstNight": 27,
|
||||
"firstNightReminder": "Le Semeur de peur désigne un joueur. Placez le marqueur 'Peur' sur le joueur désigné.",
|
||||
"otherNight": 17,
|
||||
"otherNight": 18,
|
||||
"otherNightReminder": "Le Semeur de peur désigne un joueur. Si le joueur désigné n'est plus le même que la nuit précédente, déplacez le marqueur 'Peur'.",
|
||||
"reminders": [
|
||||
"Peur"
|
||||
|
@ -1753,9 +1753,9 @@
|
|||
"name": "Méphite",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 27,
|
||||
"firstNight": 29,
|
||||
"firstNightReminder": "Indiquez au Mephit son mot secret.",
|
||||
"otherNight": 18,
|
||||
"otherNight": 20,
|
||||
"otherNightReminder": "Si un joueur Bon a pronnoncé le mot secret aujourd'hui, réveillez-le et informez-le qu'il fait maintenant partie de l'équipe des Mauvais.",
|
||||
"reminders": [
|
||||
"Mauvais",
|
||||
|
@ -1769,9 +1769,9 @@
|
|||
"name": "Mezepheles",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 27,
|
||||
"firstNight": 29,
|
||||
"firstNightReminder": "Indiquez au Mezepheles son mot secret.",
|
||||
"otherNight": 18,
|
||||
"otherNight": 20,
|
||||
"otherNightReminder": "Si un joueur Bon a pronnoncé le mot secret aujourd'hui, réveillez-le et informez-le qu'il fait maintenant partie de l'équipe des Mauvais.",
|
||||
"reminders": [
|
||||
"Mauvais",
|
||||
|
@ -1785,7 +1785,7 @@
|
|||
"name": "Marionnette",
|
||||
"edition": "",
|
||||
"team": "minion",
|
||||
"firstNight": 11,
|
||||
"firstNight": 13,
|
||||
"firstNightReminder": "Selectionnez un Bon joueur, voisin du Démon et marquez le comme Marionnette. Reveillez le Démon et indiquez lui qui est la Marionette.",
|
||||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
|
@ -1832,7 +1832,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 16,
|
||||
"firstNightReminder": "Réveillez tous les Serviteurs ensemble, faites-les voter pour désigner quel joueur baby-sitte le Bébé Monstre.",
|
||||
"otherNight": 36,
|
||||
"otherNight": 38,
|
||||
"otherNightReminder": "Réveillez tous les Serviteurs ensemble, faites-les voter pour désigner quel joueur baby-sitte le Bébé Monstre. Choisissez un joueur, il meurt.",
|
||||
"reminders": [],
|
||||
"remindersGlobal": [
|
||||
|
@ -1847,9 +1847,9 @@
|
|||
"name": "Sangsue",
|
||||
"edition": "",
|
||||
"team": "demon",
|
||||
"firstNight": 15,
|
||||
"firstNight": 17,
|
||||
"firstNightReminder": "La Sangue désigne un joueur. Ce joueur est empoisonné.",
|
||||
"otherNight": 35,
|
||||
"otherNight": 37,
|
||||
"otherNightReminder": "La Sangsue désigne un joueur. Ce joueur meurt.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -1865,7 +1865,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 33,
|
||||
"otherNight": 36,
|
||||
"otherNightReminder": "Le Al-Hadikhia désigne 3 joueurs. Annoncez à chacun des joueurs désignés, dans l'ordre et individuellement la liste des désignés, et demandez leur s'ils veulent vivre ou mourir. A la fin des décisions, chaque joueur devient vivant ou mort conformément à son choix. Si les joueurs ont tous les 3 choisi de vivre, ils meurent tous les 3.",
|
||||
"reminders": [
|
||||
"1",
|
||||
|
@ -1884,7 +1884,7 @@
|
|||
"team": "demon",
|
||||
"firstNight": 0,
|
||||
"firstNightReminder": "",
|
||||
"otherNight": 34,
|
||||
"otherNight": 25,
|
||||
"otherNightReminder": "Vous pouvez choisir un joueur, Ce joueur meurt.",
|
||||
"reminders": [
|
||||
"Mort",
|
||||
|
@ -1898,9 +1898,9 @@
|
|||
"name": "Léviathan",
|
||||
"edition": "",
|
||||
"team": "demon",
|
||||
"firstNight": 53,
|
||||
"firstNight": 61,
|
||||
"firstNightReminder": "Placez le marqueur 'Jour 1'. Annoncez 'Il y a un Léviathan en jeu; Ceci est votre premier jour.'",
|
||||
"otherNight": 73,
|
||||
"otherNight": 80,
|
||||
"otherNightReminder": "Changez le marqueur de jour du Léviathan.",
|
||||
"reminders": [
|
||||
"Joueur Bon Exécuté"
|
||||
|
|
|
@ -200,9 +200,14 @@
|
|||
"firstNight": "Première Nuit",
|
||||
"otherNights": "Autres Nuits",
|
||||
"minionInfo": "Informations Serviteurs",
|
||||
"minionInfoDescription": "• S'il y a plusieurs Serviteurs, ils apprennent qui sont les autres Serviteurs. • Indiquez aux Serviteurs qui est le Démon.",
|
||||
"minionInfoDescription": "S'il y a plusieurs Serviteurs, ils apprennent qui sont les autres Serviteurs. Indiquez aux Serviteurs qui est le Démon.",
|
||||
"demonInfo": "Info & Bluffs Démon",
|
||||
"demonInfoDescription": "• Indiquez au Démon qui sont ses serviteurs.• Indiquez les rôles de 3 personnages Bons qui ne sont pas en jeu."
|
||||
"demonInfoDescription": "Indiquez au Démon qui sont ses serviteurs. Indiquez les rôles de 3 personnages bons qui ne sont pas en jeu.",
|
||||
"dawn": "Matin",
|
||||
"dawnDescription1": "Réveillez les joueurs.",
|
||||
"dawnDescription2": "Réveillez les joueurs, puis annoncez qui est mort cette nuit",
|
||||
"dusk": "Tombée de la nuit",
|
||||
"duskDescription": "Terminez la journée, et endormez les joueurs."
|
||||
},
|
||||
"reference": {
|
||||
"title": "Réference de rôles",
|
||||
|
|
|
@ -28,33 +28,33 @@ const getters = {
|
|||
nightOrder({ players, fabled }) {
|
||||
const firstNight = [0];
|
||||
const otherNight = [0];
|
||||
players.forEach(({ role }) => {
|
||||
if (role.firstNight && !firstNight.includes(role.firstNight)) {
|
||||
firstNight.push(role.firstNight);
|
||||
}
|
||||
if (role.otherNight && !otherNight.includes(role.otherNight)) {
|
||||
otherNight.push(role.otherNight);
|
||||
}
|
||||
});
|
||||
fabled.forEach((role) => {
|
||||
if (role.firstNight && !firstNight.includes(role.firstNight)) {
|
||||
firstNight.push(role.firstNight);
|
||||
if (role.firstNight && !firstNight.includes(role)) {
|
||||
firstNight.push(role);
|
||||
}
|
||||
if (role.otherNight && !otherNight.includes(role.otherNight)) {
|
||||
otherNight.push(role.otherNight);
|
||||
if (role.otherNight && !otherNight.includes(role)) {
|
||||
otherNight.push(role);
|
||||
}
|
||||
});
|
||||
firstNight.sort((a, b) => a - b);
|
||||
otherNight.sort((a, b) => a - b);
|
||||
players.forEach(({ role }) => {
|
||||
if (role.firstNight && !firstNight.includes(role)) {
|
||||
firstNight.push(role);
|
||||
}
|
||||
if (role.otherNight && !otherNight.includes(role)) {
|
||||
otherNight.push(role);
|
||||
}
|
||||
});
|
||||
firstNight.sort((a, b) => a.firstNight - b.firstNight);
|
||||
otherNight.sort((a, b) => a.otherNight - b.otherNight);
|
||||
const nightOrder = new Map();
|
||||
players.forEach((player) => {
|
||||
const first = Math.max(firstNight.indexOf(player.role.firstNight), 0);
|
||||
const other = Math.max(otherNight.indexOf(player.role.otherNight), 0);
|
||||
const first = Math.max(firstNight.indexOf(player.role), 0);
|
||||
const other = Math.max(otherNight.indexOf(player.role), 0);
|
||||
nightOrder.set(player, { first, other });
|
||||
});
|
||||
fabled.forEach((role) => {
|
||||
const first = Math.max(firstNight.indexOf(role.firstNight), 0);
|
||||
const other = Math.max(otherNight.indexOf(role.otherNight), 0);
|
||||
const first = Math.max(firstNight.indexOf(role), 0);
|
||||
const other = Math.max(otherNight.indexOf(role), 0);
|
||||
nightOrder.set(role, { first, other });
|
||||
});
|
||||
return nightOrder;
|
||||
|
|
|
@ -4,3 +4,4 @@ $outsider: #46d5ff;
|
|||
$minion: #ff6900;
|
||||
$demon: #ce0100;
|
||||
$traveler: #cc04ff;
|
||||
$default: #4E4E4E;
|
||||
|
|
Loading…
Add table
Reference in a new issue