2021-06-26 22:02:00 +02:00
|
|
|
{{!--
|
|
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
|
|
SPDX-FileCopyrightText: 2021 Oliver Rümpelein
|
|
|
|
SPDX-FileCopyrightText: 2021 Gesina Schwalbe
|
|
|
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
--}}
|
|
|
|
|
2020-12-23 16:52:20 +01:00
|
|
|
<form class="{{cssClass}} flexcol" autocomplete="off">
|
|
|
|
{{!-- Sheet Header --}}
|
|
|
|
<header class="sheet-header">
|
2021-06-30 19:14:52 +02:00
|
|
|
<img class="profile-img" src="{{data.img}}" data-edit="img" alt="Actor Icon" title="{{data.name}}"
|
2021-03-24 20:10:14 +01:00
|
|
|
height="100" width="100" />
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="header-fields flexrow">
|
2021-01-16 15:16:40 +01:00
|
|
|
<h1 class="charname">
|
2021-06-30 19:14:52 +02:00
|
|
|
<label for="name" class="hidden">Name</label>
|
|
|
|
<input name="name" type="text" id="name" value="{{data.name}}" placeholder="Name" />
|
2021-01-16 15:16:40 +01:00
|
|
|
</h1>
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/components/character-progression.hbs}}
|
2021-01-04 21:51:58 +01:00
|
|
|
|
|
|
|
<div class="flexrow basic-properties">
|
|
|
|
<div class="basic-property">
|
2021-01-10 02:05:30 +01:00
|
|
|
<label class="basic-property-label"
|
2021-01-24 17:47:47 +01:00
|
|
|
for="data.baseInfo.race">{{config.i18n.characterBaseInfo.race}}</label>
|
2021-06-30 19:14:52 +02:00
|
|
|
<input type="text" name="data.baseInfo.race" id="data.baseInfo.race"
|
|
|
|
value="{{data.data.baseInfo.race}}" data-dtype="String" />
|
2020-12-23 16:52:20 +01:00
|
|
|
</div>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="basic-property">
|
2021-01-10 02:05:30 +01:00
|
|
|
<label class="basic-property-label"
|
2021-01-24 17:47:47 +01:00
|
|
|
for="data.baseInfo.culture">{{config.i18n.characterBaseInfo.culture}}</label>
|
2021-01-16 15:16:40 +01:00
|
|
|
<input id="data.baseInfo.culture" type="text" name="data.baseInfo.culture"
|
2021-06-30 19:14:52 +02:00
|
|
|
value="{{data.data.baseInfo.culture}}" data-dtype="String" />
|
2020-12-30 00:35:18 +01:00
|
|
|
</div>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="basic-property flex125">
|
|
|
|
<label class="basic-property-label"
|
2021-03-24 20:10:14 +01:00
|
|
|
for="data.progression.progressPoints.used">{{config.i18n.characterProgression.progressPoints}}</label>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="flexrow">
|
2021-01-16 15:16:40 +01:00
|
|
|
<input id="data.progression.progressPoints.used" type="number"
|
2021-06-30 19:14:52 +02:00
|
|
|
name="data.progression.progressPoints.used"
|
|
|
|
value="{{data.data.progression.progressPoints.used}}" data-dtype="Number" />
|
2021-01-16 15:16:40 +01:00
|
|
|
<span class="input-divider"> / </span>
|
|
|
|
<label class="hidden" for="data.progression.progressPoints.total">Total
|
|
|
|
Progression Points</label>
|
2021-03-24 20:10:14 +01:00
|
|
|
<input type="number" id="data.progression.progressPoints.total"
|
|
|
|
name="data.progression.progressPoints.total"
|
2021-06-30 19:14:52 +02:00
|
|
|
value="{{data.data.progression.progressPoints.total}}" data-dtype="Number" />
|
2020-12-30 19:39:16 +01:00
|
|
|
</div>
|
2020-12-30 00:35:18 +01:00
|
|
|
</div>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="basic-property flex125">
|
|
|
|
<label class="basic-property-label"
|
2021-03-24 20:10:14 +01:00
|
|
|
for="data.progression.talentPoints.used">{{config.i18n.characterProgression.talentPoints}}</label>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="flexrow">
|
2021-01-04 22:12:19 +01:00
|
|
|
<input type="number" name="data.progression.talentPoints.used"
|
2021-06-30 19:14:52 +02:00
|
|
|
id="data.progression.talentPoints.used" value="{{data.data.progression.talentPoints.used}}"
|
2021-03-24 20:10:14 +01:00
|
|
|
data-dtype="Number" />
|
2021-01-16 15:16:40 +01:00
|
|
|
<span class="input-divider"> / </span>
|
|
|
|
<label for="data.progression.talentPoints.total" class="hidden">Total Talent Points</label>
|
2021-03-24 20:10:14 +01:00
|
|
|
<input type="number" name="data.progression.talentPoints.total"
|
2021-06-30 19:14:52 +02:00
|
|
|
id="data.progression.talentPoints.total"
|
|
|
|
value="{{data.data.progression.talentPoints.total}}" data-dtype="Number" />
|
2020-12-30 19:39:16 +01:00
|
|
|
</div>
|
2020-12-30 00:35:18 +01:00
|
|
|
</div>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="basic-property">
|
2021-01-10 02:05:30 +01:00
|
|
|
<label class="basic-property-label"
|
2021-01-24 17:47:47 +01:00
|
|
|
for="data.baseInfo.class">{{config.i18n.characterBaseInfo.class}}</label>
|
2021-01-16 15:16:40 +01:00
|
|
|
<input type="text" id="data.baseInfo.class" name="data.baseInfo.class"
|
2021-06-30 19:14:52 +02:00
|
|
|
value="{{data.data.baseInfo.class}}" data-dtype="String" />
|
2020-12-30 19:39:16 +01:00
|
|
|
</div>
|
2021-01-04 21:51:58 +01:00
|
|
|
<div class="basic-property">
|
|
|
|
<label class="basic-property-label"
|
2021-03-24 20:10:14 +01:00
|
|
|
for="data.baseInfo.heroClass">{{config.i18n.characterBaseInfo.heroClass}}</label>
|
2021-01-16 15:16:40 +01:00
|
|
|
<input type="text" id="data.baseInfo.heroClass" name="data.baseInfo.heroClass"
|
2021-06-30 19:14:52 +02:00
|
|
|
value="{{data.data.baseInfo.heroClass}}" data-dtype="String" />
|
2020-12-23 16:52:20 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-04 21:51:58 +01:00
|
|
|
</div>
|
2020-12-23 16:52:20 +01:00
|
|
|
</header>
|
|
|
|
|
|
|
|
{{!-- Sheet Tab Navigation --}}
|
|
|
|
<nav class="sheet-tabs tabs" data-group="primary">
|
2021-03-24 20:10:14 +01:00
|
|
|
<a class="item" data-tab="values">{{localize 'DS4.HeadingValues'}}</a>
|
2021-01-09 23:39:35 +01:00
|
|
|
<a class="item" data-tab="inventory">{{localize 'DS4.HeadingInventory'}}</a>
|
|
|
|
<a class="item" data-tab="spells">{{localize 'DS4.HeadingSpells'}}</a>
|
2021-01-13 17:23:06 +01:00
|
|
|
<a class="item" data-tab="talents-abilities">{{localize 'DS4.HeadingTalentsAbilities'}}</a>
|
2021-01-07 00:00:36 +01:00
|
|
|
<a class="item" data-tab="profile">{{localize "DS4.HeadingProfile"}}</a>
|
2021-01-09 23:39:35 +01:00
|
|
|
<a class="item" data-tab="biography">{{localize 'DS4.HeadingBiography'}}</a>
|
2020-12-23 16:52:20 +01:00
|
|
|
</nav>
|
|
|
|
|
2021-01-26 20:30:53 +01:00
|
|
|
<!-- beautify ignore:start -->
|
|
|
|
<!-- prettier-ignore-start -->
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Sheet Body (remove indentation to avoid annoying Handlebars auto-indent) --}}
|
|
|
|
<section class="sheet-body">
|
2021-03-24 20:10:14 +01:00
|
|
|
{{!-- Values Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/values.hbs}}
|
2021-03-24 20:10:14 +01:00
|
|
|
|
|
|
|
{{!-- Inventory Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/character-inventory.hbs}}
|
2020-12-23 16:52:20 +01:00
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Spells Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/spells.hbs}}
|
2021-01-03 20:54:45 +01:00
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Talents Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/talents-abilities.hbs}}
|
2021-01-06 01:24:37 +01:00
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
{{! Profile Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/profile.hbs}}
|
2021-01-09 23:39:35 +01:00
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Biography Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/biography.hbs}}
|
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
</section>
|
2021-01-26 20:30:53 +01:00
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
<!-- beautify ignore:end -->
|
2021-01-16 15:16:40 +01:00
|
|
|
</form>
|