habitica/views/shared/profiles/stats.jade

47 lines
1.4 KiB
Text
Raw Normal View History

h4 Equipment
2013-09-01 17:55:45 +00:00
p
strong {{itemText('weapon',profile.items.weapon)}}
2013-11-17 15:36:38 +00:00
| : {{itemStat('weapon',profile.items.weapon)}} Attack
2013-09-01 17:55:45 +00:00
p
strong {{itemText('armor',profile.items.armor)}}
2013-11-17 15:36:38 +00:00
| : {{itemStat('armor',profile.items.armor)}} Protection
2013-09-01 17:55:45 +00:00
p
strong {{itemText('head',profile.items.head)}}
2013-11-17 15:36:38 +00:00
| : {{itemStat('head',profile.items.head)}} Protection
2013-09-01 17:55:45 +00:00
p
strong {{itemText('shield',profile.items.shield)}}
2013-11-17 15:36:38 +00:00
| : {{itemStat('shield',profile.items.shield)}} Protection
2013-09-01 17:55:45 +00:00
h4 Stats
p
2013-11-17 15:36:38 +00:00
strong Health
2013-09-01 17:55:45 +00:00
| : {{profile.stats.hp | number:0}} / 50
p
2013-11-17 15:36:38 +00:00
strong Gold
2013-09-01 17:55:45 +00:00
| : {{profile.stats.gp | number:0}}
p
2013-11-17 15:36:38 +00:00
strong Level
2013-09-01 17:55:45 +00:00
| : {{profile.stats.lvl}}
p
2013-11-17 15:36:38 +00:00
strong Experience
2013-09-01 17:55:45 +00:00
| : {{profile.stats.exp | number:0}} / {{tnl(profile.stats.lvl)}}
p
strong Strength
| :
span(popover-trigger='mouseenter', popover='(Level-1)/2') {{userStr(profile.stats.lvl)}}
2013-09-01 17:55:45 +00:00
p
strong Defense
| :
span(popover-trigger='mouseenter', popover='(Level-1)/2') {{userDef(profile.stats.lvl)}}
2013-09-01 17:55:45 +00:00
p
strong Pets Found
| : {{countExists(profile.items.pets)}}
2013-09-01 17:55:45 +00:00
hr
p
2013-11-17 15:36:38 +00:00
strong Total Experience Boost
| :
span(popover-trigger='mouseenter', popover='Attack + Strength') {{totalStr(profile.stats.lvl, profile.items.weapon)}} %
2013-09-01 17:55:45 +00:00
p
2013-11-17 15:36:38 +00:00
strong Total Damage Reduction
| :
span(popover-trigger='mouseenter', popover='Defense + Protection') {{totalDef(profile.stats.lvl, profile.items.armor, profile.items.head, profile.items.shield)}} %