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
943 B

<form autocomplete="off">
<p class="notes">{{localize "DND5E.MovementConfigHint"}}</p>
{{#each speeds as |label id|}}
<div class="form-group">
<label>{{localize label}}</label>
{{numberInput (lookup @root.movement id) name=(concat "system.attributes.movement." id) placeholder=0 step=0.1 min=0}}
</div>
{{/each}}
{{#if selectUnits}}
<div class="form-group">
<label>{{localize "DND5E.MovementUnits"}}</label>
<select name="system.attributes.movement.units">
{{selectOptions units selected=movement.units}}
</select>
</div>
{{/if}}
{{#if canHover}}
<div class="form-group">
<label>{{localize "DND5E.MovementHover"}}</label>
<input name="system.attributes.movement.hover" type="checkbox" {{checked movement.hover}}/>
</div>
{{/if}}
<button type="submit"><i class="far fa-save"></i> {{ localize "Submit"}}</button>
</form>