Using official generic icons as default icons for custom roles (#203)
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
## Upcoming version
|
## Upcoming version
|
||||||
|
|
||||||
|
- Using official generic icons as default custom icons
|
||||||
- Unique night order bubble for each player with the same role
|
- Unique night order bubble for each player with the same role
|
||||||
- Adding some special votes
|
- Adding some special votes
|
||||||
- Automatic Djinn and Bootlegger
|
- Automatic Djinn and Bootlegger
|
||||||
|
|
BIN
src/assets/icons/demon.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
src/assets/icons/fabled.png
Normal file
After Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 102 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 103 KiB |
BIN
src/assets/icons/townsfolk.png
Normal file
After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 103 KiB |
|
@ -238,11 +238,11 @@ export default new Vuex.Store({
|
||||||
if (rolesJSONbyId.get(role.id)) return role;
|
if (rolesJSONbyId.get(role.id)) return role;
|
||||||
role.imageAlt = // map team to generic icon
|
role.imageAlt = // map team to generic icon
|
||||||
{
|
{
|
||||||
townsfolk: "good",
|
townsfolk: "townsfolk",
|
||||||
outsider: "outsider",
|
outsider: "outsider",
|
||||||
minion: "minion",
|
minion: "minion",
|
||||||
demon: "evil",
|
demon: "demon",
|
||||||
fabled: "bootlegger",
|
fabled: "fabled",
|
||||||
traveler: "traveler",
|
traveler: "traveler",
|
||||||
}[role.team] || "custom";
|
}[role.team] || "custom";
|
||||||
role.firstNight = Math.abs(role.firstNight);
|
role.firstNight = Math.abs(role.firstNight);
|
||||||
|
|