All checks were successful
Release Creation / build (release) Successful in 58s
25 lines
747 B
Handlebars
25 lines
747 B
Handlebars
<div class="item-to-chat">
|
|
<div class="intro-chat">
|
|
<h2>{{name}}</h2>
|
|
<ul>
|
|
<li><strong>Orientation : </strong>{{system.orientation}}</li>
|
|
<li><strong>Quote : </strong>{{system.quote}}</li>
|
|
|
|
{{#if (eq system.orientation "Upright")}}
|
|
<li><strong>Upright XP Trigger : </strong>{{system.bonus}}</li>
|
|
{{else}}
|
|
<li><strong>Reversed XP Trigger : </strong>{{system.penalty}}</li>
|
|
{{/if}}
|
|
|
|
<li><strong>Description : </strong>{{{system.description}}}</li>
|
|
|
|
{{#if (eq system.orientation "Upright")}}
|
|
<li><strong>Positive Effect : </strong>{{{system.positiveEffect}}}</li>
|
|
{{else}}
|
|
<li><strong>Negative Effect : </strong>{{{system.negativeEffect}}}</li>
|
|
{{/if}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div> |