forked from GitHub-Mirrors/foundry-sw5e
Super VJ Update
This commit is contained in:
parent
442212bdea
commit
1983b74bde
59 changed files with 4640 additions and 2462 deletions
|
@ -23,6 +23,21 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{{#if isCrewed}}
|
||||
<div class="form-group">
|
||||
<label>{{localize 'SW5E.Cover'}}</label>
|
||||
<div class="form-fields">
|
||||
<select name="data.cover" data-dtype="Number">
|
||||
{{#select data.cover}}
|
||||
<option value="">—</option>
|
||||
{{#each config.cover as |v k|}}
|
||||
<option value="{{k}}">{{v}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{!-- Ability Target --}}
|
||||
<div class="form-group input-select-select">
|
||||
|
@ -99,4 +114,28 @@
|
|||
</select>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{!-- Consumption --}}
|
||||
<div class="form-group uses-per">
|
||||
<label>{{ localize "SW5E.ConsumeTitle" }}</label>
|
||||
<div class="form-fields">
|
||||
<select name="data.consume.type">
|
||||
{{#select data.consume.type}}
|
||||
<option value=""></option>
|
||||
{{#each config.abilityConsumptionTypes as |name key|}}
|
||||
<option value="{{key}}">{{name}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
<select name="data.consume.target">
|
||||
{{#select data.consume.target}}
|
||||
<option value=""></option>
|
||||
{{#each abilityConsumptionTargets as |name key|}}
|
||||
<option value="{{key}}">{{name}}</option>
|
||||
{{/each}}
|
||||
{{/select}}
|
||||
</select>
|
||||
<input type="text" name="data.consume.amount" value="{{data.consume.amount}}" data-dtype="Number"/>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
19
templates/items/parts/item-mountable.html
Normal file
19
templates/items/parts/item-mountable.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<div class="form-group">
|
||||
<label>{{localize 'SW5E.Health'}}</label>
|
||||
<div class="form-fields">
|
||||
<input type="text" name="data.hp.value" value="{{data.hp.value}}"
|
||||
placeholder="0" data-dtype="Number">
|
||||
<span class="sep">/</span>
|
||||
<input type="text" name="data.hp.max" value="{{data.hp.max}}" placeholder="0"
|
||||
data-dtype="Number">
|
||||
<input type="text" name="data.hp.dt" value="{{data.hp.dt}}" data-dtype="Number"
|
||||
placeholder="{{localize 'SW5E.Threshold'}}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{localize 'SW5E.HealthConditions'}}</label>
|
||||
<div class="form-fields">
|
||||
<input type="text" name="data.hp.conditions" value="{{data.hp.conditions}}">
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue