mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-28 05:45:36 +00:00
42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
|
|
h4 Items
|
||
|
|
p
|
||
|
|
strong {{itemText('weapon',profile.items.weapon)}}
|
||
|
|
| : {{itemStat('weapon',profile.items.weapon)}}% Exp gain
|
||
|
|
p
|
||
|
|
strong {{itemText('armor',profile.items.armor)}}
|
||
|
|
| : {{itemStat('armor',profile.items.armor)}}% Defense
|
||
|
|
p
|
||
|
|
strong {{itemText('head',profile.items.head)}}
|
||
|
|
| : {{itemStat('head',profile.items.head)}}% Defense
|
||
|
|
p
|
||
|
|
strong {{itemText('shield',profile.items.shield)}}
|
||
|
|
| : {{itemStat('shield',profile.items.shield)}}% Defense
|
||
|
|
h4 Stats
|
||
|
|
p
|
||
|
|
strong HP
|
||
|
|
| : {{profile.stats.hp | number:0}} / 50
|
||
|
|
p
|
||
|
|
strong GP
|
||
|
|
| : {{profile.stats.gp | number:0}}
|
||
|
|
p
|
||
|
|
strong Lvl
|
||
|
|
| : {{profile.stats.lvl}}
|
||
|
|
p
|
||
|
|
strong Exp
|
||
|
|
| : {{profile.stats.exp | number:0}} / {{tnl(profile.stats.lvl)}}
|
||
|
|
p
|
||
|
|
strong Strength
|
||
|
|
| : {{userStr(profile.stats.lvl)}}
|
||
|
|
p
|
||
|
|
strong Defense
|
||
|
|
| : {{userDef(profile.stats.lvl)}}
|
||
|
|
p
|
||
|
|
strong Pets Found
|
||
|
|
| : {{profile.items.pets.length || 0}}
|
||
|
|
hr
|
||
|
|
p
|
||
|
|
strong Total Strength
|
||
|
|
| : {{totalStr(profile.stats.lvl, profile.items.weapon)}} %
|
||
|
|
p
|
||
|
|
strong Total Defense
|
||
|
|
| : {{totalDef(profile.stats.lvl, profile.items.armor, profile.items.head, profile.items.shield)}} %
|