added firstNightReminder for demon/minion info on night order modal

This commit is contained in:
Steffen 2021-02-06 21:11:43 +01:00
parent 1f445b59e1
commit 429bcb8cfc
1 changed files with 9 additions and 2 deletions

View File

@ -117,14 +117,21 @@ export default {
name: "Minion info",
firstNight: 2,
team: "minion",
players: this.players.filter(p => p.role.team === "minion")
players: this.players.filter(p => p.role.team === "minion"),
firstNightReminder:
"• If more than one Minion, they all make eye contact with each other. " +
"• Show the “This is the Demon” card. Point to the Demon."
},
{
id: "evil",
name: "Demon info & bluffs",
firstNight: 4,
team: "demon",
players: this.players.filter(p => p.role.team === "demon")
players: this.players.filter(p => p.role.team === "demon"),
firstNightReminder:
"• 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."
}
);
}