mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 21:21:08 +01:00
Attached CharacterCreate and Levelup functionality to the sheet
This commit is contained in:
parent
7f898bb983
commit
4f6c87a524
10 changed files with 208 additions and 57 deletions
|
|
@ -12,8 +12,17 @@
|
|||
|
||||
<div class='level-div'>
|
||||
<h3 class='label'>
|
||||
{{localize 'DAGGERHEART.Sheets.PC.Level'}}
|
||||
{{document.system.levelData.level.current}}
|
||||
{{#if document.system.needsCharacterSetup}}
|
||||
<button class="level-button glow" data-action="characterSetup">{{localize 'DAGGERHEART.Sheets.PC.CharacterSetup'}}</button>
|
||||
{{else}}
|
||||
{{#if document.system.levelData.canLevelUp}}
|
||||
<button class="level-button glow" data-action="levelup">{{localize 'DAGGERHEART.Sheets.PC.LevelUp'}}</button>
|
||||
{{!-- <div class="levelup">{{localize 'DAGGERHEART.Sheets.PC.LevelUp'}}</div> --}}
|
||||
{{else}}
|
||||
{{localize 'DAGGERHEART.Sheets.PC.Level'}}
|
||||
{{/if}}
|
||||
<input type="text" data-dtype="Number" class="level-value" value={{document.system.levelData.level.changed}} />
|
||||
{{/if}}
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue