mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
.
This commit is contained in:
parent
c6bf482b07
commit
8b7a455410
11 changed files with 162 additions and 61 deletions
|
|
@ -102,7 +102,19 @@ Hooks.once('init', () => {
|
|||
initial: 0,
|
||||
max: 4,
|
||||
reverse: false,
|
||||
label: 'Corruption'
|
||||
label: 'Corruption',
|
||||
images: {
|
||||
full: {
|
||||
value: 'icons/magic/fire/barrier-wall-explosion-orange.webp',
|
||||
isPath: true,
|
||||
isNotTransparent: true
|
||||
},
|
||||
empty: {
|
||||
value: 'icons/magic/fire/barrier-wall-flame-ring-blue.webp',
|
||||
isPath: true,
|
||||
isNotTransparent: true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
CONFIG.DH.ACTOR.characterResources.hunger = {
|
||||
|
|
@ -110,7 +122,15 @@ Hooks.once('init', () => {
|
|||
initial: 0,
|
||||
max: 6,
|
||||
reverse: false,
|
||||
label: 'Hunger'
|
||||
label: 'Hunger',
|
||||
images: {
|
||||
full: {
|
||||
value: 'fa-solid fa-burger'
|
||||
},
|
||||
empty: {
|
||||
value: 'fa-regular fa-burger'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
CONFIG.DH.ACTOR.characterResources.glitched = {
|
||||
|
|
@ -118,7 +138,15 @@ Hooks.once('init', () => {
|
|||
initial: 0,
|
||||
max: 6,
|
||||
reverse: false,
|
||||
label: 'Glitched'
|
||||
label: 'Glitched',
|
||||
images: {
|
||||
full: {
|
||||
value: 'fa-solid fa-robot'
|
||||
},
|
||||
empty: {
|
||||
value: 'fa-regular fa-robot'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
game.system.registeredTriggers = new game.system.api.data.RegisteredTriggers();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue