more tooltips and color for "Gm Monitor"
This commit is contained in:
9
system/templates/gm/monitor-tooltips/armors.html
Normal file
9
system/templates/gm/monitor-tooltips/armors.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{{!-- Equipped Armors --}}
|
||||
<h2>{{localize 'l5r5e.armors.title'}}</h2>
|
||||
<section>
|
||||
<ul>
|
||||
{{#each armors as |armor|}}
|
||||
<li>{{{armor}}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</section>
|
||||
15
system/templates/gm/monitor-tooltips/global.html
Normal file
15
system/templates/gm/monitor-tooltips/global.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<section>
|
||||
<ul>
|
||||
{{!-- Ninjo/Giri --}}
|
||||
<li><b>{{localize 'l5r5e.social.ninjo'}}</b> : {{actorData.social.ninjo}}</li>
|
||||
<li><b>{{localize 'l5r5e.social.giri'}}</b> : {{actorData.social.giri}}</li>
|
||||
|
||||
{{!-- Bushido Tenet --}}
|
||||
<li><b>{{localize 'l5r5e.social.bushido_tenets.paramount'}}</b> : {{actorData.social.bushido_tenets.paramount}}</li>
|
||||
<li><b>{{localize 'l5r5e.social.bushido_tenets.less_significant'}}</b> : {{actorData.social.bushido_tenets.less_significant}}</li>
|
||||
|
||||
{{!-- Peculiarities --}}
|
||||
<li><b>{{localize 'l5r5e.social.npc.advantages'}}</b> : {{advantages}}</li>
|
||||
<li><b>{{localize 'l5r5e.social.npc.disadvantages'}}</b> : {{disadvantages}}</li>
|
||||
</ul>
|
||||
</section>
|
||||
21
system/templates/gm/monitor-tooltips/weapons.html
Normal file
21
system/templates/gm/monitor-tooltips/weapons.html
Normal 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}}
|
||||
Reference in New Issue
Block a user