2024-11-27 19:39:42 -05:00
|
|
|
<form>
|
|
|
|
<h1> {{ actor.name }} </h1>
|
2024-12-02 22:18:47 -05:00
|
|
|
<button id="hench-console-log">Log data to console.</button>
|
2024-12-02 15:57:26 -05:00
|
|
|
<h2> Details: </h2>
|
2024-11-27 19:39:42 -05:00
|
|
|
|
|
|
|
<div id="hench-explicit-details">
|
2024-12-04 16:20:08 -05:00
|
|
|
<p>Name: <input type="text" class="hench-text-input" value="{{actor.name}}" data-field-path="name" /></p>
|
|
|
|
<p>Look: <input type="text" class="hench-text-input" value="{{actor.system.look}}" data-field-path="actor.system.look" /></p>
|
2024-11-27 19:39:42 -05:00
|
|
|
<div>
|
2024-12-02 15:57:26 -05:00
|
|
|
<span><b>Playbook:</b></span>
|
|
|
|
<select class="hench-hench-sheet-playbook-dropdown">
|
|
|
|
{{#each playbookKeys}}
|
|
|
|
<option value="{{this.key}}" {{#if this.selected}}selected{{/if}}>{{this.key}}</option>
|
|
|
|
{{/each}}
|
|
|
|
</select>
|
2024-11-27 19:39:42 -05:00
|
|
|
</div>
|
2024-12-02 15:57:26 -05:00
|
|
|
<h3> Details </h3>
|
|
|
|
<div>
|
|
|
|
<ul>
|
|
|
|
{{#each actor.system.details}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<b>{{this.question}}:</b>
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.details[{{@index}}].answer" value="{{this.answer}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<h3> Inclinations </h3>
|
|
|
|
<div>
|
|
|
|
<ul>
|
2024-12-04 16:20:08 -05:00
|
|
|
{{#each actor.system.fixedInclinations}}
|
2024-12-02 15:57:26 -05:00
|
|
|
<li>{{this}}</li>
|
|
|
|
{{/each}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.customInclination" value="{{actor.system.customInclination}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<h3>Mission Planning</h3>
|
|
|
|
<ul>
|
|
|
|
{{#each actor.system.missionPlanning}}
|
|
|
|
<li>{{this}}</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<p><b>Gear Limit</b>: {{actor.system.gearLimit}}</p>
|
|
|
|
|
|
|
|
<h3>Gear</h3>
|
|
|
|
<ul>
|
2024-12-03 23:30:16 -05:00
|
|
|
{{#each actor.system.fixedGear}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.fixedGear[{{@index}}].marked" {{#if this.marked}}checked{{/if}}/>
|
|
|
|
{{this.description}}
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.customGear.marked" {{#if actor.system.customGear.marked}}checked{{/if}}/>
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.customGear.description" value="{{actor.system.customGear.description}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
</ul>
|
|
|
|
|
2024-11-27 19:39:42 -05:00
|
|
|
<h3> Harm: </h3>
|
|
|
|
<div>
|
|
|
|
<h4>Level 1:</h4>
|
2024-12-02 15:57:26 -05:00
|
|
|
<ul>
|
|
|
|
{{#each actor.system.harm.levelOne}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.harm.levelOne[{{@index}}].marked" {{#if this.marked}}checked{{/if}} />
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.harm.levelOne[{{@index}}].description" value="{{this.description}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
<h4>Level 2:</h4>
|
2024-12-02 15:57:26 -05:00
|
|
|
<ul>
|
|
|
|
{{#each actor.system.harm.levelTwo}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.harm.levelTwo[{{@index}}].marked" {{#if this.marked}}checked{{/if}} />
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.harm.levelTwo[{{@index}}].description" value="{{this.description}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
<h4>Level 3:</h4>
|
2024-12-02 15:57:26 -05:00
|
|
|
<ul>
|
|
|
|
{{#each actor.system.harm.levelThree}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.harm.levelThree[{{@index}}].marked" {{#if this.marked}}checked{{/if}} />
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.harm.levelThree[{{@index}}].description" value="{{this.description}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
<h4>Level 3:</h4>
|
2024-12-02 15:57:26 -05:00
|
|
|
<ul>
|
|
|
|
{{#each actor.system.harm.levelFour}}
|
2024-12-04 16:20:08 -05:00
|
|
|
<li>
|
|
|
|
<input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.harm.levelFour[{{@index}}].marked" {{#if this.marked}}checked{{/if}} />
|
|
|
|
<input type="text" class="hench-text-input" data-field-path="system.harm.levelFour[{{@index}}].description" value="{{this.description}}" />
|
|
|
|
</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
</div>
|
|
|
|
<p>Stress: {{ actor.system.stress }}</p>
|
2024-12-03 23:30:16 -05:00
|
|
|
<ul>
|
|
|
|
{{#int2checkbox maxStress actor.system.stress}}
|
|
|
|
<li style="display:inline"><input type="checkbox" class="hench-checkbox-int-field" data-field-path="system.stress" data-value="{{index}}" {{#if marked}}checked{{/if}} /> </li>
|
|
|
|
{{/int2checkbox}}
|
|
|
|
</ul>
|
2024-12-02 15:57:26 -05:00
|
|
|
<h3>Experience Triggers</h3>
|
|
|
|
<ul>
|
|
|
|
{{#each actor.system.experienceTriggers}}
|
2024-12-03 23:30:16 -05:00
|
|
|
<li><input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.experienceTriggers[{{@index}}].marked" {{#if this.marked}}checked{{/if}} /> {{this.description}}</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
<p>Experience: {{ actor.system.experience }}</p>
|
2024-12-03 23:30:16 -05:00
|
|
|
<ul>
|
|
|
|
{{#int2checkbox maxExp actor.system.experience}}
|
|
|
|
<li style="display:inline"><input type="checkbox" class="hench-checkbox-int-field" data-field-path="system.experience" data-value="{{index}}" {{#if marked}}checked{{/if}} /> </li>
|
|
|
|
{{/int2checkbox}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
|
2024-12-02 15:57:26 -05:00
|
|
|
<h3>Advancements</h3>
|
|
|
|
<ul>
|
|
|
|
{{#each actor.system.baseAdvancements}}
|
2024-12-03 23:30:16 -05:00
|
|
|
<li><input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.baseAdvancements[{{@index}}].marked" {{#if this.marked}}checked{{/if}} /> {{this.description}}</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
<hr />
|
|
|
|
{{#each actor.system.exAdvancements}}
|
2024-12-03 23:30:16 -05:00
|
|
|
<li><input type="checkbox" class="hench-checkbox-toggle-field" data-field-path="system.exAdvancements[{{@index}}].marked" {{#if this.marked}}checked{{/if}} /> {{this.description}}</li>
|
2024-12-02 15:57:26 -05:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-11-27 19:39:42 -05:00
|
|
|
</div>
|
|
|
|
</form>
|