Update style Npc Sheet v2 + update Charac + delete old ui and add svg

Update Npc sheet style for v1.0
Update Character sheet rings / social / attribute
Delete old l5r-ui folder
Add asset svg
This commit is contained in:
Mandar
2020-12-19 04:44:12 +01:00
parent d3bcfba723
commit 10956e6677
106 changed files with 29486 additions and 1990 deletions

View File

@@ -39,10 +39,7 @@
<label class="attribute-label">
<strong>{{ localize 'l5r5e.attributes.voidpoints' }}</strong>
<input class="centered-input" type="text" name="data.void_points.current" value="{{data.void_points.current}}" data-dtype="Number"/>
</label>
<label class="attribute-label">
<strong>{{ localize 'l5r5e.max' }}</strong>
<input class="centered-input" type="text" name="data.void_points.max" value="{{data.void_points.max}}" data-dtype="Number" disabled/>
<input class="centered-input" type="text" name="data.void_points.max" value="/{{data.void_points.max}}" data-dtype="Number" disabled/>
</label>
</li>
</ul>

View File

@@ -1,5 +1,6 @@
<ul>
<li>{{!-- Npc Type (minion / adversary) --}}
<ul class="identity-list">
{{!-- Npc Type (minion / adversary) --}}
<li>
<select class="attribute-dtype" name="data.type">
{{#select data.type}}
{{#each data.types as |t|}}

View File

@@ -1,23 +1,23 @@
<ul class="social-content">
<li>
<label class="attribute-label centered-input">
{{ localize 'l5r5e.social.honor' }}
<strong>{{ localize 'l5r5e.social.honor' }}</strong>
<input class="centered-input" type="text" name="data.social.honor" value="{{data.social.honor}}" placeholder="0"/>
</label>
</li>
<li>
<label class="attribute-label centered-input">
{{ localize 'l5r5e.social.glory' }}
<strong>{{ localize 'l5r5e.social.glory' }}</strong>
<input class="centered-input" type="text" name="data.social.glory" value="{{data.social.glory}}" placeholder="0"/>
</label>
</li>
<li>
<label class="attribute-label centered-input">
{{ localize 'l5r5e.social.status' }}
<strong>{{ localize 'l5r5e.social.status' }}</strong>
<input class="centered-input" type="text" name="data.social.status" value="{{data.social.status}}" placeholder="0"/>
</label>
</li>
<li>
<li class="affinities">
{{!-- Strength --}}
<select class="attribute-dtype" name="data.rings_affinities.strength.ring">
{{#select data.rings_affinities.strength.ring}}
@@ -26,7 +26,7 @@
{{/each}}
{{/select}}
</select>
<input type="text" name="data.rings_affinities.strength.value" value="{{data.rings_affinities.strength.value}}" data-dtype="Number" placeholder="0"/>,
<input type="text" name="data.rings_affinities.strength.value" value="{{data.rings_affinities.strength.value}}" data-dtype="Number" placeholder="0"/>
{{!-- Weakness --}}
<select class="attribute-dtype" name="data.rings_affinities.weakness.ring">
{{#select data.rings_affinities.weakness.ring}}
@@ -37,7 +37,9 @@
</select>
<input type="text" name="data.rings_affinities.weakness.value" value="{{data.rings_affinities.weakness.value}}" data-dtype="Number" placeholder="0"/>
{{!-- Attitude --}}
<input type="text" name="data.attitude" value="{{data.attitude}}" data-dtype="String" placeholder=""/>
<h2>{{ localize 'l5r5e.attributes.title' }}</h2>
<label class="attitude">
<input type="text" name="data.attitude" value="{{data.attitude}}" data-dtype="String" placeholder=""/>
{{ localize 'l5r5e.social.attitude' }}
</label>
</li>
</ul>