Using official generic icons as default icons for custom roles (#203)

This commit is contained in:
MRegnard 2024-12-04 21:21:14 +01:00 committed by GitHub
parent f80ab9e68f
commit 2e3c5abcb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,7 @@
## Upcoming version
- Using official generic icons as default custom icons
- Unique night order bubble for each player with the same role
- Adding some special votes
- Automatic Djinn and Bootlegger

BIN
src/assets/icons/demon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
src/assets/icons/fabled.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 103 KiB

View file

@ -238,11 +238,11 @@ export default new Vuex.Store({
if (rolesJSONbyId.get(role.id)) return role;
role.imageAlt = // map team to generic icon
{
townsfolk: "good",
townsfolk: "townsfolk",
outsider: "outsider",
minion: "minion",
demon: "evil",
fabled: "bootlegger",
demon: "demon",
fabled: "fabled",
traveler: "traveler",
}[role.team] || "custom";
role.firstNight = Math.abs(role.firstNight);