mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
Updating the Organ Grinder Vote Mode (#205)
* Update CHANGELOG.md * Hidding the skulls for player, if the option "Organ Grinder Vote" is ON. * Adding a message for the ST, if the option "Organ Grinder Vote" is ON. * Correcting spaces typos * Adding the french version of the message for ST * Adding the english version of the message for the ST * Deleting an OG reminder (EN) This reminder was previously used to ignore the issue of the skulls visible by players. Now that this issue is corrected, this token is useless. * Deleting an OG reminder (FR) This reminder was previously used to ignore the issue of the skulls visible by players. Now that this issue is corrected, this token is useless. * Some corrections for the linter * Some corrections for the linter * Corrections for the linter --------- Co-authored-by: Pingumask <68610022+Pingumask@users.noreply.github.com>
This commit is contained in:
parent
01d02f6bc4
commit
81b5d0985c
7 changed files with 21 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
## Upcoming version
|
## Upcoming version
|
||||||
|
|
||||||
|
- Clearer and more efficient print for the votes hidden by Organ Grinder
|
||||||
- Using official generic icons as default custom icons
|
- Using official generic icons as default custom icons
|
||||||
- Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon"
|
- Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon"
|
||||||
- Unique night order bubble for each player with the same role
|
- Unique night order bubble for each player with the same role
|
||||||
|
|
|
@ -142,7 +142,10 @@
|
||||||
|
|
||||||
<!-- On block icon -->
|
<!-- On block icon -->
|
||||||
<div class="marked">
|
<div class="marked">
|
||||||
<font-awesome-icon icon="skull" />
|
<font-awesome-icon
|
||||||
|
icon="skull"
|
||||||
|
v-if="!(this.session.isSpectator && grimoire.isOrganVoteMode)"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="name"
|
class="name"
|
||||||
|
|
|
@ -49,6 +49,17 @@
|
||||||
</em>
|
</em>
|
||||||
|
|
||||||
<template v-if="!session.isSpectator">
|
<template v-if="!session.isSpectator">
|
||||||
|
<br />
|
||||||
|
<em
|
||||||
|
class="orange"
|
||||||
|
v-if="
|
||||||
|
grimoire.isOrganVoteMode &&
|
||||||
|
((nominee && nominee.role.team !== 'traveler') ||
|
||||||
|
typeof session.nomination[1] == 'string')
|
||||||
|
"
|
||||||
|
>
|
||||||
|
{{ locale.vote.secretBallot }}
|
||||||
|
</em>
|
||||||
<div v-if="!session.isVoteInProgress && session.lockedVote < 1">
|
<div v-if="!session.isVoteInProgress && session.lockedVote < 1">
|
||||||
{{ locale.vote.timePerPlayer }}
|
{{ locale.vote.timePerPlayer }}
|
||||||
<font-awesome-icon
|
<font-awesome-icon
|
||||||
|
@ -371,6 +382,9 @@ export default {
|
||||||
&.blue {
|
&.blue {
|
||||||
color: $townsfolk;
|
color: $townsfolk;
|
||||||
}
|
}
|
||||||
|
&.orange {
|
||||||
|
color: $minion;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
|
|
|
@ -1920,7 +1920,6 @@
|
||||||
"otherNight": 0,
|
"otherNight": 0,
|
||||||
"otherNightReminder": "",
|
"otherNightReminder": "",
|
||||||
"reminders": [
|
"reminders": [
|
||||||
"About to die",
|
|
||||||
"Used vote"
|
"Used vote"
|
||||||
],
|
],
|
||||||
"setup": false,
|
"setup": false,
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
"votes": "votes",
|
"votes": "votes",
|
||||||
"inFavor": "in favor",
|
"inFavor": "in favor",
|
||||||
"majorityIs": "majority is",
|
"majorityIs": "majority is",
|
||||||
|
"secretBallot": "Voting is by secret ballot.",
|
||||||
"timePerPlayer": "Time per player:",
|
"timePerPlayer": "Time per player:",
|
||||||
"countdown": "Countdown",
|
"countdown": "Countdown",
|
||||||
"restart": "Restart",
|
"restart": "Restart",
|
||||||
|
|
|
@ -1924,7 +1924,6 @@
|
||||||
"otherNight": 0,
|
"otherNight": 0,
|
||||||
"otherNightReminder": "",
|
"otherNightReminder": "",
|
||||||
"reminders": [
|
"reminders": [
|
||||||
"Condamné",
|
|
||||||
"Vote utilisé"
|
"Vote utilisé"
|
||||||
],
|
],
|
||||||
"setup": false,
|
"setup": false,
|
||||||
|
|
|
@ -76,6 +76,7 @@
|
||||||
"votes": "votes",
|
"votes": "votes",
|
||||||
"inFavor": "pour",
|
"inFavor": "pour",
|
||||||
"majorityIs": "majorité à",
|
"majorityIs": "majorité à",
|
||||||
|
"secretBallot": "Les votes ont lieu à bulletin secret.",
|
||||||
"timePerPlayer": "Temps par Joueur :",
|
"timePerPlayer": "Temps par Joueur :",
|
||||||
"countdown": "Compte à rebours",
|
"countdown": "Compte à rebours",
|
||||||
"restart": "Relancer",
|
"restart": "Relancer",
|
||||||
|
|
Loading…
Add table
Reference in a new issue