Files
l5rx-chiaroscuro/system/templates/gm/monitor-tooltips/weapons.html
2021-08-14 13:17:17 +02:00

22 lines
396 B
HTML

{{#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}}