From 429bcb8cfcdbceb5552d9c9b0d1bcd81e0d416cb Mon Sep 17 00:00:00 2001 From: Steffen Date: Sat, 6 Feb 2021 21:11:43 +0100 Subject: [PATCH] added firstNightReminder for demon/minion info on night order modal --- src/components/modals/NightOrderModal.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/modals/NightOrderModal.vue b/src/components/modals/NightOrderModal.vue index 9d0ee4f..5f8d2e1 100644 --- a/src/components/modals/NightOrderModal.vue +++ b/src/components/modals/NightOrderModal.vue @@ -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." } ); }