habitica/views/shared/profiles/stats.jade

42 lines
1.1 KiB
Text
Raw Normal View History

2013-09-01 17:55:45 +00:00
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)}} %