- NPC with all ring on strengths/weaknesses (CSS TODO). - Removed Custom tech "Links" as they are in fact "Bonds" and need more work.
32 lines
1.6 KiB
HTML
32 lines
1.6 KiB
HTML
<ul class="social-content">
|
|
<li>
|
|
<label class="attribute-label centered-input">
|
|
<strong>{{localize 'l5r5e.social.honor'}}</strong>
|
|
<input class="centered-input select-on-focus" type="number" name="data.social.honor" value="{{data.data.social.honor}}" data-dtype="Number" placeholder="0"/>
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label class="attribute-label centered-input">
|
|
<strong>{{localize 'l5r5e.social.glory'}}</strong>
|
|
<input class="centered-input select-on-focus" type="number" name="data.social.glory" value="{{data.data.social.glory}}" data-dtype="Number" placeholder="0"/>
|
|
</label>
|
|
</li>
|
|
<li>
|
|
<label class="attribute-label centered-input">
|
|
<strong>{{localize 'l5r5e.social.status'}}</strong>
|
|
<input class="centered-input select-on-focus" type="number" name="data.social.status" value="{{data.data.social.status}}" data-dtype="Number" placeholder="0"/>
|
|
</label>
|
|
</li>
|
|
<li class="affinities">
|
|
{{!-- Strength & Weakness --}}
|
|
{{#each data.stances as |stance|}}
|
|
<i class="i_{{stance}}" title="{{localizeRing stance}}"></i>
|
|
<input class="centered-input select-on-focus" type="number" name="data.rings_affinities.{{stance}}" value="{{lookup ../data.data.rings_affinities stance}}" data-dtype="Number" min="-9" max="9" placeholder="0"/>
|
|
{{/each}}
|
|
{{!-- Attitude --}}
|
|
<label class="attitude">
|
|
<input type="text" name="data.attitude" value="{{data.data.attitude}}" data-dtype="String" placeholder=""/>
|
|
{{localize 'l5r5e.social.attitude'}}
|
|
</label>
|
|
</li>
|
|
</ul> |