mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 07:59:03 +01:00
Merge branch 'development' into feature/628-allow-override-range-measurement-settings
This commit is contained in:
commit
c445b2cbe0
18 changed files with 141 additions and 207 deletions
|
|
@ -25,11 +25,22 @@ export default class AdversarySheet extends DHBaseActorSheet {
|
||||||
};
|
};
|
||||||
|
|
||||||
static PARTS = {
|
static PARTS = {
|
||||||
sidebar: { template: 'systems/daggerheart/templates/sheets/actors/adversary/sidebar.hbs' },
|
sidebar: {
|
||||||
|
template: 'systems/daggerheart/templates/sheets/actors/adversary/sidebar.hbs',
|
||||||
|
scrollable: ['.shortcut-items-section']
|
||||||
|
},
|
||||||
header: { template: 'systems/daggerheart/templates/sheets/actors/adversary/header.hbs' },
|
header: { template: 'systems/daggerheart/templates/sheets/actors/adversary/header.hbs' },
|
||||||
features: { template: 'systems/daggerheart/templates/sheets/actors/adversary/features.hbs' },
|
features: {
|
||||||
notes: { template: 'systems/daggerheart/templates/sheets/actors/adversary/notes.hbs' },
|
template: 'systems/daggerheart/templates/sheets/actors/adversary/features.hbs',
|
||||||
effects: { template: 'systems/daggerheart/templates/sheets/actors/adversary/effects.hbs' }
|
scrollable: ['.feature-section']
|
||||||
|
},
|
||||||
|
notes: {
|
||||||
|
template: 'systems/daggerheart/templates/sheets/actors/adversary/notes.hbs'
|
||||||
|
},
|
||||||
|
effects: {
|
||||||
|
template: 'systems/daggerheart/templates/sheets/actors/adversary/effects.hbs',
|
||||||
|
scrollable: ['.effects-sections']
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @inheritdoc */
|
/** @inheritdoc */
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
|
||||||
static PARTS = {
|
static PARTS = {
|
||||||
sidebar: {
|
sidebar: {
|
||||||
id: 'sidebar',
|
id: 'sidebar',
|
||||||
|
scrollable: ['.shortcut-items-section'],
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/character/sidebar.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/character/sidebar.hbs'
|
||||||
},
|
},
|
||||||
header: {
|
header: {
|
||||||
|
|
@ -86,22 +87,27 @@ export default class CharacterSheet extends DHBaseActorSheet {
|
||||||
},
|
},
|
||||||
features: {
|
features: {
|
||||||
id: 'features',
|
id: 'features',
|
||||||
|
scrollable: ['.features-sections'],
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/character/features.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/character/features.hbs'
|
||||||
},
|
},
|
||||||
loadout: {
|
loadout: {
|
||||||
id: 'loadout',
|
id: 'loadout',
|
||||||
|
scrollable: ['.items-section'],
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/character/loadout.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/character/loadout.hbs'
|
||||||
},
|
},
|
||||||
inventory: {
|
inventory: {
|
||||||
id: 'inventory',
|
id: 'inventory',
|
||||||
|
scrollable: ['.items-section'],
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/character/inventory.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/character/inventory.hbs'
|
||||||
},
|
},
|
||||||
biography: {
|
biography: {
|
||||||
id: 'biography',
|
id: 'biography',
|
||||||
|
scrollable: ['.items-section'],
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/character/biography.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/character/biography.hbs'
|
||||||
},
|
},
|
||||||
effects: {
|
effects: {
|
||||||
id: 'effects',
|
id: 'effects',
|
||||||
|
scrollable: ['.effects-sections'],
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/character/effects.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/character/effects.hbs'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,10 @@ export default class DhCompanionSheet extends DHBaseActorSheet {
|
||||||
static PARTS = {
|
static PARTS = {
|
||||||
header: { template: 'systems/daggerheart/templates/sheets/actors/companion/header.hbs' },
|
header: { template: 'systems/daggerheart/templates/sheets/actors/companion/header.hbs' },
|
||||||
details: { template: 'systems/daggerheart/templates/sheets/actors/companion/details.hbs' },
|
details: { template: 'systems/daggerheart/templates/sheets/actors/companion/details.hbs' },
|
||||||
effects: { template: 'systems/daggerheart/templates/sheets/actors/companion/effects.hbs' }
|
effects: {
|
||||||
|
template: 'systems/daggerheart/templates/sheets/actors/companion/effects.hbs',
|
||||||
|
scrollable: ['.effects-sections']
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,13 @@ export default class DhpEnvironment extends DHBaseActorSheet {
|
||||||
/**@override */
|
/**@override */
|
||||||
static PARTS = {
|
static PARTS = {
|
||||||
header: { template: 'systems/daggerheart/templates/sheets/actors/environment/header.hbs' },
|
header: { template: 'systems/daggerheart/templates/sheets/actors/environment/header.hbs' },
|
||||||
features: { template: 'systems/daggerheart/templates/sheets/actors/environment/features.hbs' },
|
features: {
|
||||||
|
template: 'systems/daggerheart/templates/sheets/actors/environment/features.hbs',
|
||||||
|
scrollable: ['feature-section']
|
||||||
|
},
|
||||||
potentialAdversaries: {
|
potentialAdversaries: {
|
||||||
template: 'systems/daggerheart/templates/sheets/actors/environment/potentialAdversaries.hbs'
|
template: 'systems/daggerheart/templates/sheets/actors/environment/potentialAdversaries.hbs',
|
||||||
|
scrollable: ['items-sections']
|
||||||
},
|
},
|
||||||
notes: { template: 'systems/daggerheart/templates/sheets/actors/environment/notes.hbs' }
|
notes: { template: 'systems/daggerheart/templates/sheets/actors/environment/notes.hbs' }
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ export default class DHRoll extends Roll {
|
||||||
|
|
||||||
static async toMessage(roll, config) {
|
static async toMessage(roll, config) {
|
||||||
const cls = getDocumentClass('ChatMessage'),
|
const cls = getDocumentClass('ChatMessage'),
|
||||||
msg = {
|
msgData = {
|
||||||
type: this.messageType,
|
type: this.messageType,
|
||||||
user: game.user.id,
|
user: game.user.id,
|
||||||
title: roll.title,
|
title: roll.title,
|
||||||
|
|
@ -94,8 +94,16 @@ export default class DHRoll extends Roll {
|
||||||
rolls: [roll]
|
rolls: [roll]
|
||||||
};
|
};
|
||||||
config.selectedRollMode ??= game.settings.get('core', 'rollMode');
|
config.selectedRollMode ??= game.settings.get('core', 'rollMode');
|
||||||
if (roll._evaluated) return await cls.create(msg, { rollMode: config.selectedRollMode });
|
|
||||||
return msg;
|
if (roll._evaluated) {
|
||||||
|
const message = await cls.create(msgData, { rollMode: config.selectedRollMode });
|
||||||
|
|
||||||
|
if (game.modules.get('dice-so-nice')?.active) {
|
||||||
|
await game.dice3d.waitFor3DAnimationByMessageID(message.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
return message;
|
||||||
|
} else return msgData;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @inheritDoc */
|
/** @inheritDoc */
|
||||||
|
|
|
||||||
|
|
@ -99,46 +99,7 @@
|
||||||
"artist": ""
|
"artist": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [],
|
||||||
{
|
|
||||||
"name": "Cumbersome",
|
|
||||||
"description": "-1 to Finesse",
|
|
||||||
"img": "icons/commodities/metal/mail-plate-steel.webp",
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"key": "system.traits.finesse.value",
|
|
||||||
"mode": 2,
|
|
||||||
"value": "-1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_id": "hl0S2LrBY5Mg69q6",
|
|
||||||
"type": "base",
|
|
||||||
"system": {},
|
|
||||||
"disabled": false,
|
|
||||||
"duration": {
|
|
||||||
"startTime": null,
|
|
||||||
"combat": null
|
|
||||||
},
|
|
||||||
"origin": null,
|
|
||||||
"tint": "#ffffff",
|
|
||||||
"transfer": true,
|
|
||||||
"statuses": [],
|
|
||||||
"sort": 0,
|
|
||||||
"flags": {},
|
|
||||||
"_stats": {
|
|
||||||
"compendiumSource": null,
|
|
||||||
"duplicateSource": null,
|
|
||||||
"exportSource": null,
|
|
||||||
"coreVersion": "13.346",
|
|
||||||
"systemId": "daggerheart",
|
|
||||||
"systemVersion": "0.0.1",
|
|
||||||
"createdTime": 1753831987001,
|
|
||||||
"modifiedTime": 1753831987001,
|
|
||||||
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
|
|
||||||
},
|
|
||||||
"_key": "!items.effects!pK6dsNABKKp1CIGN.hl0S2LrBY5Mg69q6"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sort": 0,
|
"sort": 0,
|
||||||
"ownership": {
|
"ownership": {
|
||||||
"default": 0,
|
"default": 0,
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
"amount": 1
|
"amount": 1
|
||||||
},
|
},
|
||||||
"roll": {
|
"roll": {
|
||||||
"trait": "agility",
|
"trait": "strength",
|
||||||
"type": "attack",
|
"type": "attack",
|
||||||
"difficulty": null,
|
"difficulty": null,
|
||||||
"bonus": null,
|
"bonus": null,
|
||||||
|
|
@ -112,9 +112,9 @@
|
||||||
"exportSource": null,
|
"exportSource": null,
|
||||||
"coreVersion": "13.347",
|
"coreVersion": "13.347",
|
||||||
"systemId": "daggerheart",
|
"systemId": "daggerheart",
|
||||||
"systemVersion": "1.0.5",
|
"systemVersion": "1.0.6",
|
||||||
"createdTime": 1753828229603,
|
"createdTime": 1753828229603,
|
||||||
"modifiedTime": 1755430661659,
|
"modifiedTime": 1755633052433,
|
||||||
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
"lastModifiedBy": "VZIeX2YDvX338Zvr"
|
||||||
},
|
},
|
||||||
"_key": "!items!Vayg7CnRTFBrunjM"
|
"_key": "!items!Vayg7CnRTFBrunjM"
|
||||||
|
|
|
||||||
|
|
@ -99,46 +99,7 @@
|
||||||
"artist": ""
|
"artist": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [],
|
||||||
{
|
|
||||||
"name": "Cumbersome",
|
|
||||||
"description": "-1 to Finesse",
|
|
||||||
"img": "icons/commodities/metal/mail-plate-steel.webp",
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"key": "system.traits.finesse.value",
|
|
||||||
"mode": 2,
|
|
||||||
"value": "-1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_id": "8twXPJELZpvFWA5K",
|
|
||||||
"type": "base",
|
|
||||||
"system": {},
|
|
||||||
"disabled": false,
|
|
||||||
"duration": {
|
|
||||||
"startTime": null,
|
|
||||||
"combat": null
|
|
||||||
},
|
|
||||||
"origin": null,
|
|
||||||
"tint": "#ffffff",
|
|
||||||
"transfer": true,
|
|
||||||
"statuses": [],
|
|
||||||
"sort": 0,
|
|
||||||
"flags": {},
|
|
||||||
"_stats": {
|
|
||||||
"compendiumSource": null,
|
|
||||||
"duplicateSource": null,
|
|
||||||
"exportSource": null,
|
|
||||||
"coreVersion": "13.346",
|
|
||||||
"systemId": "daggerheart",
|
|
||||||
"systemVersion": "0.0.1",
|
|
||||||
"createdTime": 1753829466016,
|
|
||||||
"modifiedTime": 1753829466016,
|
|
||||||
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
|
|
||||||
},
|
|
||||||
"_key": "!items.effects!j5Pt1thLfcvopBij.8twXPJELZpvFWA5K"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sort": 0,
|
"sort": 0,
|
||||||
"ownership": {
|
"ownership": {
|
||||||
"default": 0,
|
"default": 0,
|
||||||
|
|
|
||||||
|
|
@ -99,46 +99,7 @@
|
||||||
"artist": ""
|
"artist": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [],
|
||||||
{
|
|
||||||
"name": "Cumbersome",
|
|
||||||
"description": "-1 to Finesse",
|
|
||||||
"img": "icons/commodities/metal/mail-plate-steel.webp",
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"key": "system.traits.finesse.value",
|
|
||||||
"mode": 2,
|
|
||||||
"value": "-1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_id": "f44KWDgCQeKYfccr",
|
|
||||||
"type": "base",
|
|
||||||
"system": {},
|
|
||||||
"disabled": false,
|
|
||||||
"duration": {
|
|
||||||
"startTime": null,
|
|
||||||
"combat": null
|
|
||||||
},
|
|
||||||
"origin": null,
|
|
||||||
"tint": "#ffffff",
|
|
||||||
"transfer": true,
|
|
||||||
"statuses": [],
|
|
||||||
"sort": 0,
|
|
||||||
"flags": {},
|
|
||||||
"_stats": {
|
|
||||||
"compendiumSource": null,
|
|
||||||
"duplicateSource": null,
|
|
||||||
"exportSource": null,
|
|
||||||
"coreVersion": "13.346",
|
|
||||||
"systemId": "daggerheart",
|
|
||||||
"systemVersion": "0.0.1",
|
|
||||||
"createdTime": 1753834816288,
|
|
||||||
"modifiedTime": 1753834816288,
|
|
||||||
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
|
|
||||||
},
|
|
||||||
"_key": "!items.effects!4e5pWxi2qohuGsWh.f44KWDgCQeKYfccr"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sort": 0,
|
"sort": 0,
|
||||||
"ownership": {
|
"ownership": {
|
||||||
"default": 0,
|
"default": 0,
|
||||||
|
|
|
||||||
|
|
@ -99,46 +99,7 @@
|
||||||
"artist": ""
|
"artist": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"effects": [
|
"effects": [],
|
||||||
{
|
|
||||||
"name": "Cumbersome",
|
|
||||||
"description": "-1 to Finesse",
|
|
||||||
"img": "icons/commodities/metal/mail-plate-steel.webp",
|
|
||||||
"changes": [
|
|
||||||
{
|
|
||||||
"key": "system.traits.finesse.value",
|
|
||||||
"mode": 2,
|
|
||||||
"value": "-1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"_id": "Z5MnVI8EOOgzRdXC",
|
|
||||||
"type": "base",
|
|
||||||
"system": {},
|
|
||||||
"disabled": false,
|
|
||||||
"duration": {
|
|
||||||
"startTime": null,
|
|
||||||
"combat": null
|
|
||||||
},
|
|
||||||
"origin": null,
|
|
||||||
"tint": "#ffffff",
|
|
||||||
"transfer": true,
|
|
||||||
"statuses": [],
|
|
||||||
"sort": 0,
|
|
||||||
"flags": {},
|
|
||||||
"_stats": {
|
|
||||||
"compendiumSource": null,
|
|
||||||
"duplicateSource": null,
|
|
||||||
"exportSource": null,
|
|
||||||
"coreVersion": "13.346",
|
|
||||||
"systemId": "daggerheart",
|
|
||||||
"systemVersion": "0.0.1",
|
|
||||||
"createdTime": 1753828072355,
|
|
||||||
"modifiedTime": 1753828072355,
|
|
||||||
"lastModifiedBy": "FecEtPuoQh6MpjQ0"
|
|
||||||
},
|
|
||||||
"_key": "!items.effects!TF85tKJetUjLwh54.Z5MnVI8EOOgzRdXC"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"sort": 0,
|
"sort": 0,
|
||||||
"ownership": {
|
"ownership": {
|
||||||
"default": 0,
|
"default": 0,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
17
styles/less/sheets/actors/adversary/effects.less
Normal file
17
styles/less/sheets/actors/adversary/effects.less
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
@import '../../../utils/colors.less';
|
||||||
|
|
||||||
|
.application.sheet.daggerheart.actor.dh-style.adversary {
|
||||||
|
.tab.effects {
|
||||||
|
.effects-sections {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
overflow-y: auto;
|
||||||
|
mask-image: linear-gradient(0deg, transparent 0%, black 5%);
|
||||||
|
padding-bottom: 20px;
|
||||||
|
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
17
styles/less/sheets/actors/companion/effects.less
Normal file
17
styles/less/sheets/actors/companion/effects.less
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
@import '../../../utils/colors.less';
|
||||||
|
|
||||||
|
.application.sheet.daggerheart.actor.dh-style.companion {
|
||||||
|
.tab.effects {
|
||||||
|
.effects-sections {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
overflow-y: auto;
|
||||||
|
mask-image: linear-gradient(0deg, transparent 0%, black 5%);
|
||||||
|
padding-bottom: 20px;
|
||||||
|
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
@import '../../../utils/colors.less';
|
||||||
|
|
||||||
|
.application.sheet.daggerheart.actor.dh-style.environment {
|
||||||
|
.tab.potentialAdversaries {
|
||||||
|
.items-section {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
overflow-y: auto;
|
||||||
|
mask-image: linear-gradient(0deg, transparent 0%, black 5%);
|
||||||
|
padding-bottom: 20px;
|
||||||
|
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: light-dark(@dark-blue, @golden) transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
@import './actors/adversary/header.less';
|
@import './actors/adversary/header.less';
|
||||||
@import './actors/adversary/sheet.less';
|
@import './actors/adversary/sheet.less';
|
||||||
@import './actors/adversary/sidebar.less';
|
@import './actors/adversary/sidebar.less';
|
||||||
|
@import './actors/adversary/effects.less';
|
||||||
|
|
||||||
@import './actors/character/biography.less';
|
@import './actors/character/biography.less';
|
||||||
@import './actors/character/effects.less';
|
@import './actors/character/effects.less';
|
||||||
|
|
@ -17,9 +18,11 @@
|
||||||
@import './actors/companion/details.less';
|
@import './actors/companion/details.less';
|
||||||
@import './actors/companion/header.less';
|
@import './actors/companion/header.less';
|
||||||
@import './actors/companion/sheet.less';
|
@import './actors/companion/sheet.less';
|
||||||
|
@import './actors/companion/effects.less';
|
||||||
|
|
||||||
@import './actors/environment/actions.less';
|
@import './actors/environment/actions.less';
|
||||||
@import './actors/environment/header.less';
|
@import './actors/environment/header.less';
|
||||||
|
@import './actors/environment/potentialAdversaries.less';
|
||||||
@import './actors/environment/sheet.less';
|
@import './actors/environment/sheet.less';
|
||||||
|
|
||||||
@import './items/beastform.less';
|
@import './items/beastform.less';
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
<section class='tab {{tabs.effects.cssClass}} {{tabs.effects.id}}' data-tab='{{tabs.effects.id}}'
|
<section class='tab {{tabs.effects.cssClass}} {{tabs.effects.id}}' data-tab='{{tabs.effects.id}}'
|
||||||
data-group='{{tabs.effects.group}}'>
|
data-group='{{tabs.effects.group}}'>
|
||||||
|
<div class="effects-sections">
|
||||||
{{> 'daggerheart.inventory-items'
|
{{> 'daggerheart.inventory-items'
|
||||||
title='DAGGERHEART.GENERAL.activeEffects'
|
title='DAGGERHEART.GENERAL.activeEffects'
|
||||||
type='effect'
|
type='effect'
|
||||||
|
|
@ -17,4 +18,5 @@
|
||||||
canCreate=true
|
canCreate=true
|
||||||
hideResources=true
|
hideResources=true
|
||||||
}}
|
}}
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
<section class='tab {{tabs.effects.cssClass}} {{tabs.effects.id}}' data-tab='{{tabs.effects.id}}'
|
<section class='tab {{tabs.effects.cssClass}} {{tabs.effects.id}}' data-tab='{{tabs.effects.id}}'
|
||||||
data-group='{{tabs.effects.group}}'>
|
data-group='{{tabs.effects.group}}'>
|
||||||
|
<div class="effects-sections">
|
||||||
{{> 'daggerheart.inventory-items'
|
{{> 'daggerheart.inventory-items'
|
||||||
title='DAGGERHEART.GENERAL.activeEffects'
|
title='DAGGERHEART.GENERAL.activeEffects'
|
||||||
type='effect'
|
type='effect'
|
||||||
|
|
@ -17,4 +18,5 @@
|
||||||
canCreate=true
|
canCreate=true
|
||||||
hideResources=true
|
hideResources=true
|
||||||
}}
|
}}
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
data-tab='{{tabs.potentialAdversaries.id}}'
|
data-tab='{{tabs.potentialAdversaries.id}}'
|
||||||
data-group='{{tabs.potentialAdversaries.group}}'
|
data-group='{{tabs.potentialAdversaries.group}}'
|
||||||
>
|
>
|
||||||
<div class="action-section">
|
<div class="items-section">
|
||||||
{{#each document.system.potentialAdversaries as |category categoryId|}}
|
{{#each document.system.potentialAdversaries as |category categoryId|}}
|
||||||
{{> 'daggerheart.inventory-items'
|
{{> 'daggerheart.inventory-items'
|
||||||
title=category.label
|
title=category.label
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue