All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

111 lines
4.5 KiB

<form class="{{cssClass}} flexcol" autocomplete="off">
{{!-- Item Sheet Header --}}
<header class="sheet-header flexrow">
<img class="profile" src="{{item.img}}" data-tooltip="{{item.name}}" data-edit="img">
<div class="header-details flexrow">
<h1 class="charname">
<input name="name" type="text" value="{{item.name}}" placeholder="{{ localize 'DND5E.ItemName' }}">
</h1>
<div class="item-subtitle">
<h4 class="item-type">{{itemType}}</h4>
<span class="item-status">{{itemStatus}}</span>
</div>
<ul class="summary flexrow">
<li>
{{lookup config.consumableTypes system.consumableType }}
</li>
<li>
<select name="system.rarity">
{{selectOptions config.itemRarity selected=system.rarity blank=""}}
</select>
</li>
<li>
<input type="text" name="system.source" value="{{system.source}}" placeholder="{{ localize 'DND5E.Source' }}">
</li>
</ul>
</div>
</header>
{{!-- Item Sheet Navigation --}}
<nav class="sheet-navigation tabs" data-group="primary">
<a class="item active" data-tab="description">{{ localize "DND5E.Description" }}</a>
<a class="item" data-tab="details">{{ localize "DND5E.Details" }}</a>
<a class="item" data-tab="effects">{{ localize "DND5E.Effects" }}</a>
</nav>
{{!-- Item Sheet Body --}}
<section class="sheet-body">
{{!-- Description Tab --}}
{{> "dnd5e.item-description"}}
{{!-- Details Tab --}}
<div class="tab details" data-group="primary" data-tab="details">
<h3 class="form-header">{{ localize "DND5E.ItemConsumableDetails" }}</h3>
{{!-- Consumable Type --}}
<div class="form-group">
<label>{{ localize "DND5E.ItemConsumableType" }}</label>
<select name="system.consumableType">
{{selectOptions config.consumableTypes selected=system.consumableType}}
</select>
</div>
<div class="form-group">
<label>{{localize "DND5E.Attunement"}}</label>
<select name="system.attunement" data-dtype="Number">
{{selectOptions config.attunements selected=system.attunement}}
</select>
</div>
{{!-- Consumable Status --}}
<div class="form-group stacked">
<label>{{ localize "DND5E.ItemConsumableStatus" }}</label>
<label class="checkbox">
<input type="checkbox" name="system.equipped" {{checked system.equipped}}> {{ localize "DND5E.Equipped" }}
</label>
<label class="checkbox">
<input type="checkbox" name="system.identified" {{checked system.identified}}> {{ localize "DND5E.Identified" }}
</label>
</div>
{{#if (eq system.consumableType "ammo")}}
{{!-- Consumable Properties --}}
<div class="form-group stacked weapon-properties">
<label>{{ localize "DND5E.ItemAmmoProperties" }}</label>
{{#each config.physicalWeaponProperties as |name prop|}}
<label class="checkbox">
<input type="checkbox" name="system.properties.{{prop}}" {{checked (lookup ../system.properties prop)}}> {{ name }}
</label>
{{/each}}
</div>
{{/if}}
<h3 class="form-header">{{ localize "DND5E.ItemConsumableUsage" }}</h3>
{{!-- Item Activation Template --}}
{{> "dnd5e.item-activation"}}
{{#if system.activation.type}}
<div class="form-group">
<label class="checkbox">
<input type="checkbox" name="system.uses.autoDestroy" {{checked system.uses.autoDestroy}}> {{ localize "DND5E.ItemDestroyEmpty" }}
</label>
</div>
{{/if}}
<h3 class="form-header">{{ localize "DND5E.ItemConsumableActivation" }}</h3>
{{!-- Item Action Template --}}
{{> "dnd5e.item-action"}}
</div>
{{!-- Effects Tab --}}
<div class="tab effects flexcol" data-group="primary" data-tab="effects">
{{> "dnd5e.active-effects"}}
</div>
</section>
</form>