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.
 
 
 

100 lines
4.5 KiB

<form class="check-modifiers-content" autocomplete="off" spellcheck="off">
{{#if substitutions}}
<div class="dialog-row header">
<span class="mod">Substitution</span>
<span class="type">Roll</span>
<span class="exclude">Utilize?</span>
</div>
<div class="substitutions">
{{#each substitutions as |sub index|}}
<div class="dialog-row{{#if (and (not sub.toggleable) (not sub.selected))}} disabled{{/if}}">
<span class="mod">{{sub.label}}</span>
<span class="type">{{sub.value}}</span>
<div class="exclude{{#if (and (not sub.toggleable) sub.selected)}} disabled{{/if}}">
<label class="toggle">
<input type="checkbox" {{disabled (not sub.toggleable)}} data-sub-index="{{index}}" {{checked sub.selected}} />
<span class="widget"></span>
</label>
</div>
</div>
{{/each}}
</div>
<hr />
{{/if}}
<div class="dialog-row header">
<span class="mod">{{localize "PF2E.Roll.Modifier"}}</span>
<span class="type">{{localize "PF2E.Roll.Type"}}</span>
<span class="value"></span>
<span class="exclude"></span>
</div>
<div class="modifier-container">
{{#each modifiers as |modifier idx|}}
<div class="dialog-row{{#unless modifier.enabled}} disabled{{#if modifier.hideIfDisabled}} hidden{{/if}}{{/unless}}">
<span class="mod">{{modifier.label}}</span>
<span class="type"><span class="tag">{{localize (concat "PF2E.ModifierType." modifier.type)}}</span></span>
<span class="value">{{numberFormat modifier.modifier decimals=0 sign=true}}</span>
<div class="exclude">
<label class="toggle">
<input type="checkbox" data-modifier-index="{{idx}}" {{checked (not modifier.ignored)}} />
<span class="widget"></span>
</label>
</div>
</div>
{{/each}}
</div>
<hr />
<section class="add-entry-row add-modifier-panel">
<input type="text" class="add-modifier-name" placeholder={{localize "PF2E.ModifierTitle"}}>
<select class="add-modifier-type">
<option value="circumstance" selected>{{localize "PF2E.ModifierType.circumstance"}}</option>
<option value="item">{{localize "PF2E.ModifierType.item"}}</option>
<option value="status">{{localize "PF2E.ModifierType.status"}}</option>
<option value="untyped">{{localize "PF2E.ModifierType.untyped"}}</option>
<option value="ability">{{localize "PF2E.ModifierType.ability"}}</option>
<option value="proficiency">{{localize "PF2E.ModifierType.proficiency"}}</option>
</select>
<input type="number" class="add-modifier-value" placeholder="+1">
<button type="button" class="add-modifier">+{{localize "PF2E.Roll.Add"}}</button>
</section>
<hr/>
<div class="fate">
<label>
<input type="radio" name="rollTwice" value="keep-higher" {{checked fortune}} />
{{localize "PF2E.Roll.KeepHigher"}}
</label>
<label>
<input type="radio" name="rollTwice" value="" {{checked none}} />
{{localize "PF2E.Roll.Normal"}}
</label>
<label>
<input type="radio" name="rollTwice" value="keep-lower" {{checked misfortune}} />
{{localize "PF2E.Roll.KeepLower"}}
</label>
</div>
<hr/>
<div class="roll-mode-panel">
<span class="label">{{localize "PF2E.RollModeLabel"}}</span>
<select name="rollmode">
{{#select rollMode}}
{{#each rollModes as |label key|}}
<option value="{{key}}">{{localize label}}</option>
{{/each}}
{{/select}}
</select>
</div>
<hr/>
<button type="button" class="roll">{{localize "PF2E.Roll.Roll"}} ({{numberFormat totalModifier decimals=0 sign=true}})</button>
<!-- Settings Menu -->
<div class="hover-content" id="{{appId}}-settings">
<ul class="modifier-list settings-list">
<label class="item">
<span class="label">{{localize "PF2E.SETTINGS.Player.QuickRolls.DialogHint"}}</span>
<input class="quick-rolls-submit" type="checkbox" {{checked showRollDialogs}} />
</label>
</ul>
</div>
</form>