This commit is contained in:
Nick Winter 2015-09-03 05:10:06 -07:00
parent dcfa65213e
commit 02676dc59f
2 changed files with 6 additions and 1 deletions
app
locale
templates/play/level/tome

View file

@ -527,6 +527,8 @@
skill_docs:
writable: "writable" # Hover over "attack" in Your Skills while playing a level to see most of this
read_only: "read-only"
action: "Action"
spell: "Spell"
action_name: "name"
action_cooldown: "Takes"
action_specific_cooldown: "Cooldown"

View file

@ -15,7 +15,10 @@ h4
if cooldowns && (cooldowns.cooldown || cooldowns.specificCooldown)
p
span
| #{cooldowns.type == 'spell' ? 'Spell' : 'Action'}
if cooldowns.type == 'spell'
span(data-i18n="skill_docs.spell") Spell
else
span(data-i18n="skill_docs.action") Action
span.spl(data-i18n="skill_docs.action_name") name
span.spr :
code "#{cooldowns.name}"