diff --git a/app/locale/en.coffee b/app/locale/en.coffee index d4c48d04d..120ab8128 100644 --- a/app/locale/en.coffee +++ b/app/locale/en.coffee @@ -442,6 +442,7 @@ lua_blurb: "Game scripting language." io_blurb: "Simple but obscure." status: "Status" + hero_type: "Type" weapons: "Weapons" weapons_warrior: "Swords - Short Range, No Magic" weapons_ranger: "Crossbows, Guns - Long Range, No Magic" diff --git a/app/styles/play/modal/play-heroes-modal.sass b/app/styles/play/modal/play-heroes-modal.sass index 2d6b90894..a4e3e5a37 100644 --- a/app/styles/play/modal/play-heroes-modal.sass +++ b/app/styles/play/modal/play-heroes-modal.sass @@ -1,7 +1,7 @@ @import "app/styles/mixins" @import "app/styles/bootstrap/variables" -$heroCanvasHeight: 265px +$heroCanvasHeight: 275px #play-heroes-modal @include user-select(none) @@ -198,10 +198,10 @@ $heroCanvasHeight: 265px color: white .hero-description - margin-bottom: 10px + margin-bottom: 7px .hero-stat-row - margin: 5px 0 + margin: 4px 0 .stat-label float: left diff --git a/app/templates/play/modal/play-heroes-modal.jade b/app/templates/play/modal/play-heroes-modal.jade index 9f0fc4afb..3f0d5334f 100644 --- a/app/templates/play/modal/play-heroes-modal.jade +++ b/app/templates/play/modal/play-heroes-modal.jade @@ -37,7 +37,11 @@ .hero-stat-row .stat-label(data-i18n='choose_hero.status') .stat-value.hero-status-value(data-i18n=hero.restricted ? 'inventory.restricted_title' : (hero.purchasable ? 'play.purchasable' : (hero.locked ? 'play.locked' : 'play.available'))) - + + .hero-stat-row + .stat-label(data-i18n='choose_hero.hero_type') + .stat-value(data-i18n='general.' +hero.class) + .hero-stat-row .stat-label(data-i18n='choose_hero.weapons') .stat-value(data-i18n='choose_hero.weapons_'+hero.class)