mirror of https://github.com/bra1n/townsquare.git
added firstNightReminder for demon/minion info on night order modal
This commit is contained in:
parent
1f445b59e1
commit
429bcb8cfc
|
@ -117,14 +117,21 @@ export default {
|
||||||
name: "Minion info",
|
name: "Minion info",
|
||||||
firstNight: 2,
|
firstNight: 2,
|
||||||
team: "minion",
|
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",
|
id: "evil",
|
||||||
name: "Demon info & bluffs",
|
name: "Demon info & bluffs",
|
||||||
firstNight: 4,
|
firstNight: 4,
|
||||||
team: "demon",
|
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."
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue