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.
 
 
 

41 lines
1.5 KiB

<div class="form-group">
<label>{{localize "PF2E.ConsumableTypeLabel"}}</label>
<select name="system.consumableType.value">
{{#select data.consumableType.value}}
{{#each consumableTypes as |name type|}}
<option value="{{type}}">{{localize name}}</option>
{{/each}}
{{/select}}
</select>
</div>
<div class="form-group">
<label>{{localize "PF2E.ConsumableConsumeLabel"}}</label>
<input type="text" name="system.consume.value" value="{{data.consume.value}}" placeholder="{{localize "PF2E.FormulaPlaceholder"}}" />
</div>
<div class="form-group">
<label>{{localize "PF2E.ConsumableAutoDestroyLabel"}}</label>
<input type="checkbox" name="system.autoDestroy.value" {{checked data.autoDestroy.value}} />
</div>
<div class="form-group stacked">
<label>
{{localize "PF2E.Item.Physical.OtherTags.Label"}}
<i class="fa-solid fa-info-circle" data-tooltip="PF2E.Item.Physical.OtherTags.Hint"></i>
{{#if editable}}
<a
class="tag-selector"
data-tag-selector="basic"
data-config-types="otherConsumableTags"
data-title="PF2E.Item.Physical.OtherTags.Label"
data-property="system.traits.otherTags"
><i class="fa-solid fa-edit"></i></a>
{{/if}}
</label>
<ul class="traits-list tags">
{{#each otherTags as |tag|}}
<li class="tag tag_alt">{{tag.label}}</li>
{{/each}}
</ul>
</div>