mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
Merge branch 'main' into feature/89-gm-fear-display
This commit is contained in:
commit
6646cf63d7
355 changed files with 4995 additions and 2576 deletions
|
|
@ -100,6 +100,9 @@ Hooks.once('init', () => {
|
|||
|
||||
game.socket.on(`system.${SYSTEM.id}`, handleSocketEvent);
|
||||
|
||||
// Make Compendium Dialog resizable
|
||||
foundry.applications.sidebar.apps.Compendium.DEFAULT_OPTIONS.window.resizable = true;
|
||||
|
||||
registerDHSettings();
|
||||
RegisterHandlebarsHelpers.registerHelpers();
|
||||
|
||||
|
|
|
|||
|
|
@ -37,9 +37,10 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
attackRoll: this.attackRoll,
|
||||
tabToLoadout: () => this.domainCardsTab(false),
|
||||
tabToVault: () => this.domainCardsTab(true),
|
||||
sendToVault: (_, button) => this.moveDomainCard(button, true),
|
||||
sentToLoadout: (_, button) => this.moveDomainCard(button, false),
|
||||
sendToVault: this.moveDomainCard,
|
||||
sendToLoadout: this.moveDomainCard,
|
||||
useDomainCard: this.useDomainCard,
|
||||
removeCard: this.removeDomainCard,
|
||||
selectClass: this.selectClass,
|
||||
selectSubclass: this.selectSubclass,
|
||||
selectAncestry: this.selectAncestry,
|
||||
|
|
@ -640,7 +641,8 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
this.render();
|
||||
}
|
||||
|
||||
static async moveDomainCard(button, toVault) {
|
||||
static async moveDomainCard(_, button) {
|
||||
const toVault = button.dataset.action === 'sendToVault';
|
||||
if (!toVault && this.document.system.domainCards.loadout.length >= this.document.system.domainData.maxLoadout) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -655,6 +657,7 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
const cls = getDocumentClass('ChatMessage');
|
||||
const systemData = {
|
||||
title: `${game.i18n.localize('DAGGERHEART.Chat.DomainCard.Title')} - ${capitalize(button.dataset.domain)}`,
|
||||
origin: this.document.id,
|
||||
img: card.img,
|
||||
name: card.name,
|
||||
description: card.system.effect,
|
||||
|
|
@ -673,6 +676,13 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
cls.create(msg.toObject());
|
||||
}
|
||||
|
||||
static async removeDomainCard(_, button) {
|
||||
if (button.dataset.type === 'domainCard') {
|
||||
const card = this.document.items.find(x => x.uuid === button.dataset.key);
|
||||
await card.delete();
|
||||
}
|
||||
}
|
||||
|
||||
static async selectClass() {
|
||||
(await game.packs.get('daggerheart.classes'))?.render(true);
|
||||
}
|
||||
|
|
@ -872,6 +882,7 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
const cls = getDocumentClass('ChatMessage');
|
||||
const systemData = {
|
||||
title: game.i18n.localize('DAGGERHEART.Chat.FeatureTitle'),
|
||||
origin: this.document.id,
|
||||
img: item.img,
|
||||
name: item.name,
|
||||
description: item.system.description,
|
||||
|
|
@ -902,6 +913,7 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
: type === 'community'
|
||||
? game.i18n.localize('DAGGERHEART.Chat.FoundationCard.CommunityTitle')
|
||||
: game.i18n.localize('DAGGERHEART.Chat.FoundationCard.SubclassFeatureTitle'),
|
||||
origin: this.document.id,
|
||||
img: item.img,
|
||||
name: item.name,
|
||||
description: item.system.description,
|
||||
|
|
@ -929,14 +941,20 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
const title = `${item.name} - ${game.i18n.localize(`DAGGERHEART.Sheets.PC.DomainCard.${capitalize(button.dataset.key)}Title`)}`;
|
||||
|
||||
const cls = getDocumentClass('ChatMessage');
|
||||
const systemData = {
|
||||
title: game.i18n.localize('DAGGERHEART.Chat.FoundationCard.SubclassFeatureTitle'),
|
||||
origin: this.document.id,
|
||||
name: title,
|
||||
img: item.img,
|
||||
description: ability.description
|
||||
};
|
||||
const msg = new cls({
|
||||
type: 'abilityUse',
|
||||
user: game.user.id,
|
||||
system: systemData,
|
||||
content: await foundry.applications.handlebars.renderTemplate(
|
||||
'systems/daggerheart/templates/chat/ability-use.hbs',
|
||||
{
|
||||
title: game.i18n.localize('DAGGERHEART.Chat.FoundationCard.SubclassFeatureTitle'),
|
||||
card: { name: title, img: item.img, description: ability.description }
|
||||
}
|
||||
systemData
|
||||
)
|
||||
});
|
||||
|
||||
|
|
@ -948,14 +966,19 @@ export default class PCSheet extends DaggerheartSheet(ActorSheetV2) {
|
|||
const item = this.document.items.find(x => x.uuid === button.dataset.id);
|
||||
|
||||
const cls = getDocumentClass('ChatMessage');
|
||||
const systemData = {
|
||||
title: game.i18n.localize('DAGGERHEART.Chat.FoundationCard.SubclassFeatureTitle'),
|
||||
origin: this.document.id,
|
||||
name: item.name,
|
||||
img: item.img,
|
||||
description: item.system.description
|
||||
};
|
||||
const msg = new cls({
|
||||
user: game.user.id,
|
||||
system: systemData,
|
||||
content: await foundry.applications.handlebars.renderTemplate(
|
||||
'systems/daggerheart/templates/chat/ability-use.hbs',
|
||||
{
|
||||
title: game.i18n.localize('DAGGERHEART.Chat.FoundationCard.SubclassFeatureTitle'),
|
||||
card: { name: item.name, img: item.img, description: item.system.description }
|
||||
}
|
||||
systemData
|
||||
)
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,12 @@ export default class DhpAbilityUse extends foundry.abstract.TypeDataModel {
|
|||
|
||||
return {
|
||||
title: new fields.StringField({}),
|
||||
origin: new fields.StringField({}),
|
||||
img: new fields.StringField({}),
|
||||
name: new fields.StringField({}),
|
||||
description: new fields.StringField({}),
|
||||
actions: new fields.ArrayField(
|
||||
new fields.SchemaField({
|
||||
new fields.ObjectField({
|
||||
name: new fields.StringField({}),
|
||||
damage: new fields.SchemaField({
|
||||
type: new fields.StringField({}),
|
||||
|
|
@ -19,11 +20,11 @@ export default class DhpAbilityUse extends foundry.abstract.TypeDataModel {
|
|||
value: new fields.StringField({})
|
||||
}),
|
||||
cost: new fields.SchemaField({
|
||||
type: new fields.StringField({ nullable: true }),
|
||||
value: new fields.NumberField({ nullable: true })
|
||||
type: new fields.StringField({}),
|
||||
value: new fields.NumberField({})
|
||||
}),
|
||||
target: new fields.SchemaField({
|
||||
type: new fields.StringField({})
|
||||
type: new fields.StringField({ nullable: true })
|
||||
})
|
||||
})
|
||||
)
|
||||
|
|
|
|||
|
|
@ -5,12 +5,15 @@ import { GMUpdateEvent, socketEvent } from '../helpers/socket.mjs';
|
|||
import { setDiceSoNiceForDualityRoll } from '../helpers/utils.mjs';
|
||||
|
||||
export default class DhpActor extends Actor {
|
||||
_preCreate(data, changes, user) {
|
||||
if (data.type === 'pc') {
|
||||
data.prototypeToken = { actorLink: true, disposition: 1, sight: { enabled: true } };
|
||||
}
|
||||
|
||||
super._preCreate(data, changes, user);
|
||||
async _preCreate(data, options, user) {
|
||||
if ( (await super._preCreate(data, options, user)) === false ) return false;
|
||||
|
||||
// Configure prototype token settings
|
||||
const prototypeToken = {};
|
||||
if ( this.type === "pc" ) Object.assign(prototypeToken, {
|
||||
sight: { enabled: true }, actorLink: true, disposition: CONST.TOKEN_DISPOSITIONS.FRIENDLY
|
||||
});
|
||||
this.updateSource({ prototypeToken });
|
||||
}
|
||||
|
||||
prepareData() {
|
||||
|
|
@ -307,10 +310,20 @@ export default class DhpActor extends Actor {
|
|||
let update = {};
|
||||
switch (type) {
|
||||
case SYSTEM.GENERAL.healingTypes.health.id:
|
||||
update = { 'system.resources.health.value': Math.max(this.system.resources.health.value - healing, 0) };
|
||||
update = {
|
||||
'system.resources.health.value': Math.min(
|
||||
this.system.resources.health.value + healing,
|
||||
this.system.resources.health.max
|
||||
)
|
||||
};
|
||||
break;
|
||||
case SYSTEM.GENERAL.healingTypes.stress.id:
|
||||
update = { 'system.resources.stress.value': Math.max(this.system.resources.stress.value - healing, 0) };
|
||||
update = {
|
||||
'system.resources.stress.value': Math.min(
|
||||
this.system.resources.stress.value + healing,
|
||||
this.system.resources.stress.max
|
||||
)
|
||||
};
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -343,7 +356,10 @@ export default class DhpActor extends Actor {
|
|||
}
|
||||
|
||||
if (action.cost.type != null && action.cost.value != null) {
|
||||
if (this.system.resources[action.cost.type].value < action.cost.value - 1) {
|
||||
if (
|
||||
this.system.resources[action.cost.type].value - action.cost.value <=
|
||||
this.system.resources[action.cost.type].min
|
||||
) {
|
||||
ui.notifications.error(game.i18n.localize(`Insufficient ${action.cost.type} to use this ability`));
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo
|
|||
element.addEventListener('click', event => this.selectAdvantage.bind(this)(event, data.message))
|
||||
);
|
||||
html.querySelectorAll('.ability-use-button').forEach(element =>
|
||||
element.addEventListener('click', this.abilityUseButton.bind(this)(event, data.message))
|
||||
element.addEventListener('click', event => this.abilityUseButton.bind(this)(event, data.message))
|
||||
);
|
||||
};
|
||||
|
||||
|
|
@ -134,6 +134,7 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo
|
|||
event.stopPropagation();
|
||||
|
||||
const action = message.system.actions[Number.parseInt(event.currentTarget.dataset.index)];
|
||||
await game.user.character.useAction(action);
|
||||
const actor = game.actors.get(message.system.origin);
|
||||
await actor.useAction(action);
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "ncQG0s0ttAPObaeV",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748033779155,
|
||||
"modifiedTime": 1748033799399,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710066261,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!D5HUGwdizhBVZ0RW"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "3znRxBqsK0lOJhvJ",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748034185325,
|
||||
"modifiedTime": 1748034212853,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710073183,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!VfUbJwGU4Cka0xLP"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "l94HTIXSvdZG3zIh",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748028817729,
|
||||
"modifiedTime": 1748028856597,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710083736,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!NkSKDXGNNiOUlFqm"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "ncQG0s0ttAPObaeV",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -39,8 +39,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748033854379,
|
||||
"modifiedTime": 1748033877334,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710088872,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!ovxuqhl01XZSwx2n"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "AzwvgmcvToIUGYti",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748032226905,
|
||||
"modifiedTime": 1748032258303,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710097141,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!TpaoHSJ3npjWiBOf"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "3znRxBqsK0lOJhvJ",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748034225886,
|
||||
"modifiedTime": 1748034251807,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710182918,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!elb6ZVertgu6OdKA"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
{
|
||||
"name": "Combo Strikes",
|
||||
"type": "feature",
|
||||
"_id": "RNC8NT8F6x73gRZi",
|
||||
"img": "icons/svg/item-bag.svg",
|
||||
"system": {
|
||||
"actionType": "action",
|
||||
"featureType": {
|
||||
"type": "normal",
|
||||
"data": {
|
||||
"property": "spellcastingTrait",
|
||||
"max": 1,
|
||||
"numbers": {}
|
||||
}
|
||||
},
|
||||
"refreshData": null,
|
||||
"multiclass": null,
|
||||
"disabled": false,
|
||||
"description": "<p>After making a damage roll with a Melee weapon but before dealing that damage to the target, mark a Stress to start a combo strike.</p><p>When you do, roll a Combo Die and note its value. Then, roll another Combo Die. If the value of the second die is equal to or greater than your first Combo Die, continue rolling additional dice until the latest Combo Die’s value is less than the roll that preceeded it. Total all rolled Combo Dice and add the value to your weapon’s damage.</p><p>Your Combo Die starts as a d4. When you level up, once per tier you may use one of your advancement options to increase your Combo Die instead.</p>",
|
||||
"effects": {},
|
||||
"actions": [],
|
||||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
},
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748031102847,
|
||||
"modifiedTime": 1748031132259,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
},
|
||||
"_key": "!items!RNC8NT8F6x73gRZi"
|
||||
}
|
||||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "l94HTIXSvdZG3zIh",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748028774087,
|
||||
"modifiedTime": 1748028862047,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710255976,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!bZxfyPTZ6rsakyA2"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "imOcur5Zv8WcMHXz",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748030942761,
|
||||
"modifiedTime": 1748030954992,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710261406,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!ftUZznLFJ5xbcxcu"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "84neMcqoIRAoIvXP",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748030888304,
|
||||
"modifiedTime": 1748030905059,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710266972,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!FSx2ojskU0pRE72g"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
{
|
||||
"name": "I Am The Weapon",
|
||||
"type": "feature",
|
||||
"_id": "ihtvQaH18eG56RWY",
|
||||
"img": "icons/svg/item-bag.svg",
|
||||
"system": {
|
||||
"actionType": "passive",
|
||||
"featureType": {
|
||||
"type": "normal",
|
||||
"data": {
|
||||
"property": "spellcastingTrait",
|
||||
"max": 1,
|
||||
"numbers": {}
|
||||
}
|
||||
},
|
||||
"refreshData": null,
|
||||
"multiclass": null,
|
||||
"disabled": false,
|
||||
"description": "<p>While you don’t have any equipped weapons, your evasion has a +1 bonus. Your unarmed strikes are considered a Melee weapon, use the trait of your choice, and deal d10+your tier phy damage.</p>",
|
||||
"effects": {},
|
||||
"actions": [],
|
||||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
},
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748031035883,
|
||||
"modifiedTime": 1748031085182,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
},
|
||||
"_key": "!items!ihtvQaH18eG56RWY"
|
||||
}
|
||||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "aI54jXjBNrAOm7R8",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748033044907,
|
||||
"modifiedTime": 1748033065659,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710332116,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!UZ9UjZArSJh6UHXG"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "3QoIMKARHfRnBvQJ",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"NqO2eQGMjrvUO6v9": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1747991384366,
|
||||
"modifiedTime": 1747991421484,
|
||||
"lastModifiedBy": "NqO2eQGMjrvUO6v9"
|
||||
"modifiedTime": 1748710338024,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!Ddk0PAgwM4VLRbyY"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "ncQG0s0ttAPObaeV",
|
||||
"sort": 150000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748033817443,
|
||||
"modifiedTime": 1748033834348,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710347004,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!qFq7kynAZhbWTbT5"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "3znRxBqsK0lOJhvJ",
|
||||
"sort": 150000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748034146678,
|
||||
"modifiedTime": 1748034158455,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710386929,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!t3tLoq4h9wgQD7E9"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "8I0S9f458qu36qSW",
|
||||
"sort": 100000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748034883014,
|
||||
"modifiedTime": 1748034907509,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710410194,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!5msGbQyFwdwdFdYs"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "aI54jXjBNrAOm7R8",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -40,8 +40,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748033372327,
|
||||
"modifiedTime": 1748033499150,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710416279,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!jXfGnLnU8PswJYJd"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "8I0S9f458qu36qSW",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748034934147,
|
||||
"modifiedTime": 1748034955883,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710421634,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!ofBmJIn6NWxA0wPz"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "3QoIMKARHfRnBvQJ",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"NqO2eQGMjrvUO6v9": 3
|
||||
|
|
@ -40,8 +40,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1747991484460,
|
||||
"modifiedTime": 1747991546148,
|
||||
"lastModifiedBy": "NqO2eQGMjrvUO6v9"
|
||||
"modifiedTime": 1748710434139,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!8uORDWrXtNFzA00U"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "84neMcqoIRAoIvXP",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748030780267,
|
||||
"modifiedTime": 1748030834985,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710475164,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!b4O4r2HPbWU8s59q"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "AzwvgmcvToIUGYti",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748032185608,
|
||||
"modifiedTime": 1748032213243,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710477647,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!fPGn9JNV24nt1G9d"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "AzwvgmcvToIUGYti",
|
||||
"sort": 150000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748032274441,
|
||||
"modifiedTime": 1748032300923,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710492033,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!PhHOmsoYUDC42by6"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
{
|
||||
"name": "Staggering Strike",
|
||||
"type": "feature",
|
||||
"_id": "xC0ZG862KrjHGHlx",
|
||||
"img": "icons/svg/item-bag.svg",
|
||||
"system": {
|
||||
"actionType": "action",
|
||||
"featureType": {
|
||||
"type": "normal",
|
||||
"data": {
|
||||
"property": "spellcastingTrait",
|
||||
"max": 1,
|
||||
"numbers": {}
|
||||
}
|
||||
},
|
||||
"refreshData": null,
|
||||
"multiclass": null,
|
||||
"disabled": false,
|
||||
"description": "<p>Spend 3 Hope when you hit an adversary to also deal them a Stress and make them temporarily Staggered.</p><p>While Staggered, all attack rolls they make are at disadvantage.</p>",
|
||||
"effects": {},
|
||||
"actions": [],
|
||||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
},
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748030990710,
|
||||
"modifiedTime": 1748031014128,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
},
|
||||
"_key": "!items!xC0ZG862KrjHGHlx"
|
||||
}
|
||||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "8I0S9f458qu36qSW",
|
||||
"sort": 150000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748034976746,
|
||||
"modifiedTime": 1748034998077,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710516187,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!ONtJ7r2g6tN5q6Ga"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "imOcur5Zv8WcMHXz",
|
||||
"sort": 200000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -39,8 +39,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748030398960,
|
||||
"modifiedTime": 1748030576414,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710525532,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!rlpNYKW18FX4Hw7t"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "ncQG0s0ttAPObaeV",
|
||||
"sort": 125000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748033750328,
|
||||
"modifiedTime": 1748033766963,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710593717,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!J3TdB5ZsmyJ68rxZ"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
"type": "class"
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"folder": "l94HTIXSvdZG3zIh",
|
||||
"sort": 150000,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"ei8OkswTzyDp4IGC": 3
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748028880107,
|
||||
"modifiedTime": 1748028893170,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
"modifiedTime": 1748710640932,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!items!Dy0lco20C0Nk6yQo"
|
||||
}
|
||||
|
|
|
|||
23
src/packs/class-features/folders_Bard_3QoIMKARHfRnBvQJ.json
Normal file
23
src/packs/class-features/folders_Bard_3QoIMKARHfRnBvQJ.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Bard",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "3QoIMKARHfRnBvQJ",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709671341,
|
||||
"modifiedTime": 1748709671341,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!3QoIMKARHfRnBvQJ"
|
||||
}
|
||||
23
src/packs/class-features/folders_Druid_l94HTIXSvdZG3zIh.json
Normal file
23
src/packs/class-features/folders_Druid_l94HTIXSvdZG3zIh.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Druid",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "l94HTIXSvdZG3zIh",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709677349,
|
||||
"modifiedTime": 1748709677349,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!l94HTIXSvdZG3zIh"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Guardian",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "imOcur5Zv8WcMHXz",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709688824,
|
||||
"modifiedTime": 1748709688824,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!imOcur5Zv8WcMHXz"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Ranger",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "84neMcqoIRAoIvXP",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709694559,
|
||||
"modifiedTime": 1748709694559,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!84neMcqoIRAoIvXP"
|
||||
}
|
||||
23
src/packs/class-features/folders_Rogue_AzwvgmcvToIUGYti.json
Normal file
23
src/packs/class-features/folders_Rogue_AzwvgmcvToIUGYti.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Rogue",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "AzwvgmcvToIUGYti",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709700301,
|
||||
"modifiedTime": 1748709700301,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!AzwvgmcvToIUGYti"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Seraph",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "aI54jXjBNrAOm7R8",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709709654,
|
||||
"modifiedTime": 1748709709654,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!aI54jXjBNrAOm7R8"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Sorcerer",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "ncQG0s0ttAPObaeV",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709715969,
|
||||
"modifiedTime": 1748709715969,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!ncQG0s0ttAPObaeV"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Warrior",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "3znRxBqsK0lOJhvJ",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709756134,
|
||||
"modifiedTime": 1748709756134,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!3znRxBqsK0lOJhvJ"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Wizard",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "8I0S9f458qu36qSW",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748709931420,
|
||||
"modifiedTime": 1748709931420,
|
||||
"lastModifiedBy": "MxkU9FQYKmOxbdzm"
|
||||
},
|
||||
"_key": "!folders!8I0S9f458qu36qSW"
|
||||
}
|
||||
|
|
@ -1,98 +0,0 @@
|
|||
{
|
||||
"name": "Fighter",
|
||||
"type": "class",
|
||||
"_id": "HPzaWaZBc6RvElKd",
|
||||
"img": "systems/daggerheart/assets/icons/classes/fighter.png",
|
||||
"system": {
|
||||
"domains": [
|
||||
"bone",
|
||||
"valor"
|
||||
],
|
||||
"classItems": [],
|
||||
"damageThresholds": {
|
||||
"minor": 0,
|
||||
"major": 0,
|
||||
"severe": 0
|
||||
},
|
||||
"evasion": 11,
|
||||
"features": [
|
||||
{
|
||||
"name": "Staggering Strike",
|
||||
"img": "icons/svg/item-bag.svg",
|
||||
"uuid": "Compendium.daggerheart.class-features.Item.xC0ZG862KrjHGHlx"
|
||||
},
|
||||
{
|
||||
"name": "I Am The Weapon",
|
||||
"img": "icons/svg/item-bag.svg",
|
||||
"uuid": "Compendium.daggerheart.class-features.Item.ihtvQaH18eG56RWY"
|
||||
},
|
||||
{
|
||||
"img": "icons/svg/item-bag.svg",
|
||||
"name": "Combo Strikes",
|
||||
"uuid": "Compendium.daggerheart.class-features.Item.RNC8NT8F6x73gRZi"
|
||||
}
|
||||
],
|
||||
"subclasses": [],
|
||||
"inventory": {
|
||||
"take": [],
|
||||
"choiceA": [],
|
||||
"choiceB": [],
|
||||
"extra": {
|
||||
"title": "",
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"characterGuide": {
|
||||
"suggestedTraits": {
|
||||
"agility": 1,
|
||||
"strength": 1,
|
||||
"finesse": 0,
|
||||
"instinct": 2,
|
||||
"presence": 10,
|
||||
"knowledge": -1
|
||||
},
|
||||
"suggestedPrimaryWeapon": null,
|
||||
"suggestedSecondaryWeapon": null,
|
||||
"suggestedArmor": null,
|
||||
"characterDescription": {
|
||||
"clothes": "",
|
||||
"eyes": "",
|
||||
"body": "",
|
||||
"color": "",
|
||||
"attitude": ""
|
||||
},
|
||||
"backgroundQuestions": [
|
||||
"Where did you spend time during your formative years that taught you, directly or indirectly, how to fight in the style you use?",
|
||||
"What group or organization that has always had your back, and how did you get in their good graces?",
|
||||
"Who did you lose to long ago that you are desperate for a rematch against?"
|
||||
],
|
||||
"connections": [
|
||||
"What is one thing we’re both afraid of?",
|
||||
"I rely on your for something important during our travels together. What is it and how do you feel about it?",
|
||||
"I still haven't forgiven you for something you said to me. What was it and why did you say it?"
|
||||
]
|
||||
},
|
||||
"multiclass": null,
|
||||
"description": ""
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"NqO2eQGMjrvUO6v9": 3
|
||||
},
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1747946839346,
|
||||
"modifiedTime": 1748031139229,
|
||||
"lastModifiedBy": "ei8OkswTzyDp4IGC"
|
||||
},
|
||||
"_key": "!items!HPzaWaZBc6RvElKd"
|
||||
}
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
{
|
||||
"name": "Warlock",
|
||||
"type": "class",
|
||||
"_id": "kSSIqmgxFTm1Xr9s",
|
||||
"img": "systems/daggerheart/assets/icons/classes/warlock.png",
|
||||
"system": {
|
||||
"domains": [],
|
||||
"classItems": [],
|
||||
"damageThresholds": {
|
||||
"minor": 0,
|
||||
"major": 0,
|
||||
"severe": 0
|
||||
},
|
||||
"evasion": 0,
|
||||
"features": [],
|
||||
"subclasses": [],
|
||||
"inventory": {
|
||||
"take": [],
|
||||
"choiceA": [],
|
||||
"choiceB": [],
|
||||
"extra": null
|
||||
},
|
||||
"characterGuide": {
|
||||
"suggestedTraits": {
|
||||
"agility": 0,
|
||||
"strength": 0,
|
||||
"finesse": 0,
|
||||
"instinct": 0,
|
||||
"presence": 0,
|
||||
"knowledge": 0
|
||||
},
|
||||
"suggestedPrimaryWeapon": null,
|
||||
"suggestedSecondaryWeapon": null,
|
||||
"suggestedArmor": null,
|
||||
"characterDescription": {},
|
||||
"backgroundQuestions": [
|
||||
"",
|
||||
"",
|
||||
""
|
||||
],
|
||||
"connections": [
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
},
|
||||
"multiclass": null,
|
||||
"description": ""
|
||||
},
|
||||
"effects": [],
|
||||
"folder": null,
|
||||
"sort": 0,
|
||||
"ownership": {
|
||||
"default": 0,
|
||||
"NqO2eQGMjrvUO6v9": 3
|
||||
},
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1747946952119,
|
||||
"modifiedTime": 1747946955843,
|
||||
"lastModifiedBy": "NqO2eQGMjrvUO6v9"
|
||||
},
|
||||
"_key": "!items!kSSIqmgxFTm1Xr9s"
|
||||
}
|
||||
23
src/packs/domains/folders_Arcana_jc1HbSpJmjAsq9GX.json
Normal file
23
src/packs/domains/folders_Arcana_jc1HbSpJmjAsq9GX.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Arcana",
|
||||
"color": "#562d6c",
|
||||
"sorting": "a",
|
||||
"_id": "jc1HbSpJmjAsq9GX",
|
||||
"description": "",
|
||||
"sort": 100000,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748717088692,
|
||||
"modifiedTime": 1748717766758,
|
||||
"lastModifiedBy": "WafZqd6qLGpBRGTt"
|
||||
},
|
||||
"_key": "!folders!jc1HbSpJmjAsq9GX"
|
||||
}
|
||||
23
src/packs/domains/folders_Blade_gXc5zPwSyZXqrC6D.json
Normal file
23
src/packs/domains/folders_Blade_gXc5zPwSyZXqrC6D.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Blade",
|
||||
"color": "#923628",
|
||||
"sorting": "a",
|
||||
"_id": "gXc5zPwSyZXqrC6D",
|
||||
"description": "",
|
||||
"sort": 200000,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748717097962,
|
||||
"modifiedTime": 1748717766758,
|
||||
"lastModifiedBy": "WafZqd6qLGpBRGTt"
|
||||
},
|
||||
"_key": "!folders!gXc5zPwSyZXqrC6D"
|
||||
}
|
||||
23
src/packs/domains/folders_Bone_IMRfDo5DDrpniKKv.json
Normal file
23
src/packs/domains/folders_Bone_IMRfDo5DDrpniKKv.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Bone",
|
||||
"color": "#656768",
|
||||
"sorting": "a",
|
||||
"_id": "IMRfDo5DDrpniKKv",
|
||||
"description": "",
|
||||
"sort": 300000,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748717103209,
|
||||
"modifiedTime": 1748717766758,
|
||||
"lastModifiedBy": "WafZqd6qLGpBRGTt"
|
||||
},
|
||||
"_key": "!folders!IMRfDo5DDrpniKKv"
|
||||
}
|
||||
23
src/packs/domains/folders_Codex_q9VsNwg9r0bTn2ll.json
Normal file
23
src/packs/domains/folders_Codex_q9VsNwg9r0bTn2ll.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Codex",
|
||||
"color": "#1a315b",
|
||||
"sorting": "a",
|
||||
"_id": "q9VsNwg9r0bTn2ll",
|
||||
"description": "",
|
||||
"sort": 400000,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748717109630,
|
||||
"modifiedTime": 1748717766758,
|
||||
"lastModifiedBy": "WafZqd6qLGpBRGTt"
|
||||
},
|
||||
"_key": "!folders!q9VsNwg9r0bTn2ll"
|
||||
}
|
||||
23
src/packs/domains/folders_Grace_c380soh7Z1YAqzOT.json
Normal file
23
src/packs/domains/folders_Grace_c380soh7Z1YAqzOT.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": null,
|
||||
"name": "Grace",
|
||||
"color": "#7a3961",
|
||||
"sorting": "a",
|
||||
"_id": "c380soh7Z1YAqzOT",
|
||||
"description": "",
|
||||
"sort": 500000,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"createdTime": 1748717115983,
|
||||
"modifiedTime": 1748717766758,
|
||||
"lastModifiedBy": "WafZqd6qLGpBRGTt"
|
||||
},
|
||||
"_key": "!folders!c380soh7Z1YAqzOT"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_7Cs44YADBTmmtCw6.json
Normal file
21
src/packs/domains/folders_Level_10_7Cs44YADBTmmtCw6.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "jc1HbSpJmjAsq9GX",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "7Cs44YADBTmmtCw6",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!7Cs44YADBTmmtCw6"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_7pKKYgRQAKlQAksV.json
Normal file
21
src/packs/domains/folders_Level_10_7pKKYgRQAKlQAksV.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "gXc5zPwSyZXqrC6D",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "7pKKYgRQAKlQAksV",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!7pKKYgRQAKlQAksV"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_8qr1Y2tW3vLwNZOg.json
Normal file
21
src/packs/domains/folders_Level_10_8qr1Y2tW3vLwNZOg.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "tgwSE1t5B0Ka10Xh",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "8qr1Y2tW3vLwNZOg",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!8qr1Y2tW3vLwNZOg"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_D1MFCYakdFIKDmcD.json
Normal file
21
src/packs/domains/folders_Level_10_D1MFCYakdFIKDmcD.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "yPVeShe47ETIqs9q",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "D1MFCYakdFIKDmcD",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!D1MFCYakdFIKDmcD"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_Hs6POmXKThDXQJBn.json
Normal file
21
src/packs/domains/folders_Level_10_Hs6POmXKThDXQJBn.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "IMRfDo5DDrpniKKv",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "Hs6POmXKThDXQJBn",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!Hs6POmXKThDXQJBn"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_IIVaYseNJbA2ta1B.json
Normal file
21
src/packs/domains/folders_Level_10_IIVaYseNJbA2ta1B.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "q9VsNwg9r0bTn2ll",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "IIVaYseNJbA2ta1B",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!IIVaYseNJbA2ta1B"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_nZr2hsu6Q6TlFXQn.json
Normal file
21
src/packs/domains/folders_Level_10_nZr2hsu6Q6TlFXQn.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "TL1TutmbeCVJ06nR",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "nZr2hsu6Q6TlFXQn",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!nZr2hsu6Q6TlFXQn"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_pPzU9WOQNv3ckO1w.json
Normal file
21
src/packs/domains/folders_Level_10_pPzU9WOQNv3ckO1w.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "io1DZ9MMMDfuNf8b",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "pPzU9WOQNv3ckO1w",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!pPzU9WOQNv3ckO1w"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_10_wdhWWqWlPiBxtsvr.json
Normal file
21
src/packs/domains/folders_Level_10_wdhWWqWlPiBxtsvr.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "c380soh7Z1YAqzOT",
|
||||
"name": "Level 10",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "wdhWWqWlPiBxtsvr",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!wdhWWqWlPiBxtsvr"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_9Xc6KzNyjDtTGZkp.json
Normal file
21
src/packs/domains/folders_Level_1_9Xc6KzNyjDtTGZkp.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "gXc5zPwSyZXqrC6D",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "9Xc6KzNyjDtTGZkp",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!9Xc6KzNyjDtTGZkp"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_EJoXzO85rG5EiZsh.json
Normal file
21
src/packs/domains/folders_Level_1_EJoXzO85rG5EiZsh.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "io1DZ9MMMDfuNf8b",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "EJoXzO85rG5EiZsh",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!EJoXzO85rG5EiZsh"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_LlWJaBZOKh0Ot2kD.json
Normal file
21
src/packs/domains/folders_Level_1_LlWJaBZOKh0Ot2kD.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "TL1TutmbeCVJ06nR",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "LlWJaBZOKh0Ot2kD",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!LlWJaBZOKh0Ot2kD"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_PeeIjbkBv41613yZ.json
Normal file
21
src/packs/domains/folders_Level_1_PeeIjbkBv41613yZ.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "IMRfDo5DDrpniKKv",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "PeeIjbkBv41613yZ",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!PeeIjbkBv41613yZ"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_QpOL7jPbMBzH96qR.json
Normal file
21
src/packs/domains/folders_Level_1_QpOL7jPbMBzH96qR.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "yPVeShe47ETIqs9q",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "QpOL7jPbMBzH96qR",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!QpOL7jPbMBzH96qR"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_nVCKcZkcoEivYJaF.json
Normal file
21
src/packs/domains/folders_Level_1_nVCKcZkcoEivYJaF.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "c380soh7Z1YAqzOT",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "nVCKcZkcoEivYJaF",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!nVCKcZkcoEivYJaF"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_o7kvw9NRGvDZSce2.json
Normal file
21
src/packs/domains/folders_Level_1_o7kvw9NRGvDZSce2.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "jc1HbSpJmjAsq9GX",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "o7kvw9NRGvDZSce2",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!o7kvw9NRGvDZSce2"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_sCiN7DoysdKceIMd.json
Normal file
21
src/packs/domains/folders_Level_1_sCiN7DoysdKceIMd.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "tgwSE1t5B0Ka10Xh",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "sCiN7DoysdKceIMd",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!sCiN7DoysdKceIMd"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_1_tqhasjtHBX0F20lN.json
Normal file
21
src/packs/domains/folders_Level_1_tqhasjtHBX0F20lN.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "q9VsNwg9r0bTn2ll",
|
||||
"name": "Level 1",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "tqhasjtHBX0F20lN",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!tqhasjtHBX0F20lN"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_2yh8wuYprOyswf0r.json
Normal file
21
src/packs/domains/folders_Level_2_2yh8wuYprOyswf0r.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "TL1TutmbeCVJ06nR",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "2yh8wuYprOyswf0r",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!2yh8wuYprOyswf0r"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_Abn46nCQst6kpGeA.json
Normal file
21
src/packs/domains/folders_Level_2_Abn46nCQst6kpGeA.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "tgwSE1t5B0Ka10Xh",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "Abn46nCQst6kpGeA",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!Abn46nCQst6kpGeA"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_Q9rmrfeKqcqBNnWc.json
Normal file
21
src/packs/domains/folders_Level_2_Q9rmrfeKqcqBNnWc.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "IMRfDo5DDrpniKKv",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "Q9rmrfeKqcqBNnWc",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!Q9rmrfeKqcqBNnWc"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_j9i2Q6Z7Z82udHn1.json
Normal file
21
src/packs/domains/folders_Level_2_j9i2Q6Z7Z82udHn1.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "q9VsNwg9r0bTn2ll",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "j9i2Q6Z7Z82udHn1",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!j9i2Q6Z7Z82udHn1"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_o7t2fsAmRxKLoHrO.json
Normal file
21
src/packs/domains/folders_Level_2_o7t2fsAmRxKLoHrO.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "gXc5zPwSyZXqrC6D",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "o7t2fsAmRxKLoHrO",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!o7t2fsAmRxKLoHrO"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_pk4xXE8D3vTawrqj.json
Normal file
21
src/packs/domains/folders_Level_2_pk4xXE8D3vTawrqj.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "yPVeShe47ETIqs9q",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "pk4xXE8D3vTawrqj",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!pk4xXE8D3vTawrqj"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_pu3xD4rEkdfdAvGc.json
Normal file
21
src/packs/domains/folders_Level_2_pu3xD4rEkdfdAvGc.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "c380soh7Z1YAqzOT",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "pu3xD4rEkdfdAvGc",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!pu3xD4rEkdfdAvGc"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_u8Yz2hUTaF3N2fFT.json
Normal file
21
src/packs/domains/folders_Level_2_u8Yz2hUTaF3N2fFT.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "jc1HbSpJmjAsq9GX",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "u8Yz2hUTaF3N2fFT",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!u8Yz2hUTaF3N2fFT"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_2_xZrCYAd05ayNu1yW.json
Normal file
21
src/packs/domains/folders_Level_2_xZrCYAd05ayNu1yW.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "io1DZ9MMMDfuNf8b",
|
||||
"name": "Level 2",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "xZrCYAd05ayNu1yW",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!xZrCYAd05ayNu1yW"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_7XeaYZPMB0SopAfo.json
Normal file
21
src/packs/domains/folders_Level_3_7XeaYZPMB0SopAfo.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "q9VsNwg9r0bTn2ll",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "7XeaYZPMB0SopAfo",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!7XeaYZPMB0SopAfo"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_8ZfL09F8MiOEUzzw.json
Normal file
21
src/packs/domains/folders_Level_3_8ZfL09F8MiOEUzzw.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "TL1TutmbeCVJ06nR",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "8ZfL09F8MiOEUzzw",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!8ZfL09F8MiOEUzzw"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_GhLhMfmSgGqS9bwU.json
Normal file
21
src/packs/domains/folders_Level_3_GhLhMfmSgGqS9bwU.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "c380soh7Z1YAqzOT",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "GhLhMfmSgGqS9bwU",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!GhLhMfmSgGqS9bwU"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_Oo9EkkF7CDD3QZEG.json
Normal file
21
src/packs/domains/folders_Level_3_Oo9EkkF7CDD3QZEG.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "yPVeShe47ETIqs9q",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "Oo9EkkF7CDD3QZEG",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!Oo9EkkF7CDD3QZEG"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_eR7sP5jQwfCLORUe.json
Normal file
21
src/packs/domains/folders_Level_3_eR7sP5jQwfCLORUe.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "IMRfDo5DDrpniKKv",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "eR7sP5jQwfCLORUe",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!eR7sP5jQwfCLORUe"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_hoDIPBzwYPxiSXGU.json
Normal file
21
src/packs/domains/folders_Level_3_hoDIPBzwYPxiSXGU.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "tgwSE1t5B0Ka10Xh",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "hoDIPBzwYPxiSXGU",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!hoDIPBzwYPxiSXGU"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_mOv6BGhJAeGrzA84.json
Normal file
21
src/packs/domains/folders_Level_3_mOv6BGhJAeGrzA84.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "jc1HbSpJmjAsq9GX",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "mOv6BGhJAeGrzA84",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!mOv6BGhJAeGrzA84"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_uXGugK72AffddFdH.json
Normal file
21
src/packs/domains/folders_Level_3_uXGugK72AffddFdH.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "io1DZ9MMMDfuNf8b",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "uXGugK72AffddFdH",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!uXGugK72AffddFdH"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_3_wWL9mV6i2EGX5xHS.json
Normal file
21
src/packs/domains/folders_Level_3_wWL9mV6i2EGX5xHS.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "gXc5zPwSyZXqrC6D",
|
||||
"name": "Level 3",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "wWL9mV6i2EGX5xHS",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!wWL9mV6i2EGX5xHS"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_1e5Sn8OXxEQ57GSD.json
Normal file
21
src/packs/domains/folders_Level_4_1e5Sn8OXxEQ57GSD.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "jc1HbSpJmjAsq9GX",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "1e5Sn8OXxEQ57GSD",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!1e5Sn8OXxEQ57GSD"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_3e8kCsLzLxiACJDb.json
Normal file
21
src/packs/domains/folders_Level_4_3e8kCsLzLxiACJDb.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "IMRfDo5DDrpniKKv",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "3e8kCsLzLxiACJDb",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!3e8kCsLzLxiACJDb"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_BJIiOIWAQUz5zuqo.json
Normal file
21
src/packs/domains/folders_Level_4_BJIiOIWAQUz5zuqo.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "io1DZ9MMMDfuNf8b",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "BJIiOIWAQUz5zuqo",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!BJIiOIWAQUz5zuqo"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_WTdOLLkQyPdg0KWU.json
Normal file
21
src/packs/domains/folders_Level_4_WTdOLLkQyPdg0KWU.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "tgwSE1t5B0Ka10Xh",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "WTdOLLkQyPdg0KWU",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!WTdOLLkQyPdg0KWU"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_cOZgzLQRGNnBzsHT.json
Normal file
21
src/packs/domains/folders_Level_4_cOZgzLQRGNnBzsHT.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "yPVeShe47ETIqs9q",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "cOZgzLQRGNnBzsHT",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!cOZgzLQRGNnBzsHT"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_rUGDM9JvGfhh9a2Y.json
Normal file
21
src/packs/domains/folders_Level_4_rUGDM9JvGfhh9a2Y.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "q9VsNwg9r0bTn2ll",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "rUGDM9JvGfhh9a2Y",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!rUGDM9JvGfhh9a2Y"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_thP6nUk0nkrNcpXY.json
Normal file
21
src/packs/domains/folders_Level_4_thP6nUk0nkrNcpXY.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "c380soh7Z1YAqzOT",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "thP6nUk0nkrNcpXY",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!thP6nUk0nkrNcpXY"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_vAZKNDtAafd7HDWV.json
Normal file
21
src/packs/domains/folders_Level_4_vAZKNDtAafd7HDWV.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "TL1TutmbeCVJ06nR",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "vAZKNDtAafd7HDWV",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!vAZKNDtAafd7HDWV"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_4_yalAnCU3SndrYImF.json
Normal file
21
src/packs/domains/folders_Level_4_yalAnCU3SndrYImF.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "gXc5zPwSyZXqrC6D",
|
||||
"name": "Level 4",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "yalAnCU3SndrYImF",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!yalAnCU3SndrYImF"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_6gA7SmNIblkMaYgr.json
Normal file
21
src/packs/domains/folders_Level_5_6gA7SmNIblkMaYgr.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "c380soh7Z1YAqzOT",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "6gA7SmNIblkMaYgr",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!6gA7SmNIblkMaYgr"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_8erksbTp7ic6in4I.json
Normal file
21
src/packs/domains/folders_Level_5_8erksbTp7ic6in4I.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "tgwSE1t5B0Ka10Xh",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "8erksbTp7ic6in4I",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!8erksbTp7ic6in4I"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_BQ1L4EiwOs84Xysp.json
Normal file
21
src/packs/domains/folders_Level_5_BQ1L4EiwOs84Xysp.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "IMRfDo5DDrpniKKv",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "BQ1L4EiwOs84Xysp",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!BQ1L4EiwOs84Xysp"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_Emnx4o1DWGTVKoAg.json
Normal file
21
src/packs/domains/folders_Level_5_Emnx4o1DWGTVKoAg.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "gXc5zPwSyZXqrC6D",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "Emnx4o1DWGTVKoAg",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!Emnx4o1DWGTVKoAg"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_Jbw6Teaha6So9tym.json
Normal file
21
src/packs/domains/folders_Level_5_Jbw6Teaha6So9tym.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "TL1TutmbeCVJ06nR",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "Jbw6Teaha6So9tym",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!Jbw6Teaha6So9tym"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_XDSp0FdiYDVO0tfw.json
Normal file
21
src/packs/domains/folders_Level_5_XDSp0FdiYDVO0tfw.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "yPVeShe47ETIqs9q",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "XDSp0FdiYDVO0tfw",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!XDSp0FdiYDVO0tfw"
|
||||
}
|
||||
21
src/packs/domains/folders_Level_5_ZZHIbaynhzVArA1p.json
Normal file
21
src/packs/domains/folders_Level_5_ZZHIbaynhzVArA1p.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "Item",
|
||||
"folder": "io1DZ9MMMDfuNf8b",
|
||||
"name": "Level 5",
|
||||
"color": null,
|
||||
"sorting": "a",
|
||||
"_id": "ZZHIbaynhzVArA1p",
|
||||
"description": "",
|
||||
"sort": 0,
|
||||
"flags": {},
|
||||
"_stats": {
|
||||
"compendiumSource": null,
|
||||
"duplicateSource": null,
|
||||
"exportSource": null,
|
||||
"coreVersion": "13.344",
|
||||
"systemId": "daggerheart",
|
||||
"systemVersion": "0.0.1",
|
||||
"lastModifiedBy": null
|
||||
},
|
||||
"_key": "!folders!ZZHIbaynhzVArA1p"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue