mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
Added evasion to party resources
This commit is contained in:
parent
02cca277da
commit
5cdceca1e4
3 changed files with 27 additions and 1 deletions
|
|
@ -155,6 +155,26 @@ body.game:is(.performance-low, .noblur) {
|
|||
}
|
||||
}
|
||||
|
||||
.stat-section {
|
||||
position: relative;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
background-color: light-dark(transparent, @dark-blue);
|
||||
color: light-dark(@dark-blue, @golden);
|
||||
padding: 5px 10px;
|
||||
border: 1px solid light-dark(@dark-blue, @golden);
|
||||
border-radius: 3px;
|
||||
align-items: center;
|
||||
width: fit-content;
|
||||
|
||||
h4 {
|
||||
font-size: var(--font-size-12);
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
color: light-dark(@dark-blue, @golden);
|
||||
}
|
||||
}
|
||||
|
||||
.threshold-section {
|
||||
display: flex;
|
||||
align-self: center;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"id": "daggerheart",
|
||||
"title": "Daggerheart",
|
||||
"description": "An unofficial implementation of the Daggerheart system",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.2",
|
||||
"compatibility": {
|
||||
"minimum": "14.359",
|
||||
"verified": "14.359",
|
||||
|
|
|
|||
|
|
@ -87,6 +87,12 @@
|
|||
</div>
|
||||
{{/unless}}
|
||||
|
||||
{{#if (eq actor.type 'character')}}
|
||||
<div class="stat-section">
|
||||
<h4>{{localize "DAGGERHEART.GENERAL.evasion"}}: {{actor.system.evasion}}</h4>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#unless (eq actor.type 'companion')}}
|
||||
<div class="threshold-section">
|
||||
<h4 class="threshold-label">{{localize "DAGGERHEART.GENERAL.DamageThresholds.minor"}}</h4>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue