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.
 
 
 

59 lines
1.9 KiB

<div class="tab flexrow active" data-group="primary" data-tab="description">
<div class="item-properties">
{{#if isPhysical}}
<div class="form-group">
<label>{{ localize "DND5E.Quantity" }}</label>
{{numberInput system.quantity name="system.quantity"}}
</div>
<div class="form-group">
<label>{{ localize "DND5E.Weight" }}</label>
{{numberInput system.weight name="system.weight"}}
</div>
<div class="form-group">
<label>{{ localize "DND5E.Price" }}</label>
{{numberInput system.price.value name="system.price.value"}}
<select name="system.price.denomination">
{{selectOptions config.currencies selected=system.price.denomination labelAttr="abbreviation"}}
</select>
</div>
{{/if}}
{{#if (or labels.toHit labels.derivedDamage)}}
<h4 class="properties-header">{{localize "DND5E.Attack"}}/{{localize "DND5E.Damage"}}</h4>
<ol class="properties-list">
{{#if labels.save}}
<li>
{{labels.save}}
</li>
{{/if}}
{{#if labels.toHit}}
<li>
{{labels.toHit}} {{localize "DND5E.ToHit"}}
</li>
{{/if}}
{{#each labels.derivedDamage}}
<li>
{{label}}
</li>
{{/each}}
</ol>
{{/if}}
{{#if itemProperties.length}}
<h4 class="properties-header">{{localize "DND5E.Properties"}}</h4>
<ol class="properties-list">
{{#each itemProperties}}
<li>{{this}}</li>
{{/each}}
</ol>
{{/if}}
</div>
{{editor descriptionHTML target="system.description.value" button=true editable=editable engine="prosemirror"
collaborate=false}}
</div>