Printing the number of alive no-Travellers (#90)

This commit is contained in:
MRegnard 2023-07-05 18:31:48 +02:00 committed by GitHub
parent acab4147e4
commit 092d77386c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 9 deletions

View file

@ -2,17 +2,9 @@
======
### Version 3.11.7
Printing the number of alive non-Travellers
Adding the picture leaf-top6.png
---
### Version 3.11.6
Some corrections in the jinxes (in French)
---
### Version 3.11.5
Correcting Atheist's french description
---

View file

@ -26,6 +26,10 @@
{{ teams.alive }}
<font-awesome-icon class="alive" icon="heartbeat" />
</span>
<span v-if="teams.traveler > 0">
{{ teams.aliveNT }}
<font-awesome-icon class="alive" icon="house-user" />
</span>
<span>
{{ teams.votes }} <font-awesome-icon class="votes" icon="vote-yea" />
</span>
@ -102,10 +106,14 @@ export default {
const { players } = this.$store.state.players;
const nonTravelers = this.$store.getters["players/nonTravelers"];
const alive = players.filter(player => player.isDead !== true).length;
const aliveNT = players.filter(
player => player.isDead !== true && player.role.team !== "traveler"
).length;
return {
...gameJSON[nonTravelers - 5],
traveler: players.length - nonTravelers,
alive,
aliveNT,
votes:
alive +
players.filter(

View file

@ -27,6 +27,7 @@ const faIcons = [
"HandPaper",
"HandPointRight",
"Heartbeat",
"HouseUser",
"Image",
"Link",
"MinusCircle",