Various fixes
All checks were successful
Release Creation / build (release) Successful in 51s

This commit is contained in:
2025-06-15 16:32:47 +02:00
parent d03c5f2c1e
commit eea83aa10e
9 changed files with 62 additions and 13 deletions

View File

@@ -10,7 +10,7 @@
<h2>{{localize "HELLBORN.Label.statRoll"}}</h2>
{{/if}}
{{#if weapon}}
<h2>Weapon : {{weapon.name}}</strong></h2>
<h2>{{weapon.name}}</strong></h2>
{{/if}}
<ul>
@@ -18,7 +18,7 @@
<li><strong>Properties :</strong> {{weapon.system.properties}}</li>
<li>
<span>
<span><strong>{{localize rollItem.label}} : {{rollItem.value}}</strong></span>
<span class="chat-roll-label"><strong>{{localize rollItem.label}} : {{rollItem.value}}</strong></span>
<span>{{localize "HELLBORN.Label.difficulty"}} : {{difficulty}}</span>
</span>
</li>
@@ -30,7 +30,7 @@
<li>With Disadvantages ! </li>
{{/if}}
<li>Results :
<li class="chat-results-spacing">Results :
{{#each results as |result|}}
{{result.result}}
{{/each}}
@@ -38,11 +38,11 @@
{{#if isSuccess}}
{{#if satanicSuccess}}
<li class="result-satanic-success">
<li class="chat-results-spacing result-satanic-success">
{{localize "HELLBORN.Label.satanicSuccess"}}
</li>
{{else}}
<li class="result-success">
<li class="chat-results-spacing result-success">
{{localize "HELLBORN.Label.success"}}
</li>
{{/if}}
@@ -51,18 +51,18 @@
{{#if isFailure}}
{{#if fiendishFailure}}
<li class="result-fiendish-failure">
<li class="chat-results-spacing result-fiendish-failure">
{{localize "HELLBORN.Label.fiendishFailure"}}
</li>
{{else}}
<li class="result-failure">
<li class="chat-results-spacing result-failure">
{{localize "HELLBORN.Label.failure"}}
</li>
{{/if}}
{{/if}}
{{#if (eq resultType "unknown")}}
<li class="result-unknown">
<li class="chat-results-spacing result-unknown">
{{localize "HELLBORN.Label.unknown"}}
</li>
{{/if}}