forked from GitHub-Mirrors/foundry-sw5e
19 lines
769 B
HTML
19 lines
769 B
HTML
<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>
|