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.
 
 
 

34 lines
1.2 KiB

<form autocomplete="off" onsubmit="event.preventDefault();">
{{#*inline "traitList"}}
<ol class="trait-list">
{{#each choices as |choice key|}}
<li>
<label class="checkbox">
<input type="checkbox" name="{{#if ../prefix}}{{../prefix}}.{{/if}}{{key}}" {{checked choice.chosen}}>
{{choice.label}}
</label>
{{#if choice.children}}
{{> traitList choices=choice.children}}
{{/if}}
</li>
{{/each}}
</ol>
{{/inline}}
<h3>{{localize "DND5E.DamageTypes"}}</h3>
{{> traitList prefix="choices"}}
{{#if allowCustom}}
<div class="form-group stacked">
<label>{{ localize "DND5E.TraitSelectorSpecial" }}</label>
<input type="text" name="choices.custom" value="{{custom}}" data-dtype="String"/>
</div>
{{/if}}
<h3>{{localize "DND5E.DamagePhysicalBypass"}}</h3>
<p class="note">{{localize "DND5E.DamagePhysicalBypassHint"}}</p>
{{> traitList choices=bypasses prefix="bypasses"}}
<button type="submit" name="submit" value="1"><i class="far fa-save"></i> {{ localize "DND5E.TraitSave"}}</button>
</form>