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.
 
 
 

42 lines
1.4 KiB

<div class="polymorph two-column">
<div class="left-column">
<h3>{{localize 'DND5E.PolymorphCustomTransformation'}}</h3>
{{#each content.settings}}
<div>
<label class="checkbox" for="{{@key}}">
<input type="checkbox" id="{{@key}}" name="{{@key}}" {{checked (lookup ../content.options @key)}}>
{{this}}
</label>
</div>
{{/each}}
{{#unless content.isToken}}
<hr>
<div>
<label class="checkbox" for="transformTokens">
<input type="checkbox" id="transformTokens" name="transformTokens"
{{checked content.options.transformTokens}}>
{{localize 'DND5E.PolymorphTokens'}}
</label>
</div>
{{/unless}}
</div>
<div class="right-column">
<h3>{{localize 'DND5E.PolymorphEffectTransformation'}}</h3>
{{#each content.effectSettings}}
<div>
<label class="checkbox" for="{{@key}}">
<input type="checkbox" id="{{@key}}" name="{{@key}}" {{checked (lookup ../content.options @key)}}>
{{this}}
</label>
</div>
{{/each}}
</div>
</div>
<div class="dialog-buttons">
{{#each buttons as |button id|}}
<button class="dialog-button" data-button="{{id}}">
{{{button.icon}}}
{{{button.label}}}
</button>
{{/each}}
</div>