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.
 
 
 

24 lines
1.1 KiB

<form autocomplete="off" spellcheck="off">
<div class="form-group">
<label>{{localize "PF2E.ItemBonusLabel"}}</label>
<input type="text" name="itemBonus" value="{{data.itemBonus}}" placeholder="{{localize "PF2E.RollBonusPlaceholder"}}"/>
</div>
<div class="form-group">
<label>{{localize "PF2E.StatusBonusTitle"}}</label>
<input type="text" name="statusBonus" value="{{data.statusBonus}}" placeholder="{{localize "PF2E.RollBonusPlaceholder"}}"/>
</div>
<div class="form-group">
<label>{{localize "PF2E.CircumstanceBonusTitle"}}</label>
<input type="text" name="circumstanceBonus" value="{{data.circumstanceBonus}}" placeholder="{{localize "PF2E.RollBonusPlaceholder"}}"/>
</div>
<div class="form-group">
<label>{{localize "PF2E.RollModeLabel"}}</label>
<select name="rollMode">
{{#select rollMode}}
{{#each rollModes as |label mode|}}
<option value="{{mode}}">{{localize label}}</option>
{{/each}}
{{/select}}
</select>
</div>
</form>