BattleSim/client/views/move_hover_info.jade

24 lines
363 B
Plaintext
Raw Permalink Normal View History

2016-02-01 22:19:30 +00:00
p
strong Base Power:
if move.power == 0
| —
else
| #{move.power}
p
strong Accuracy:
if move.accuracy == 0
| —
else
| #{move.accuracy}%
if move.priority != 0
p
strong Priority:
if move.priority > 0
| +#{move.priority}
else
| #{move.priority}
p
strong Description:
| #{move.description}