43 lines
1.8 KiB
Handlebars
43 lines
1.8 KiB
Handlebars
{{!--
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
SPDX-FileCopyrightText: 2021 Oliver Rümpelein
|
|
SPDX-FileCopyrightText: 2021 Gesina Schwalbe
|
|
|
|
SPDX-License-Identifier: MIT
|
|
--}}
|
|
|
|
<form class="{{cssClass}} ds4-sheet" autocomplete="off">
|
|
{{!-- Header --}}
|
|
{{#> systems/ds4/templates/sheets/actor/components/actor-header.hbs}}
|
|
{{> systems/ds4/templates/sheets/actor/components/creature-properties.hbs}}
|
|
{{/systems/ds4/templates/sheets/actor/components/actor-header.hbs}}
|
|
|
|
|
|
{{!-- Sheet Tab Navigation --}}
|
|
<nav class="ds4-sheet-tab-nav sheet-tabs tabs" data-group="primary">
|
|
<a class="ds4-sheet-tab-nav__item item" data-tab="values">{{localize 'DS4.HeadingValues'}}</a>
|
|
<a class="ds4-sheet-tab-nav__item item" data-tab="inventory">{{localize 'DS4.HeadingInventory'}}</a>
|
|
<a class="ds4-sheet-tab-nav__item item" data-tab="special-creature-abilities">{{localize
|
|
'DS4.HeadingSpecialCreatureAbilities'}}</a>
|
|
<a class="ds4-sheet-tab-nav__item item" data-tab="spells">{{localize 'DS4.HeadingSpells'}}</a>
|
|
<a class="ds4-sheet-tab-nav__item item" data-tab="description">{{localize 'DS4.HeadingDescription'}}</a>
|
|
</nav>
|
|
|
|
{{!-- Sheet Body --}}
|
|
<section class="sheet-body">
|
|
{{!-- Values Tab --}}
|
|
{{> systems/ds4/templates/sheets/actor/tabs/values.hbs}}
|
|
|
|
{{!-- Inventory Tab --}}
|
|
{{> systems/ds4/templates/sheets/actor/tabs/creature-inventory.hbs}}
|
|
|
|
{{!-- Special Creature Abilities Tab --}}
|
|
{{> systems/ds4/templates/sheets/actor/tabs/special-creature-abilities.hbs}}
|
|
|
|
{{!-- Spells Tab --}}
|
|
{{> systems/ds4/templates/sheets/actor/tabs/spells.hbs}}
|
|
|
|
{{!-- Description Tab --}}
|
|
{{> systems/ds4/templates/sheets/actor/tabs/description.hbs}}
|
|
</section>
|
|
</form>
|