Add support for new bonuses
This commit is contained in:
parent
2d73d969b9
commit
1d8c1dea3c
2 changed files with 3 additions and 1 deletions
|
|
@ -36,8 +36,10 @@
|
|||
'bonus3e': bonusesPool[role] && bonusesPool[role].units === 3 && bonusesPool[role].maxUnits === 3,
|
||||
'bonus4': bonusesPool[role] && bonusesPool[role].units === 4 && bonusesPool[role].maxUnits !== 4,
|
||||
'bonus4e': bonusesPool[role] && bonusesPool[role].units === 4 && bonusesPool[role].maxUnits === 4,
|
||||
'bonus5': bonusesPool[role] && bonusesPool[role].units === 5,
|
||||
'bonus6': bonusesPool[role] && bonusesPool[role].units === 6 && bonusesPool[role].maxUnits !== 6,
|
||||
'bonus6e': bonusesPool[role] && bonusesPool[role].units === 6 && bonusesPool[role].maxUnits === 6,
|
||||
'bonus8': bonusesPool[role] && bonusesPool[role].units === 8,
|
||||
'bonus9': bonusesPool[role] && bonusesPool[role].units === 9
|
||||
}">
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@
|
|||
filter: invert(71%) sepia(53%) saturate(336%) hue-rotate(10deg) brightness(94%) contrast(89%);
|
||||
}
|
||||
|
||||
.bonus1e, .bonus2e, .bonus3e, .bonus4e, .bonus6e, .bonus9{
|
||||
.bonus1e, .bonus2e, .bonus3e, .bonus4e, .bonus5, .bonus6e, .bonus8, .bonus9{
|
||||
filter: invert(16%) sepia(29%) saturate(6804%) hue-rotate(349deg) brightness(87%) contrast(124%);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue