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.
 
 
 

134 lines
5.3 KiB

<nav class="sheet-tabs tabs rule-tabs">
<h4>
<a data-rule-tab="basic"><i class="fas fa-lightbulb"></i> {{localize "LIGHT.HeaderBasic"}}</a>
<a data-rule-tab="animation"><i class="fas fa-play"></i> {{localize "LIGHT.HeaderAnimation"}}</a>
<a data-rule-tab="advanced"><i class="fas fa-cogs"></i> {{localize "LIGHT.HeaderAdvanced"}}</a>
</h4>
</nav>
<div data-rule-tab="basic">
<fieldset class="radii">
<legend>{{localize "LIGHT.Radius"}}</legend>
<div class="form-group">
<div class="form-fields">
<label class="short">{{localize "LIGHT.Dim"}}</label>
{{{form.resolvableValue "value.dim"}}}
{{{form.resolvableAddBracket "value.dim"}}}
</div>
</div>
{{{form.resolvableBrackets "value.dim"}}}
<div class="form-group">
<div class="form-fields">
<label class="short">{{localize "LIGHT.Bright"}}</label>
{{{form.resolvableValue "value.bright"}}}
{{{form.resolvableAddBracket "value.bright"}}}
</div>
</div>
{{{form.resolvableBrackets "value.bright"}}}
</fieldset>
<div class="form-group slim">
<label>{{localize "LIGHT.Angle" }} <span class="units">({{localize "Degrees"}})</span></label>
<div class="form-fields">
<input type="number" name="system.rules.{{index}}.value.angle" value="{{light.angle}}" placeholder="360"/>
</div>
</div>
<div class="form-group">
<label>{{ localize "LIGHT.Color" }}</label>
<div class="form-fields">
{{colorPicker name=(concat "system.rules." index ".value.color") value=light.color}}
</div>
</div>
<div class="form-group">
<label>{{ localize "LIGHT.Alpha" }}</label>
<div class="form-fields">
{{rangePicker name=(concat "system.rules." index ".value.alpha") value=light.alpha placeholder="1" min="0" max="1" step="0.05"}}
</div>
</div>
<div class="form-group column-span-two">
<label>{{localize "PF2E.RuleEditor.General.Predicate"}}</label>
<input type="text" class="predicate" name="system.rules.{{index}}.predicate" value="{{json rule.predicate}}" />
</div>
</div>
<div data-rule-tab="animation">
<div class="form-group">
<label>{{localize "LIGHT.AnimationType"}}</label>
<div class="form-fields">
<select name="system.rules.{{index}}.value.animation.type">
{{selectOptions lightAnimations selected=light.animation.type localize=true}}
</select>
</div>
</div>
<div class="form-group">
<label>{{localize "LIGHT.AnimationSpeed"}}</label>
<div class="form-fields">
{{rangePicker name=(concat "system.rules." index ".value.animation.speed") value=light.animation.speed min="0" max="10" step="1"}}
</div>
</div>
<div class="form-group">
<label>{{localize "LIGHT.AnimationReverse"}}</label>
<div class="form-fields">
<input type="checkbox" name="system.rules.{{index}}.value.animation.reverse" {{checked light.animation.reverse}}/>
</div>
</div>
<div class="form-group">
<label>{{localize "LIGHT.AnimationIntensity"}}</label>
<div class="form-fields">
{{rangePicker name=(concat "system.rules." index ".value.animation.intensity") value=light.animation.intensity min="1" max="10" step="1"}}
</div>
</div>
</div>
<div data-rule-tab="advanced">
<div class="form-group">
<label>{{ localize 'LIGHT.ColorationTechnique' }}</label>
<div class="form-fields">
<select name="system.rules.{{index}}.value.coloration" data-dtype="Number">
{{selectOptions colorationTechniques selected=light.coloration nameAttr="id" labelAttr="label" localize=true}}
</select>
</div>
</div>
<div class="form-group">
<label>{{ localize 'LIGHT.Luminosity' }}</label>
<div class="form-fields">
{{ rangePicker name=(concat "system.rules." index ".value.luminosity") value=light.luminosity min="-1" max="1" step="0.05" }}
</div>
</div>
<div class="form-group">
<label>{{ localize 'LIGHT.Attenuation' }}</label>
<div class="form-fields">
{{ rangePicker name=(concat "system.rules." index ".value.attenuation") value=light.attenuation min="0" max="1" step="0.05" }}
</div>
</div>
<div class="form-group">
<label>{{ localize 'LIGHT.Saturation' }}</label>
<div class="form-fields">
{{ rangePicker name=(concat "system.rules." index ".value.saturation") value=light.saturation min="-1" max="1" step="0.05" }}
</div>
</div>
<div class="form-group">
<label>{{ localize 'LIGHT.Contrast' }}</label>
<div class="form-fields">
{{ rangePicker name=(concat "system.rules." index ".value.contrast") value=light.contrast min="-1" max="1" step="0.05" }}
</div>
</div>
<div class="form-group">
<label>{{ localize 'LIGHT.Shadows' }}</label>
<div class="form-fields">
{{ rangePicker name=(concat "system.rules." index ".value.shadows") value=light.shadows min="0" max="1" step="0.05" }}
</div>
</div>
</div>