mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 20:51:07 +01:00
enhance consumable and miscellaneous sheets
This commit is contained in:
parent
c306c95e6b
commit
d180b0e74c
14 changed files with 190 additions and 179 deletions
10
templates/sheets/items/consumable/header.hbs
Normal file
10
templates/sheets/items/consumable/header.hbs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<header class='item-sheet-header'>
|
||||
<img class='profile' src='{{source.img}}' data-action='editImage' data-edit='img' />
|
||||
<div class='item-info'>
|
||||
<line-div></line-div>
|
||||
<h1 class='item-name'><input type='text' name='name' value='{{source.name}}' /></h1>
|
||||
<div class='item-description'>
|
||||
<h3>{{localize 'TYPES.Item.consumable'}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
14
templates/sheets/items/consumable/settings.hbs
Normal file
14
templates/sheets/items/consumable/settings.hbs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<section
|
||||
class='tab {{tabs.settings.cssClass}} {{tabs.settings.id}}'
|
||||
data-tab='{{tabs.settings.id}}'
|
||||
data-group='{{tabs.settings.group}}'
|
||||
>
|
||||
<fieldset class="two-columns">
|
||||
<legend>{{localize tabs.settings.label}}</legend>
|
||||
<span>{{localize "DAGGERHEART.Sheets.Consumable.Quantity"}}</span>
|
||||
{{formField systemFields.quantity value=source.system.quantity}}
|
||||
|
||||
<span>{{localize "DAGGERHEART.Sheets.Consumable.ConsumeOnUse"}}</span>
|
||||
{{formField systemFields.consumeOnUse value=source.system.consumeOnUse}}
|
||||
</fieldset>
|
||||
</section>
|
||||
10
templates/sheets/items/miscellaneous/header.hbs
Normal file
10
templates/sheets/items/miscellaneous/header.hbs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<header class='item-sheet-header'>
|
||||
<img class='profile' src='{{source.img}}' data-action='editImage' data-edit='img' />
|
||||
<div class='item-info'>
|
||||
<line-div></line-div>
|
||||
<h1 class='item-name'><input type='text' name='name' value='{{source.name}}' /></h1>
|
||||
<div class='item-description'>
|
||||
<h3>{{localize 'TYPES.Item.miscellaneous'}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
11
templates/sheets/items/miscellaneous/settings.hbs
Normal file
11
templates/sheets/items/miscellaneous/settings.hbs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<section
|
||||
class='tab {{tabs.settings.cssClass}} {{tabs.settings.id}}'
|
||||
data-tab='{{tabs.settings.id}}'
|
||||
data-group='{{tabs.settings.group}}'
|
||||
>
|
||||
<fieldset class="two-columns">
|
||||
<legend>{{localize tabs.settings.label}}</legend>
|
||||
<span>{{localize "DAGGERHEART.Sheets.Miscellaneous.Quantity"}}</span>
|
||||
{{formField systemFields.quantity value=source.system.quantity}}
|
||||
</fieldset>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue