mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-13 04:01:06 +01:00
52 lines
No EOL
2.8 KiB
Handlebars
52 lines
No EOL
2.8 KiB
Handlebars
<section
|
|
class='tab {{tabs.summary.cssClass}} {{tabs.summary.id}}'
|
|
data-tab='{{tabs.summary.id}}'
|
|
data-group='{{tabs.summary.group}}'
|
|
>
|
|
<div class="section-container levelup-summary-container">
|
|
<fieldset>
|
|
<legend>{{localize "DAGGERHEART.Application.LevelUp.summary.levelAchievements"}}</legend>
|
|
|
|
<div class="level-achievements-container">
|
|
<div>
|
|
<h3>{{localize "DAGGERHEART.Application.LevelUp.summary.statisticIncreases"}}</h3>
|
|
<div class="increase-container">
|
|
{{localize "DAGGERHEART.Application.LevelUp.summary.proficiencyIncrease" proficiency=this.levelAchievements.statisticIncreases.proficiency.old }}
|
|
<i class="fa-solid fa-arrow-right-long"></i>
|
|
{{this.levelAchievements.statisticIncreases.proficiency.new}}
|
|
</div>
|
|
<h5>{{localize "Damage Thresholds"}}{{#if this.levelAchievements.statisticIncreases.damageThresholds.unarmored}}({{localize "DAGGERHEART.General.unarmored"}}){{/if}}</h5>
|
|
<div class="increase-container">
|
|
{{localize "DAGGERHEART.Application.LevelUp.summary.damageThresholdMajorIncrease" threshold=this.levelAchievements.statisticIncreases.damageThresholds.major.old }}
|
|
<i class="fa-solid fa-arrow-right-long"></i>
|
|
{{this.levelAchievements.statisticIncreases.damageThresholds.major.new}}
|
|
</div>
|
|
<div class="increase-container">
|
|
{{localize "DAGGERHEART.Application.LevelUp.summary.damageThresholdSevereIncrease" threshold=this.levelAchievements.statisticIncreases.damageThresholds.severe.old }}
|
|
<i class="fa-solid fa-arrow-right-long"></i>
|
|
{{this.levelAchievements.statisticIncreases.damageThresholds.severe.new}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{{localize "DAGGERHEART.Application.LevelUp.summary.levelAdvancements"}}</legend>
|
|
|
|
{{!-- <div>
|
|
<h4>{{localize "DAGGERHEART.General.Experience.plural"}}</h4>
|
|
<div class="level-experience-cards">
|
|
{{#each this.levelAchievements.experience}}
|
|
<div class="level-experience-card">
|
|
{{this.label}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div> --}}
|
|
</fieldset>
|
|
|
|
<footer class="levelup-footer">
|
|
<button data-action="save" {{#if (not this.levelup.canLevelUp)}}disabled{{/if}}>{{localize "Finish Levelup"}}</button>
|
|
</footer>
|
|
</div>
|
|
</section> |