mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
* header revamp - wip * fix webpack fonts * wip icons * fix compilation errors * implement icons loading without iconmoo * new svg implementation * wip * fix issues with svgs * fix issues with svgs * fix bits svg * fix displaying of pet in avatar * avatar class icon * no party header * update navigation * split code by route * round gems and gp * add string for faqs * fix icons in css
8 lines
No EOL
224 B
JavaScript
8 lines
No EOL
224 B
JavaScript
export function gems (store) {
|
|
return store.state.user.data.balance * 4;
|
|
}
|
|
|
|
export function isBuffed (store) {
|
|
const buffs = store.state.user.data.stats.buffs;
|
|
return buffs.str || buffs.per || buffs.con || buffs.int;
|
|
} |