more tooltips and color for "Gm Monitor"

This commit is contained in:
Vlyan
2021-08-14 13:17:17 +02:00
parent c426e457ff
commit f4de1e9fc8
11 changed files with 219 additions and 117 deletions

View File

@@ -0,0 +1,21 @@
{{#if readied}}
<h2>{{localize 'l5r5e.weapons.readied'}}</h2>
<section>
<ul>
{{#each readied as |weapon|}}
<li>{{{weapon}}}</li>
{{/each}}
</ul>
</section>
{{/if}}
{{#if sheathed}}
<h2>{{localize 'l5r5e.weapons.sheathed'}}</h2>
<section>
<ul>
{{#each sheathed as |weapon|}}
<li>{{{weapon}}}</li>
{{/each}}
</ul>
</section>
{{/if}}