mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
Showing pertinent Fabled during setup (#201)
Showing Fabled which impact setup
This commit is contained in:
parent
c74626db6d
commit
d35b4b59c2
2 changed files with 30 additions and 2 deletions
|
@ -1,12 +1,15 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
## Upcoming version
|
## Upcoming version
|
||||||
|
|
||||||
- Adding some special votes
|
- Adding some special votes
|
||||||
- Automatic Djinn and Bootlegger
|
- Automatic Djinn and Bootlegger
|
||||||
- Updating night order
|
- Updating night order
|
||||||
- Updating jinxes
|
- Updating jinxes
|
||||||
|
- Showing pertinent Fabled during setup
|
||||||
|
|
||||||
### Version 3.20.1
|
### Version 3.20.1
|
||||||
|
|
||||||
- Inconsistancies in french translations for "Power" & "Character"
|
- Inconsistancies in french translations for "Power" & "Character"
|
||||||
|
|
||||||
### Version 3.20.0
|
### Version 3.20.0
|
||||||
|
|
|
@ -34,7 +34,17 @@
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="warning" v-if="hasSelectedSetupRoles">
|
<ul class="tokens">
|
||||||
|
<li
|
||||||
|
v-for="role in fabledWithSetup"
|
||||||
|
:class="['fabled', 'selected']"
|
||||||
|
:key="role.id"
|
||||||
|
>
|
||||||
|
<Token :role="role" />
|
||||||
|
<font-awesome-icon icon="exclamation-triangle" />
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="warning" v-if="hasSelectedSetupRoles || fabledWithSetup.length">
|
||||||
<font-awesome-icon icon="exclamation-triangle" />
|
<font-awesome-icon icon="exclamation-triangle" />
|
||||||
<span>{{ locale.modal.roles.warning }}</span>
|
<span>{{ locale.modal.roles.warning }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -97,8 +107,18 @@ export default {
|
||||||
roles.some((role) => role.selected && role.setup),
|
roles.some((role) => role.selected && role.setup),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
fabledWithSetup: function () {
|
||||||
|
const { fabled } = this.$store.state.players;
|
||||||
|
let res = [];
|
||||||
|
for (let i = 0; i < fabled.length; i++) {
|
||||||
|
if (fabled[i].setup) {
|
||||||
|
res.push(fabled[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
},
|
||||||
...mapState(["roles", "modals", "locale"]),
|
...mapState(["roles", "modals", "locale"]),
|
||||||
...mapState("players", ["players"]),
|
...mapState("players", ["players", "fabled"]),
|
||||||
...mapGetters({ nonTravelers: "players/nonTravelers" }),
|
...mapGetters({ nonTravelers: "players/nonTravelers" }),
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -214,6 +234,11 @@ ul.tokens {
|
||||||
0 0 10px $traveler,
|
0 0 10px $traveler,
|
||||||
0 0 10px $traveler;
|
0 0 10px $traveler;
|
||||||
}
|
}
|
||||||
|
&.fabled {
|
||||||
|
box-shadow:
|
||||||
|
0 0 10px $fabled,
|
||||||
|
0 0 10px $fabled;
|
||||||
|
}
|
||||||
&:hover {
|
&:hover {
|
||||||
transform: scale(1.2);
|
transform: scale(1.2);
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
|
|
Loading…
Add table
Reference in a new issue