diff --git a/CHANGELOG.md b/CHANGELOG.md index f714297..6470ee3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Release Notes ## Upcoming version - +- Adding some special votes - Automatic Djinn and Bootlegger ### Version 3.20.1 diff --git a/src/App.vue b/src/App.vue index d71dfac..2525f03 100644 --- a/src/App.vue +++ b/src/App.vue @@ -34,6 +34,7 @@ + v{{ version }} @@ -55,6 +56,7 @@ import NightOrderModal from "./components/modals/NightOrderModal"; import FabledModal from "@/components/modals/FabledModal"; import VoteHistoryModal from "@/components/modals/VoteHistoryModal"; import GameStateModal from "@/components/modals/GameStateModal"; +import SpecialVoteModal from "@/components/modals/SpecialVoteModal"; export default { components: { @@ -71,6 +73,7 @@ export default { EditionModal, RolesModal, Gradients, + SpecialVoteModal, }, computed: { ...mapState(["grimoire", "session", "edition"]), diff --git a/src/components/Player.vue b/src/components/Player.vue index 393d213..6e6615c 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -53,6 +53,7 @@ +
  • +
  • + +
  • @@ -124,7 +133,7 @@ export default { countdownStyle: function () { return `--timer: ${this.$store.state.grimoire.timer.duration}`; }, - ...mapState(["edition", "grimoire", "locale"]), + ...mapState(["edition", "grimoire", "locale", "session"]), ...mapState("players", ["players"]), }, }; @@ -212,4 +221,18 @@ export default { top: -50%; } } + +.marked { + opacity: 0.5; + position: absolute; + svg { + height: 80px; + width: 80px; + stroke: white; + stroke-width: 15px; + path { + fill: white; + } + } +} diff --git a/src/components/TownSquare.vue b/src/components/TownSquare.vue index 5df095d..a35ba63 100644 --- a/src/components/TownSquare.vue +++ b/src/components/TownSquare.vue @@ -82,13 +82,31 @@
    -
    +
    {{ locale.townsquare.timer.accusation.button }}
    -
    +
    + {{ session.nomination[1][2] }} +
    +
    {{ locale.townsquare.timer.defense.button }}
    -
    +
    + {{ locale.townsquare.timer.debate.button }} +
    +
    {{ locale.townsquare.timer.debate.button }}
    @@ -389,16 +407,38 @@ export default { this.timerDuration = 1; let timerText = this.locale.townsquare.timer.accusation.text; timerText = timerText - .replace("$accusator", this.players[this.session.nomination[0]].name) - .replace("$accusee", this.players[this.session.nomination[1]].name); + .replace( + "$accusator", + typeof this.session.nomination[0] == "number" + ? this.players[this.session.nomination[0]].name + : this.session.nomination[0][0].toUpperCase() + + this.session.nomination[0].slice(1), + ) + .replace( + "$accusee", + typeof this.session.nomination[1] == "number" + ? this.players[this.session.nomination[1]].name + : this.session.nomination[1], + ); this.timerName = timerText; }, setDefenseTimer() { this.timerDuration = 1; let timerText = this.locale.townsquare.timer.defense.text; timerText = timerText - .replace("$accusee", this.players[this.session.nomination[1]].name) - .replace("$accusator", this.players[this.session.nomination[0]].name); + .replace( + "$accusee", + typeof this.session.nomination[1] == "number" + ? this.players[this.session.nomination[1]].name + : this.session.nomination[1][0].toUpperCase() + + this.session.nomination[1].slice(1), + ) + .replace( + "$accusator", + typeof this.session.nomination[0] == "number" + ? this.players[this.session.nomination[0]].name + : this.session.nomination[0], + ); this.timerName = timerText; }, setDebateTimer() { @@ -406,7 +446,26 @@ export default { let timerText = this.locale.townsquare.timer.debate.text; timerText = timerText.replace( "$accusee", - this.players[this.session.nomination[1]].name, + typeof this.session.nomination[1] == "number" + ? this.players[this.session.nomination[1]].name + : this.session.nomination[1], + ); + this.timerName = timerText; + }, + setSpecialVoteTimer() { + this.timerDuration = 1; + let timerText = + this.players[this.session.nomination[0]].name + + " " + + this.session.nomination[1][0]; + this.timerName = timerText; + }, + setSpecialDebateTimer() { + this.timerDuration = 2; + let timerText = this.session.nomination[1][1]; + timerText = timerText.replace( + "$player", + this.players[this.session.nomination[0]].name, ); this.timerName = timerText; }, diff --git a/src/components/Vote.vue b/src/components/Vote.vue index 2d69302..dd159a3 100644 --- a/src/components/Vote.vue +++ b/src/components/Vote.vue @@ -1,25 +1,34 @@