Using official generic icons as default icons for custom roles (#203)
|
@ -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
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;
|
||||
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);
|
||||
|
|