mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-03 21:54: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
|
||||
|
||||
- Clearer and more efficient print for the votes hidden by Organ Grinder
|
||||
- Using official generic icons as default custom icons
|
||||
- Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon"
|
||||
- Unique night order bubble for each player with the same role
|
||||
|
|
|
@ -142,7 +142,10 @@
|
|||
|
||||
<!-- On block icon -->
|
||||
<div class="marked">
|
||||
<font-awesome-icon icon="skull" />
|
||||
<font-awesome-icon
|
||||
icon="skull"
|
||||
v-if="!(this.session.isSpectator && grimoire.isOrganVoteMode)"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
class="name"
|
||||
|
|
|
@ -49,6 +49,17 @@
|
|||
</em>
|
||||
|
||||
<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">
|
||||
{{ locale.vote.timePerPlayer }}
|
||||
<font-awesome-icon
|
||||
|
@ -371,6 +382,9 @@ export default {
|
|||
&.blue {
|
||||
color: $townsfolk;
|
||||
}
|
||||
&.orange {
|
||||
color: $minion;
|
||||
}
|
||||
}
|
||||
|
||||
svg {
|
||||
|
|
|
@ -1920,7 +1920,6 @@
|
|||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
"reminders": [
|
||||
"About to die",
|
||||
"Used vote"
|
||||
],
|
||||
"setup": false,
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
"votes": "votes",
|
||||
"inFavor": "in favor",
|
||||
"majorityIs": "majority is",
|
||||
"secretBallot": "Voting is by secret ballot.",
|
||||
"timePerPlayer": "Time per player:",
|
||||
"countdown": "Countdown",
|
||||
"restart": "Restart",
|
||||
|
|
|
@ -1924,7 +1924,6 @@
|
|||
"otherNight": 0,
|
||||
"otherNightReminder": "",
|
||||
"reminders": [
|
||||
"Condamné",
|
||||
"Vote utilisé"
|
||||
],
|
||||
"setup": false,
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
"votes": "votes",
|
||||
"inFavor": "pour",
|
||||
"majorityIs": "majorité à",
|
||||
"secretBallot": "Les votes ont lieu à bulletin secret.",
|
||||
"timePerPlayer": "Temps par Joueur :",
|
||||
"countdown": "Compte à rebours",
|
||||
"restart": "Relancer",
|
||||
|
|
Loading…
Add table
Reference in a new issue