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.
 
 
 

71 lines
3.3 KiB

<form autocomplete="off" spellcheck="false">
<p class="notes">{{localize "PF2E.SETTINGS.Homebrew.Instructions"}}</p>
<nav class="sheet-tabs tabs">
<a class="item" data-tab="traits">{{localize "PF2E.SETTINGS.Homebrew.Tabs.Traits"}}</a>
<a class="item" data-tab="damage">{{localize "PF2E.SETTINGS.Homebrew.Tabs.Damage"}}</a>
</nav>
<section class="tab" data-tab="traits"></div>
{{#each traitSettings as |setting|}}
<!-- {{setting.key}} -->
<div class="form-group setting">
<label for="{{setting.key}}">{{localize setting.name}}</label>
<div class="form-fields">
<input type="text" name="{{setting.key}}" class="homebrew" data-dtype="JSON" value="{{json setting.value}}" />
</div>
<p class="notes">{{localize setting.hint}}</p>
</div>
{{/each}}
</section>
<section class="tab" data-tab="damage">
{{#if customDamageTypes}}
<table class="damage-types">
<tr>
<th>{{localize "PF2E.SETTINGS.Homebrew.DamageTypes.Label"}}</th>
<th>{{localize "PF2E.Slug"}}</th>
<th>{{localize "PF2E.Category"}}</th>
<th>{{localize "PF2E.SETTINGS.Homebrew.DamageTypes.Icon"}}</th>
<th class="delete-cell"></th>
</tr>
{{#each customDamageTypes as |type idx|}}
<tr>
<td>
<input name="damageTypes.{{idx}}.label" type="text" required minlength="3" value="{{type.label}}" />
</td>
<td>{{type.slug}}</td>
<td>
<select name="damageTypes.{{idx}}.category">
{{#select type.category}}
<option value="">{{localize "PF2E.NoneOption"}}</option>
{{#each @root.damageCategories as |label category|}}
<option value="{{category}}">{{localize label}}</option>
{{/each}}
{{/select}}
</select>
</td>
<td>
<div class="icon-preview">
<input name="damageTypes.{{idx}}.icon" type="text" value="{{type.icon}}" />
<i class="fa-solid fa-fw {{type.icon}}"></i>
</div>
</td>
<td class="delete-cell"><i class="fa-solid fa-times" data-action="damage-delete" data-idx="{{idx}}"></i></td>
</tr>
{{/each}}
</table>
{{/if}}
<button type="button" data-action="damage-add">
<i class="fa-regular fa-plus"></i>{{localize "PF2E.SETTINGS.Homebrew.DamageTypes.Add"}}
</button>
</section>
<div class="form-group buttons">
<button type="submit">
<i class="fa-regular fa-save"></i> {{localize "SETTINGS.Save"}}
</button>
<button type="reset" name="reset">
<i class="fa-solid fa-undo"></i> {{localize "PF2E.SETTINGS.ResetChanges"}}
</button>
</div>
</form>