76 lines
2.8 KiB
Handlebars
76 lines
2.8 KiB
Handlebars
<div class="tab threat sheet-part" data-group="sheet" data-tab="threat">
|
|
<h3>{{ localize 'ADVERSITY.threat_details' }}</h3>
|
|
<div class="grid grid-3col">
|
|
{{!-- Menace --}}
|
|
<div class="card npc-card">
|
|
<h4 class="align-center"><i class="fas fa-exclamation-triangle"></i> {{ localize 'ADVERSITY.threat' }}</h4>
|
|
<ul class="unstyled">
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.attack' }}:</strong>
|
|
{{ npcThreatLevel "attack" system.threat.value }}
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.vigor' }}:</strong>
|
|
{{ npcThreatLevel "vigor" system.threat.value }}
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.wounds' }}:</strong>
|
|
{{ npcThreatLevel "minorWound" system.threat.value }} /
|
|
{{ npcThreatLevel "majorWound" system.threat.value }} /
|
|
{{ npcThreatLevel "deadlyWound" system.threat.value }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{{!-- Experience --}}
|
|
<div class="card npc-card">
|
|
<h4 class="align-center"><i class="fas fa-star"></i> {{ localize 'ADVERSITY.experience' }}</h4>
|
|
<ul class="unstyled">
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.action' }}:</strong>
|
|
{{ npcExperienceLevel "action" system.experience.value }}D
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.specialties' }}:</strong>
|
|
{{ npcExperienceLevel "specialties" system.experience.value }}
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.rerolls' }}:</strong>
|
|
{{ npcExperienceLevel "rerolls" system.experience.value }}D
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.contact' }}:</strong>
|
|
{{ npcExperienceLevel "contact" system.experience.value }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{{!-- Role --}}
|
|
<div class="card npc-card">
|
|
<h4 class="align-center"><i class="fas fa-users"></i> {{ localize 'ADVERSITY.role' }}</h4>
|
|
<ul class="unstyled">
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.reaction' }}:</strong>
|
|
{{ npcRoleLevel "reaction" system.role.value }} + {{ npcRoleLevel "reaction_bonus" system.role.value }}
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.pools' }}:</strong>
|
|
{{ npcRoleLevel "pools" system.role.value }}D
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.gear' }}:</strong>
|
|
{{ npcRoleLevel "gear" system.role.value }}
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.gear_hindrance' }}:</strong>
|
|
{{ npcRoleLevel "gear_hindrance" system.role.value }}
|
|
</li>
|
|
<li>
|
|
<strong>{{ localize 'ADVERSITY.protection' }}:</strong>
|
|
{{ npcRoleLevel "protection" system.role.value }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|