diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 80c01bce..b9099005 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -44,12 +44,14 @@ We encourage contributors to leave comments or open Discussions when proposing s
## π§Ύ Issue & PR Best Practices
**For Issues:**
+
- Use clear, descriptive titles
- Provide a concise explanation of the problem or idea
- Include reproduction steps or example scenarios if it's a bug
- Add screenshots or logs if helpful
**For Pull Requests:**
+
- Use a clear title summarizing the change
- Provide a brief description of what your code does and why
- Link to any related Issues
@@ -71,6 +73,6 @@ Discussions are currently happening on GitHub β in Issues, PRs, and [GitHub Di
## π€ Thank You!
-Whether you're fixing a typo or designing entire mechanics β every contribution matters. Thank you for helping bring *Daggerheart* to life in FoundryVTT through **Foundryborne**!
+Whether you're fixing a typo or designing entire mechanics β every contribution matters. Thank you for helping bring _Daggerheart_ to life in FoundryVTT through **Foundryborne**!
πΈπ οΈ
diff --git a/assets/icons/arrow-dunk.png b/assets/icons/arrow-dunk.png
new file mode 100644
index 00000000..1958713e
Binary files /dev/null and b/assets/icons/arrow-dunk.png differ
diff --git a/assets/icons/dice/duality/DualityBW.png b/assets/icons/dice/duality/DualityBW.png
new file mode 100644
index 00000000..5f94e99f
Binary files /dev/null and b/assets/icons/dice/duality/DualityBW.png differ
diff --git a/assets/icons/dice/duality/DualityBW.svg b/assets/icons/dice/duality/DualityBW.svg
new file mode 100644
index 00000000..9e716fd6
--- /dev/null
+++ b/assets/icons/dice/duality/DualityBW.svg
@@ -0,0 +1,59 @@
+
+
+
+
diff --git a/assets/icons/documents/actors/dark-squad.svg b/assets/icons/documents/actors/dark-squad.svg
new file mode 100644
index 00000000..f21b4c5b
--- /dev/null
+++ b/assets/icons/documents/actors/dark-squad.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/daggerheart.mjs b/daggerheart.mjs
index 96a6783b..651736a4 100644
--- a/daggerheart.mjs
+++ b/daggerheart.mjs
@@ -1,5 +1,6 @@
import { SYSTEM } from './module/config/system.mjs';
import * as applications from './module/applications/_module.mjs';
+import * as data from './module/data/_module.mjs';
import * as models from './module/data/_module.mjs';
import * as documents from './module/documents/_module.mjs';
import * as dice from './module/dice/_module.mjs';
@@ -7,10 +8,8 @@ import * as fields from './module/data/fields/_module.mjs';
import RegisterHandlebarsHelpers from './module/helpers/handlebarsHelper.mjs';
import { enricherConfig, enricherRenderSetup } from './module/enrichers/_module.mjs';
import { getCommandTarget, rollCommandToJSON } from './module/helpers/utils.mjs';
-import { NarrativeCountdowns } from './module/applications/ui/countdowns.mjs';
import { BaseRoll, DHRoll, DualityRoll, D20Roll, DamageRoll } from './module/dice/_module.mjs';
import { enrichedDualityRoll } from './module/enrichers/DualityRollEnricher.mjs';
-import { registerCountdownHooks } from './module/data/countdowns.mjs';
import {
handlebarsRegistration,
runMigrations,
@@ -26,6 +25,7 @@ Hooks.once('init', () => {
CONFIG.DH = SYSTEM;
game.system.api = {
applications,
+ data,
models,
documents,
dice,
@@ -34,15 +34,6 @@ Hooks.once('init', () => {
CONFIG.TextEditor.enrichers.push(...enricherConfig);
- CONFIG.statusEffects = [
- ...CONFIG.statusEffects.filter(x => !['dead', 'unconscious'].includes(x.id)),
- ...Object.values(SYSTEM.GENERAL.conditions).map(x => ({
- ...x,
- name: game.i18n.localize(x.name),
- systemEffect: true
- }))
- ];
-
CONFIG.Dice.daggerheart = {
DHRoll: DHRoll,
DualityRoll: DualityRoll,
@@ -94,6 +85,10 @@ Hooks.once('init', () => {
types: ['environment'],
makeDefault: true
});
+ Actors.registerSheet(SYSTEM.id, applications.sheets.actors.Party, {
+ types: ['party'],
+ makeDefault: true
+ });
CONFIG.ActiveEffect.documentClass = documents.DhActiveEffect;
CONFIG.ActiveEffect.dataModels = models.activeEffects.config;
@@ -133,9 +128,12 @@ Hooks.once('init', () => {
CONFIG.ui.combat = applications.ui.DhCombatTracker;
CONFIG.ui.chat = applications.ui.DhChatLog;
CONFIG.ui.hotbar = applications.ui.DhHotbar;
+ CONFIG.ui.sidebar = applications.sidebar.DhSidebar;
+ CONFIG.ui.daggerheartMenu = applications.sidebar.DaggerheartMenu;
CONFIG.Token.rulerClass = placeables.DhTokenRuler;
CONFIG.ui.resources = applications.ui.DhFearTracker;
+ CONFIG.ui.countdowns = applications.ui.DhCountdowns;
CONFIG.ux.ContextMenu = applications.ux.DHContextMenu;
CONFIG.ux.TooltipManager = documents.DhTooltipManager;
@@ -146,18 +144,39 @@ Hooks.once('init', () => {
// Make Compendium Dialog resizable
foundry.applications.sidebar.apps.Compendium.DEFAULT_OPTIONS.window.resizable = true;
+ DocumentSheetConfig.registerSheet(foundry.documents.Scene, SYSTEM.id, applications.scene.DhSceneConfigSettings, {
+ makeDefault: true,
+ label: 'Daggerheart'
+ });
+
settingsRegistration.registerDHSettings();
RegisterHandlebarsHelpers.registerHelpers();
return handlebarsRegistration();
});
+Hooks.on('setup', () => {
+ CONFIG.statusEffects = [
+ ...CONFIG.statusEffects.filter(x => !['dead', 'unconscious'].includes(x.id)),
+ ...Object.values(SYSTEM.GENERAL.conditions()).map(x => ({
+ ...x,
+ name: game.i18n.localize(x.name),
+ systemEffect: true
+ }))
+ ];
+});
+
Hooks.on('ready', async () => {
ui.resources = new CONFIG.ui.resources();
if (game.settings.get(SYSTEM.id, SYSTEM.SETTINGS.gameSettings.appearance).displayFear !== 'hide')
ui.resources.render({ force: true });
- registerCountdownHooks();
+ ui.countdowns = new CONFIG.ui.countdowns();
+ ui.countdowns.render({ force: true });
+
+ if (!(ui.compendiumBrowser instanceof applications.ui.ItemBrowser))
+ ui.compendiumBrowser = new applications.ui.ItemBrowser();
+
socketRegistration.registerSocketHooks();
registerRollDiceHooks();
socketRegistration.registerUserQueries();
@@ -230,29 +249,6 @@ Hooks.on('chatMessage', (_, message) => {
}
});
-Hooks.on('renderJournalDirectory', async (tab, html, _, options) => {
- if (tab.id === 'journal') {
- if (options.parts && !options.parts.includes('footer')) return;
-
- const buttons = tab.element.querySelector('.directory-footer.action-buttons');
- const title = game.i18n.format('DAGGERHEART.APPLICATIONS.Countdown.title', {
- type: game.i18n.localize('DAGGERHEART.APPLICATIONS.Countdown.types.narrative')
- });
- buttons.insertAdjacentHTML(
- 'afterbegin',
- `
- `
- );
-
- buttons.querySelector('#narrative-countdown-button').onclick = async () => {
- new NarrativeCountdowns().open();
- };
- }
-});
-
Hooks.on('moveToken', async (movedToken, data) => {
const effectsAutomation = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation).effects;
if (!effectsAutomation.rangeDependent) return;
@@ -300,3 +296,6 @@ Hooks.on('moveToken', async (movedToken, data) => {
await effect.value.update({ disabled: effect.disabled });
}
});
+
+Hooks.on('renderCompendiumDirectory', (app, html) => applications.ui.ItemBrowser.injectSidebarButton(html));
+Hooks.on('renderDocumentDirectory', (app, html) => applications.ui.ItemBrowser.injectSidebarButton(html));
diff --git a/lang/en.json b/lang/en.json
index 7efca151..b63a3aac 100755
--- a/lang/en.json
+++ b/lang/en.json
@@ -20,12 +20,21 @@
"character": "Character",
"companion": "Companion",
"adversary": "Adversary",
- "environment": "Environment"
+ "environment": "Environment",
+ "party": "Party"
}
},
"CONTROLS": {
"inFront": "In Front"
},
+ "SCENE": {
+ "TABS": {
+ "SHEET": {
+ "dh": "Daggerheart"
+ }
+ }
+ },
+
"DAGGERHEART": {
"ACTIONS": {
"TYPES": {
@@ -64,6 +73,14 @@
"exactHint": "The Character's Tier is used if empty",
"label": "Beastform"
},
+ "damage": {
+ "multiplier": "Multiplier",
+ "flatMultiplier": "Flat Multiplier"
+ },
+ "general": {
+ "customFormula": "Custom Formula",
+ "formula": "Formula"
+ },
"displayInChat": "Display in chat"
},
"RollField": {
@@ -80,6 +97,7 @@
"attackName": "Attack Name",
"includeBase": { "label": "Include Item Damage" },
"multiplier": "Multiplier",
+ "saveHint": "Set a default Trait to enable Reaction Roll. It can be changed later in Reaction Roll Dialog.",
"resultBased": {
"label": "Formula based on Hope/Fear result."
},
@@ -153,7 +171,9 @@
"hint": "Add single words or short text as reminders and hints of what a character has advantage on."
},
"age": "Age",
+ "backgroundQuestions": "Backgrounds",
"companionFeatures": "Companion Features",
+ "connections": "Connections",
"contextMenu": {
"consume": "Consume Item",
"equip": "Equip",
@@ -194,6 +214,7 @@
"confirmTitle": "Companion Levelup",
"confirmText": "Would you like to level up your companion {name} by {levelChange} levels at this time? (You can do it manually later)"
},
+ "viewLevelups": "View Levelups",
"InvalidOldCharacterImportTitle": "Old Character Import",
"InvalidOldCharacterImportText": "Character data exported prior to system version 1.1 will not generate a complete character. Do you wish to continue?"
},
@@ -238,6 +259,9 @@
}
},
"APPLICATIONS": {
+ "Attribution": {
+ "title": "Attribution"
+ },
"CharacterCreation": {
"tabs": {
"ancestry": "Ancestry",
@@ -246,7 +270,8 @@
"experience": "Experience",
"traits": "Traits",
"domainCards": "Domain Cards",
- "equipment": "Equipment"
+ "equipment": "Equipment",
+ "story": "Story"
},
"ancestryNamePlaceholder": "Your ancestry's name",
"buttonTitle": "Character Setup",
@@ -267,6 +292,7 @@
"selectSubclass": "Select Subclass",
"startingItems": "Starting Items",
"story": "Story",
+ "storyExplanation": "Select which background and connection prompts you want to copy into your character's background.",
"suggestedArmor": "Suggested Armor",
"suggestedPrimaryWeapon": "Suggested Primary Weapon",
"suggestedSecondaryWeapon": "Suggested Secondary Weapon",
@@ -290,7 +316,8 @@
"toLoadout": "Send to Loadout",
"toVault": "Send to Vault",
"unequip": "Unequip",
- "useItem": "Use Item"
+ "useItem": "Use Item",
+ "cancelBeastform": "Cancel Beastform"
},
"Countdown": {
"addCountdown": "Add Countdown",
@@ -305,7 +332,8 @@
"label": { "label": "Label", "hint": "Used for custom" },
"value": { "label": "Value" }
}
- }
+ },
+ "type": { "label": "Countdown Type" }
}
}
},
@@ -320,6 +348,25 @@
"encounter": "Encounter"
}
},
+ "CountdownEdit": {
+ "title": "Countdown Edit",
+ "viewTitle": "Countdowns",
+ "editTitle": "Edit Countdowns",
+ "newCountdown": "New Countdown",
+ "removeCountdownTitle": "Remove Countdown",
+ "removeCountdownText": "Are you sure you want to remove the countdown: {name}?",
+ "current": "Current",
+ "max": "Max",
+ "currentCountdownValue": "Current: {value}",
+ "currentCountdownMax": "Max: {value}",
+ "category": "Category",
+ "type": "Type",
+ "defaultOwnershipTooltip": "The default player ownership of countdowns",
+ "hideNewCountdowns": "Hide New Countdowns"
+ },
+ "DaggerheartMenu": {
+ "title": "GM Tools"
+ },
"DeleteConfirmation": {
"title": "Delete {type} - {name}",
"text": "Are you sure you want to delete {name}?"
@@ -391,9 +438,15 @@
},
"HUD": {
"tokenHUD": {
- "genericEffects": "Foundry Effects"
+ "genericEffects": "Foundry Effects",
+ "depositPartyTokens": "Deposit Party Tokens",
+ "retrievePartyTokens": "Retrieve Party Tokens"
}
},
+ "ImageSelect": {
+ "title": "Select Image",
+ "selectImage": "Select Image"
+ },
"Levelup": {
"actions": {
"creatureComfort": {
@@ -475,24 +528,28 @@
},
"takeLevelUp": "Finish Level Up",
"tier2": {
+ "name": "Tier 2",
"label": "Levels 2-4",
"infoLabel": "At Level 2, gain an additional Experience at +2 and gain a +1 bonus to your Proficiency.",
"pretext": "Choose two options from the list below",
"posttext": "Take an additional domain card of your level or lower from a domain you have access to."
},
"tier3": {
+ "name": "Tier 3",
"label": "Levels 5-7",
"infoLabel": "At Level 5, take an additional Experience and clear all marks on Character Traits.",
"pretext": "When you level up, record it on your character sheet, then choose two from the list below or any unmarked from the previous tier.",
"posttext": "Take an additional domain card of your level or lower from a domain you have access to."
},
"tier4": {
+ "name": "Tier 4",
"label": "Levels 8-10",
"infoLabel": "At Level 8, take an additional Experience and clear all marks on Character Traits.",
"pretext": "When you level up, record it on your character sheet, then choose two from the list below or any unmarked from the previous tier.",
"posttext": "Take an additional domain card of your level or lower from a domain you have access to."
},
- "title": "{actor} Level Up"
+ "title": "{actor} Level Up",
+ "viewModeTitle": "{actor} Level Up (View Mode)"
},
"MulticlassChoice": {
"title": "Multiclassing - {actor}",
@@ -514,6 +571,19 @@
"ResourceDice": {
"title": "{name} Resource",
"rerollDice": "Reroll Dice"
+ },
+ "TagTeamSelect": {
+ "title": "Tag Team Roll",
+ "leaderTitle": "Initiating Character",
+ "membersTitle": "Participants",
+ "partyTeam": "Party Team",
+ "hopeCost": "Hope Cost",
+ "initiatingCharacter": "Initiating Character",
+ "linkMessageHint": "Make a roll from your character sheet to link it to the Tag Team Roll",
+ "damageNotRolled": "Damage not rolled in chat message yet",
+ "insufficientHope": "The initiating character doesn't have enough hope",
+ "createTagTeam": "Create TagTeam Roll",
+ "chatMessageRollTitle": "Roll"
}
},
"CLASS": {
@@ -857,6 +927,11 @@
"magical": {
"name": "Magical",
"abbreviation": "Mag"
+ },
+ "direct": {
+ "name": "Direct Damage",
+ "short": "Direct",
+ "abbreviation": "Dir"
}
},
"DeathMoves": {
@@ -906,23 +981,28 @@
"HealingType": {
"hitPoints": {
"name": "Hit Points",
- "abbreviation": "HP"
+ "abbreviation": "HP",
+ "inChatRoll": "Damage"
},
"stress": {
"name": "Stress",
- "abbreviation": "STR"
+ "abbreviation": "STR",
+ "inChatRoll": "Stress"
},
"hope": {
"name": "Hope",
- "abbreviation": "HO"
+ "abbreviation": "HO",
+ "inChatRoll": "Hope"
},
"armor": {
"name": "Armor Slot",
- "abbreviation": "AS"
+ "abbreviation": "AS",
+ "inChatRoll": "Armor Slot"
},
"fear": {
"name": "Fear",
- "abbreviation": "FR"
+ "abbreviation": "FR",
+ "inChatRoll": "Fear"
}
},
"ItemResourceProgression": {
@@ -989,6 +1069,12 @@
"selectType": "Select Action Type",
"selectAction": "Action Selection"
},
+ "TargetTypes": {
+ "any": "Any",
+ "friendly": "Friendly",
+ "hostile": "Hostile",
+ "self": "Self"
+ },
"TemplateTypes": {
"circle": "Circle",
"cone": "Cone",
@@ -1838,6 +1924,10 @@
}
}
},
+ "SpotlightRequests": {
+ "singular": "Spotlight Request",
+ "plural": "Spotlight Requests"
+ },
"Tabs": {
"details": "Details",
"attack": "Attack",
@@ -1862,6 +1952,7 @@
"story": "Story",
"biography": "Biography",
"general": "General",
+ "resources": "Resources",
"foundation": "Foundation",
"specialization": "Specialization",
"mastery": "Mastery",
@@ -1877,7 +1968,15 @@
"tier4": "tier 4",
"domains": "Domains",
"downtime": "Downtime",
- "rules": "Rules"
+ "roll": "Roll",
+ "rules": "Rules",
+ "partyMembers": "Party Members",
+ "projects": "Projects",
+ "types": "Types",
+ "itemFeatures": "Item Features",
+ "questions": "Questions",
+ "configuration": "Configuration",
+ "base": "Base"
},
"Tiers": {
"singular": "Tier",
@@ -1894,10 +1993,12 @@
"amount": "Amount",
"any": "Any",
"armor": "Armor",
+ "armorFeatures": "Armor Features",
"armors": "Armors",
"armorScore": "Armor Score",
"activeEffects": "Active Effects",
"armorSlots": "Armor Slots",
+ "artistAttribution": "Artwork By: {artist}",
"attack": "Attack",
"basics": "Basics",
"bonus": "Bonus",
@@ -1905,6 +2006,7 @@
"continue": "Continue",
"criticalSuccess": "Critical Success",
"criticalShort": "Critical",
+ "custom": "Custom",
"d20Roll": "D20 Roll",
"damage": "Damage",
"damageRoll": "Damage Roll",
@@ -1927,6 +2029,7 @@
"fear": "Fear",
"features": "Features",
"formula": "Formula",
+ "gm": "GM",
"healing": "Healing",
"healingRoll": "Healing Roll",
"hit": {
@@ -1945,6 +2048,7 @@
"inactiveEffects": "Inactive Effects",
"inventory": "Inventory",
"itemResource": "Item Resource",
+ "itemQuantity": "Item Quantity",
"items": "Items",
"label": "Label",
"level": "Level",
@@ -1963,11 +2067,16 @@
"none": "None",
"noTarget": "No current target",
"partner": "Partner",
+ "player": {
+ "single": "Player",
+ "plurial": "Players"
+ },
"proficiency": "Proficiency",
"quantity": "Quantity",
"range": "Range",
"reactionRoll": "Reaction Roll",
"recovery": "Recovery",
+ "refresh": "Refresh",
"reroll": "Reroll",
"rerollThing": "Reroll {thing}",
"resource": "Resource",
@@ -1978,6 +2087,8 @@
"save": "Save",
"scalable": "Scalable",
"situationalBonus": "Situational Bonus",
+ "spent": "Spent",
+ "step": "Step",
"stress": "Stress",
"subclasses": "Subclasses",
"success": "Success",
@@ -1988,6 +2099,7 @@
},
"title": "Title",
"total": "Total",
+ "traitModifier": "Trait Modifier",
"true": "True",
"type": "Type",
"unarmed": "Unarmed",
@@ -1997,11 +2109,17 @@
"used": "Used",
"uses": "Uses",
"value": "Value",
+ "weaponFeatures": "Weapon Features",
"weapons": "Weapons",
"withThing": "With {thing}"
},
"ITEMS": {
"FIELDS": {
+ "attribution": {
+ "source": { "label": "Source" },
+ "page": { "label": "Page" },
+ "artist": { "label": "Artist" }
+ },
"resource": {
"amount": { "label": "Amount" },
"dieFaces": { "label": "Die Faces" },
@@ -2076,7 +2194,8 @@
}
},
"Consumable": {
- "consumeOnUse": "Consume On Use"
+ "consumeOnUse": "Consume On Use",
+ "destroyOnEmpty": "Destroy On Empty"
},
"DomainCard": {
"type": "Type",
@@ -2097,14 +2216,44 @@
"SETTINGS": {
"Appearance": {
"FIELDS": {
- "displayFear": { "label": "Fear Display" },
- "dualityColorScheme": { "label": "Chat Style" },
- "showGenericStatusEffects": { "label": "Show Foundry Status Effects" },
+ "displayFear": {
+ "label": "Display Fear"
+ },
+ "showGenericStatusEffects": {
+ "label": "Show Foundry Status Effects"
+ },
+ "hideAttribution": {
+ "label": "Hide Attribution"
+ },
"expandedTitle": "Auto-expand Descriptions",
- "extendCharacterDescriptions": { "label": "Characters" },
- "extendAdversaryDescriptions": { "label": "Adversaries" },
- "extendEnvironmentDescriptions": { "label": "Environments" },
- "extendItemDescriptions": { "label": "Items" }
+ "extendCharacterDescriptions": {
+ "label": "Characters"
+ },
+ "extendAdversaryDescriptions": {
+ "label": "Adversaries"
+ },
+ "extendEnvironmentDescriptions": {
+ "label": "Environments"
+ },
+ "extendItemDescriptions": {
+ "label": "Items"
+ },
+ "expandRollMessage": {
+ "title": "Auto-expand Message Sections",
+ "desc": {
+ "label": "Description"
+ },
+ "roll": {
+ "label": "Formula"
+ },
+ "damage": {
+ "label": "Damage/Healing"
+ },
+ "target": {
+ "label": "Target"
+ }
+ },
+ "useResourcePips": { "label": "Pip Display For Resources" }
},
"fearDisplay": {
"token": "Tokens",
@@ -2159,15 +2308,45 @@
"playerCanEditSheet": {
"label": "Players Can Manually Edit Character Settings",
"hint": "Players are allowed to access the manual Character Settings and change their statistics beyond the rules."
+ },
+ "roll": {
+ "roll": {
+ "label": "Roll",
+ "hint": "Auto behavior for rolls like Attack, Spellcast, etc."
+ },
+ "damage": {
+ "label": "Damage/Healing Roll",
+ "hint": "Auto behavior for Damage & Healing rolls after the Attack/Spellcast."
+ },
+ "save": {
+ "label": "Reaction Roll",
+ "hint": "Auto behavior if a Reaction Roll is needed. Targets must be selected before the action is made"
+ },
+ "damageApply": {
+ "label": "Apply Damage/Healing",
+ "hint": "Automatically apply damages & healings. Targets must be selected before the action is made and Reaction Roll Automation must be different than Never. Bypass users permissions."
+ },
+ "effect": {
+ "label": "Apply Effects",
+ "hint": "Automatically apply effects. Targets must be selected before the action is made and Reaction Roll Automation must be different than Never. Bypass users permissions."
+ }
+ },
+ "summaryMessages": {
+ "label": "Summary Messages"
}
},
"defeated": {
"title": "Defeated Handling"
+ },
+ "roll": {
+ "title": "Actions"
}
},
"Homebrew": {
"newDowntimeMove": "Downtime Move",
+ "newFeature": "New ItemFeature",
"downtimeMoves": "Downtime Moves",
+ "itemFeatures": "Item Features",
"nrChoices": "# Moves Per Rest",
"resetMovesTitle": "Reset {type} Downtime Moves",
"resetMovesText": "Are you sure you want to reset?",
@@ -2200,6 +2379,10 @@
"deleteDomain": "Delete Domain",
"deleteDomainText": "Are you sure you want to delete the {name} domain? It will be immediately removed from all Actors in this world where it's currently used. Compendiums are not cleared.",
"duplicateDomain": "There is already a domain with this identification."
+ },
+ "adversaryType": {
+ "title": "Custom Adversary Types",
+ "newType": "Adversary Type"
}
},
"Menu": {
@@ -2220,10 +2403,8 @@
"hint": "System ruler setup for displaying ranges in Daggerheart"
},
"appearance": {
- "title": "Appearance Settings",
"label": "Appearance Settings",
"hint": "Modify the look of various parts of the system",
- "name": "Appearance Settings",
"duality": "Duality Rolls",
"diceSoNice": {
"title": "Dice So Nice",
@@ -2263,6 +2444,15 @@
"ResetSettings": {
"resetConfirmationTitle": "Reset Settings",
"resetConfirmationText": "Are you sure you want to reset the {settings}?"
+ },
+ "Scene": {
+ "FIELDS": {
+ "rangeMeasurement": {
+ "setting": { "label": "Setting" }
+ }
+ },
+ "disabledText": "Daggerheart Measurements are disabled in System Settings - Variant Rules",
+ "rangeMeasurement": "Range Measurement"
}
},
"UI": {
@@ -2270,6 +2460,7 @@
"action": {
"title": "Action"
},
+ "appliedTo": "Applied To",
"applyEffect": {
"title": "Apply Effects - {name}"
},
@@ -2279,6 +2470,11 @@
"rollHealing": "Roll Healing",
"applyEffect": "Apply Effects"
},
+ "clearResource": "Clear {quantity} {resource}",
+ "damageSummary": {
+ "title": "Damage Applied",
+ "healingTitle": "Healing Applied"
+ },
"damageRoll": {
"title": "Damage - {damage}",
"dealDamageToTargets": "Damage Hit Targets",
@@ -2300,18 +2496,91 @@
"dualityRoll": {
"abilityCheckTitle": "{ability} Check"
},
+ "effectSummary": {
+ "title": "Effects Applied"
+ },
"featureTitle": "Class Feature",
+ "groupRoll": {
+ "title": "Group Roll",
+ "leader": "Leader",
+ "partyTeam": "Party Team",
+ "team": "Team",
+ "selectLeader": "Select a Leader",
+ "selectMember": "Select a Member",
+ "rerollTitle": "Reroll Group Roll",
+ "rerollContent": "Are you sure you want to reroll your {trait} check?",
+ "rerollTooltip": "Reroll"
+ },
"healingRoll": {
"title": "Heal - {damage}",
"heal": "Heal",
"applyHealing": "Apply Healing"
},
+ "markResource": "Mark {quantity} {resource}",
+ "refreshMessage": {
+ "title": "Feature Refresh",
+ "header": "Refreshed"
+ },
"reroll": {
"confirmTitle": "Reroll Dice",
"confirmText": "Are you sure you want to reroll?"
},
"resourceRoll": {
"playerMessage": "{user} rerolled their {name}"
+ },
+ "tagTeam": {
+ "title": "Tag Team",
+ "membersTitle": "Members"
+ }
+ },
+ "ChatLog": {
+ "rerollDamage": "Reroll Damage",
+ "assignTagRoll": "Assign as Tag Roll"
+ },
+ "Countdowns": {
+ "title": "Countdowns",
+ "toggleIconMode": "Toggle Icon Only",
+ "noPlayerAccess": "This countdown isn't visible to any players"
+ },
+ "ItemBrowser": {
+ "title": "Daggerheart Compendium Browser",
+ "hint": "Select a Folder in sidebar to start browsing through the compendium",
+ "searchPlaceholder": "Search...",
+ "columnName": "Name",
+ "tooltipFilters": "Filters",
+ "tooltipErase": "Erase",
+ "difficultyMin": "Difficulty (Min)",
+ "difficultyMax": "Difficulty (Max)",
+ "hitPointsMin": "Hit Points (Min)",
+ "hitPointsMax": "Hit Points (Max)",
+ "stressMin": "Stress (Min)",
+ "stressMax": "Stress (Max)",
+ "armorScoreMin": "Armor Score (Min)",
+ "armorScoreMax": "Armor Score (Max)",
+ "levelMin": "Level (Min)",
+ "levelMax": "Level (Max)",
+ "recallCostMin": "Recall Cost (Min)",
+ "recallCostMax": "Recall Cost (Max)",
+ "evasionMin": "Evasion (Min)",
+ "evasionMax": "Evasion (Max)",
+ "subtype": "Subtype",
+ "folders": {
+ "characters": "Characters",
+ "adversaries": "Adversaries",
+ "ancestries": "Ancestries",
+ "equipment": "Equipment",
+ "classes": "Classes",
+ "subclasses": "Subclasses",
+ "domainCards": "Domain Cards",
+ "communities": "Communities",
+ "environments": "Environments",
+ "beastforms": "Beastforms",
+ "features": "Features",
+ "items": "Items",
+ "weapons": "Weapons",
+ "armors": "Armors",
+ "consumables": "Consumables",
+ "loots": "Loots"
}
},
"Notifications": {
@@ -2319,6 +2588,7 @@
"beastformInapplicable": "A beastform can only be applied to a Character.",
"beastformAlreadyApplied": "The character already has a beastform applied!",
"noTargetsSelected": "No targets are selected.",
+ "noTargetsSelectedOrPerm": "No targets are selected or with the update permission.",
"attackTargetDoesNotExist": "The target token no longer exists",
"insufficentAdvancements": "You don't have enough advancements left.",
"noAssignedPlayerCharacter": "You have no assigned character.",
@@ -2346,6 +2616,8 @@
"wrongDomain": "The card isn't from one of your class domains.",
"cardTooHighLevel": "The card is too high level!",
"duplicateCard": "You cannot select the same card more than once.",
+ "duplicateCharacter": "This actor is already registered in the party members list.",
+ "onlyCharactersInPartySheet": "You can drag only characters to a party sheet.",
"notPrimary": "The weapon is not a primary weapon!",
"notSecondary": "The weapon is not a secondary weapon!",
"itemTooHighTier": "The item must be from Tier1",
@@ -2373,11 +2645,23 @@
"beastformEquipWeapon": "You cannot use weapons while in a Beastform.",
"loadoutMaxReached": "You've reached maximum loadout. Move atleast one domain card to the vault, or increase the limit in homebrew settings if desired.",
"domainMaxReached": "You've reached the maximum domains for the class. Increase the limit in homebrew settings if desired.",
- "insufficientResources": "You have insufficient resources",
+ "insufficientResources": "You don't have enough resources to use that action.",
+ "actionNoUsesRemaining": "That action doesn't have remaining uses.",
"multiclassAlreadyPresent": "You already have a class and multiclass",
"subclassesAlreadyPresent": "You already have a class and multiclass subclass",
"noDiceSystem": "Your selected dice {system} does not have a {faces} dice",
- "subclassAlreadyLinked": "{name} is already a subclass in the class {class}. Remove it from there if you want it to be a subclass to this class."
+ "gmMenuRefresh": "You refreshed all actions and resources {types}",
+ "subclassAlreadyLinked": "{name} is already a subclass in the class {class}. Remove it from there if you want it to be a subclass to this class.",
+ "gmRequired": "This action requires an online GM",
+ "gmOnly": "This can only be accessed by the GM",
+ "noActorOwnership": "You do not have permissions for this character"
+ },
+ "Sidebar": {
+ "daggerheartMenu": {
+ "title": "Daggerheart Menu",
+ "startSession": "Start Session",
+ "startScene": "Start Scene"
+ }
},
"Tooltip": {
"disableEffect": "Disable Effect",
@@ -2404,7 +2688,9 @@
"rulesOff": "Rules Off",
"remainingUses": "Uses refresh on {type}",
"rightClickExtand": "Right-Click to extand",
- "companionPartnerLevelBlock": "The companion needs an assigned partner to level up."
+ "companionPartnerLevelBlock": "The companion needs an assigned partner to level up.",
+ "configureAttribution": "Configure Attribution",
+ "deleteItem": "Delete Item"
}
}
}
diff --git a/module/applications/_module.mjs b/module/applications/_module.mjs
index d4ceb229..b2d3001a 100644
--- a/module/applications/_module.mjs
+++ b/module/applications/_module.mjs
@@ -2,8 +2,10 @@ export * as characterCreation from './characterCreation/_module.mjs';
export * as dialogs from './dialogs/_module.mjs';
export * as hud from './hud/_module.mjs';
export * as levelup from './levelup/_module.mjs';
+export * as scene from './scene/_module.mjs';
export * as settings from './settings/_module.mjs';
export * as sheets from './sheets/_module.mjs';
export * as sheetConfigs from './sheets-configs/_module.mjs';
+export * as sidebar from './sidebar/_module.mjs';
export * as ui from './ui/_module.mjs';
export * as ux from './ux/_module.mjs';
diff --git a/module/applications/characterCreation/characterCreation.mjs b/module/applications/characterCreation/characterCreation.mjs
index ccb6f7c0..aa764c56 100644
--- a/module/applications/characterCreation/characterCreation.mjs
+++ b/module/applications/characterCreation/characterCreation.mjs
@@ -1,6 +1,5 @@
import { abilities } from '../../config/actorConfig.mjs';
import { burden } from '../../config/generalConfig.mjs';
-import { ItemBrowser } from '../ui/itemBrowser.mjs';
import { createEmbeddedItemsWithEffects, createEmbeddedItemWithEffects } from '../../helpers/utils.mjs';
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
@@ -46,8 +45,6 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
};
this._dragDrop = this._createDragDropHandlers();
-
- this.itemBrowser = null;
}
get title() {
@@ -86,9 +83,9 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
static PARTS = {
tabs: { template: 'systems/daggerheart/templates/characterCreation/tabs.hbs' },
+ class: { template: 'systems/daggerheart/templates/characterCreation/tabs/class.hbs' },
ancestry: { template: 'systems/daggerheart/templates/characterCreation/tabs/ancestry.hbs' },
community: { template: 'systems/daggerheart/templates/characterCreation/tabs/community.hbs' },
- class: { template: 'systems/daggerheart/templates/characterCreation/tabs/class.hbs' },
traits: { template: 'systems/daggerheart/templates/characterCreation/tabs/traits.hbs' },
experience: { template: 'systems/daggerheart/templates/characterCreation/tabs/experience.hbs' },
domainCards: { template: 'systems/daggerheart/templates/characterCreation/tabs/domainCards.hbs' },
@@ -98,6 +95,13 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
};
static TABS = {
+ class: {
+ active: false,
+ cssClass: '',
+ group: 'setup',
+ id: 'class',
+ label: 'DAGGERHEART.APPLICATIONS.CharacterCreation.tabs.class'
+ },
ancestry: {
active: true,
cssClass: '',
@@ -112,13 +116,6 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
id: 'community',
label: 'DAGGERHEART.APPLICATIONS.CharacterCreation.tabs.community'
},
- class: {
- active: false,
- cssClass: '',
- group: 'setup',
- id: 'class',
- label: 'DAGGERHEART.APPLICATIONS.CharacterCreation.tabs.class'
- },
traits: {
active: false,
cssClass: '',
@@ -159,10 +156,10 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
v.cssClass = v.active ? 'active' : '';
switch (v.id) {
- case 'community':
+ case 'ancestry':
v.disabled = this.setup.visibility < 2;
break;
- case 'class':
+ case 'community':
v.disabled = this.setup.visibility < 3;
break;
case 'traits':
@@ -195,7 +192,7 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
}
async _prepareContext(_options) {
- this.tabGroups.setup = this.tabGroups.setup ?? 'ancestry';
+ this.tabGroups.setup = this.tabGroups.setup ?? 'class';
const context = await super._prepareContext(_options);
context.tabs = this._getTabs(this.constructor.TABS);
@@ -269,13 +266,13 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
context.isLastTab = this.tabGroups.setup === 'equipment';
switch (this.tabGroups.setup) {
case null:
- case 'ancestry':
+ case 'class':
context.nextDisabled = this.setup.visibility === 1;
break;
- case 'community':
+ case 'ancestry':
context.nextDisabled = this.setup.visibility === 2;
break;
- case 'class':
+ case 'community':
context.nextDisabled = this.setup.visibility === 3;
break;
case 'traits':
@@ -366,11 +363,11 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
case 4:
return this.getNrSelectedTrait() === 6 ? 5 : 4;
case 3:
- return this.setup.class.uuid && this.setup.subclass.uuid ? 4 : 3;
+ return this.setup.community.uuid ? 4 : 3;
case 2:
- return this.setup.community.uuid ? 3 : 2;
+ return this.setup.primaryAncestry.uuid ? 3 : 2;
case 1:
- return this.setup.primaryAncestry.uuid ? 2 : 1;
+ return this.setup.class.uuid && this.setup.subclass.uuid ? 2 : 1;
}
}
@@ -425,8 +422,7 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
equipment = ['armor', 'weapon'];
const presets = {
- compendium: 'daggerheart',
- folder: equipment.includes(type) ? 'equipments' : type,
+ folder: equipment.includes(type) ? `equipments.folders.${type}s` : type,
render: {
noFolder: true
}
@@ -442,14 +438,14 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
presets.filter = {
'system.linkedClass.uuid': { key: 'system.linkedClass.uuid', value: this.setup.class?.uuid }
};
-
+
if (equipment.includes(type))
presets.filter = {
'system.tier': { key: 'system.tier', value: 1 },
'type': { key: 'type', value: type }
};
- return (this.itemBrowser = await new ItemBrowser({ presets }).render({ force: true }));
+ ui.compendiumBrowser.open(presets);
}
static async viewItem(_, target) {
@@ -477,10 +473,10 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
static setupGoNext() {
switch (this.setup.visibility) {
case 2:
- this.tabGroups.setup = 'community';
+ this.tabGroups.setup = 'ancestry';
break;
case 3:
- this.tabGroups.setup = 'class';
+ this.tabGroups.setup = 'community';
break;
case 4:
this.tabGroups.setup = 'traits';
@@ -567,7 +563,7 @@ export default class DhCharacterCreation extends HandlebarsApplicationMixin(Appl
{ overwrite: true }
);
- if (this.itemBrowser) this.itemBrowser.close();
+ if (ui.compendiumBrowser) ui.compendiumBrowser.close();
this.close();
}
diff --git a/module/applications/dialogs/_module.mjs b/module/applications/dialogs/_module.mjs
index 8908ae2b..43faa68a 100644
--- a/module/applications/dialogs/_module.mjs
+++ b/module/applications/dialogs/_module.mjs
@@ -1,11 +1,15 @@
+export { default as AttributionDialog } from './attributionDialog.mjs';
export { default as BeastformDialog } from './beastformDialog.mjs';
export { default as d20RollDialog } from './d20RollDialog.mjs';
export { default as DamageDialog } from './damageDialog.mjs';
export { default as DamageReductionDialog } from './damageReductionDialog.mjs';
export { default as DeathMove } from './deathMove.mjs';
export { default as Downtime } from './downtime.mjs';
+export { default as ImageSelectDialog } from './imageSelectDialog.mjs';
export { default as MulticlassChoiceDialog } from './multiclassChoiceDialog.mjs';
export { default as OwnershipSelection } from './ownershipSelection.mjs';
export { default as RerollDamageDialog } from './rerollDamageDialog.mjs';
export { default as ResourceDiceDialog } from './resourceDiceDialog.mjs';
export { default as ActionSelectionDialog } from './actionSelectionDialog.mjs';
+export { default as GroupRollDialog } from './group-roll-dialog.mjs';
+export { default as TagTeamDialog } from './tagTeamDialog.mjs';
diff --git a/module/applications/dialogs/attributionDialog.mjs b/module/applications/dialogs/attributionDialog.mjs
new file mode 100644
index 00000000..99ff261a
--- /dev/null
+++ b/module/applications/dialogs/attributionDialog.mjs
@@ -0,0 +1,93 @@
+import autocomplete from 'autocompleter';
+
+const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
+
+export default class AttributionDialog extends HandlebarsApplicationMixin(ApplicationV2) {
+ constructor(item) {
+ super({});
+
+ this.item = item;
+ this.sources = Object.keys(CONFIG.DH.GENERAL.attributionSources).flatMap(groupKey => {
+ const group = CONFIG.DH.GENERAL.attributionSources[groupKey];
+ return group.values.map(x => ({ group: group.label, ...x }));
+ });
+ }
+
+ get title() {
+ return game.i18n.localize('DAGGERHEART.APPLICATIONS.Attribution.title');
+ }
+
+ static DEFAULT_OPTIONS = {
+ tag: 'form',
+ classes: ['daggerheart', 'dh-style', 'dialog', 'views', 'attribution'],
+ position: { width: 'auto', height: 'auto' },
+ window: { icon: 'fa-solid fa-signature' },
+ form: { handler: this.updateData, submitOnChange: false, closeOnSubmit: true }
+ };
+
+ static PARTS = {
+ main: { template: 'systems/daggerheart/templates/dialogs/attribution.hbs' }
+ };
+
+ _attachPartListeners(partId, htmlElement, options) {
+ super._attachPartListeners(partId, htmlElement, options);
+ const sources = this.sources;
+
+ htmlElement.querySelectorAll('.attribution-input').forEach(element => {
+ autocomplete({
+ input: element,
+ fetch: function (text, update) {
+ if (!text) {
+ update(sources);
+ } else {
+ text = text.toLowerCase();
+ var suggestions = sources.filter(n => n.label.toLowerCase().includes(text));
+ update(suggestions);
+ }
+ },
+ render: function (item, search) {
+ const label = game.i18n.localize(item.label);
+ const matchIndex = label.toLowerCase().indexOf(search);
+
+ const beforeText = label.slice(0, matchIndex);
+ const matchText = label.slice(matchIndex, matchIndex + search.length);
+ const after = label.slice(matchIndex + search.length, label.length);
+
+ const element = document.createElement('li');
+ element.innerHTML = `${beforeText}${matchText ? `${matchText}` : ''}${after}`;
+ if (item.hint) {
+ element.dataset.tooltip = game.i18n.localize(item.hint);
+ }
+
+ return element;
+ },
+ renderGroup: function (label) {
+ const itemElement = document.createElement('div');
+ itemElement.textContent = game.i18n.localize(label);
+ return itemElement;
+ },
+ onSelect: function (item) {
+ element.value = item.label;
+ },
+ click: e => e.fetch(),
+ customize: function (_input, _inputRect, container) {
+ container.style.zIndex = foundry.applications.api.ApplicationV2._maxZ;
+ },
+ minLength: 0
+ });
+ });
+ }
+
+ async _prepareContext(_options) {
+ const context = await super._prepareContext(_options);
+ context.item = this.item;
+ context.data = this.item.system.attribution;
+
+ return context;
+ }
+
+ static async updateData(_event, _element, formData) {
+ await this.item.update({ 'system.attribution': formData.object });
+ this.item.sheet.refreshFrame();
+ }
+}
diff --git a/module/applications/dialogs/beastformDialog.mjs b/module/applications/dialogs/beastformDialog.mjs
index 35bac11c..3dd88d6c 100644
--- a/module/applications/dialogs/beastformDialog.mjs
+++ b/module/applications/dialogs/beastformDialog.mjs
@@ -276,7 +276,22 @@ export default class BeastformDialog extends HandlebarsApplicationMixin(Applicat
const featureItem = item;
app.addEventListener(
'close',
- () => resolve({ selected: app.selected, evolved: app.evolved, hybrid: app.hybrid, item: featureItem }),
+ async () => {
+ const selected = app.selected.toObject();
+ const data = await game.system.api.data.items.DHBeastform.getWildcardImage(
+ app.configData.data.parent,
+ app.selected
+ );
+ if (data) {
+ if (!data.selectedImage) selected = null;
+ else {
+ if (data.usesDynamicToken) selected.system.tokenRingImg = data.selectedImage;
+ else selected.system.tokenImg = data.selectedImage;
+ }
+ }
+
+ resolve({ selected: selected, evolved: app.evolved, hybrid: app.hybrid, item: featureItem });
+ },
{ once: true }
);
app.render({ force: true });
diff --git a/module/applications/dialogs/d20RollDialog.mjs b/module/applications/dialogs/d20RollDialog.mjs
index 0f1cd946..2534a2b8 100644
--- a/module/applications/dialogs/d20RollDialog.mjs
+++ b/module/applications/dialogs/d20RollDialog.mjs
@@ -1,3 +1,5 @@
+import { abilities } from '../../config/actorConfig.mjs';
+
const { ApplicationV2, HandlebarsApplicationMixin } = foundry.applications.api;
export default class D20RollDialog extends HandlebarsApplicationMixin(ApplicationV2) {
@@ -7,20 +9,20 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
this.roll = roll;
this.config = config;
this.config.experiences = [];
- this.reactionOverride = config.roll?.type === 'reaction';
+ this.reactionOverride = config.actionType === 'reaction';
if (config.source?.action) {
this.item = config.data.parent.items.get(config.source.item) ?? config.data.parent;
this.action =
config.data.attack?._id == config.source.action
? config.data.attack
- : this.item.system.actions.get(config.source.action);
+ : this.item.system.actionsList?.find(a => a.id === config.source.action);
}
}
static DEFAULT_OPTIONS = {
tag: 'form',
- id: 'roll-selection',
+ // id: 'roll-selection',
classes: ['daggerheart', 'dialog', 'dh-style', 'views', 'roll-selection'],
position: {
width: 'auto'
@@ -32,6 +34,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
updateIsAdvantage: this.updateIsAdvantage,
selectExperience: this.selectExperience,
toggleReaction: this.toggleReaction,
+ toggleTagTeamRoll: this.toggleTagTeamRoll,
submitRoll: this.submitRoll
},
form: {
@@ -42,7 +45,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
};
get title() {
- return this.config.title;
+ return `${this.config.title}${this.actor ? `: ${this.actor.name}` : ''}`;
}
get actor() {
@@ -66,7 +69,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
context.rollConfig = this.config;
context.hasRoll = !!this.config.roll;
context.canRoll = true;
- context.selectedRollMode = this.config.selectedRollMode;
+ context.selectedRollMode = this.config.selectedRollMode ?? game.settings.get('core', 'rollMode');
context.rollModes = Object.entries(CONFIG.Dice.rollModes).map(([action, { label, icon }]) => ({
action,
label,
@@ -81,7 +84,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
);
context.costs = updatedCosts.map(x => ({
...x,
- label: x.keyIsID
+ label: x.itemId
? this.action.parent.parent.name
: game.i18n.localize(CONFIG.DH.GENERAL.abilityCosts[x.key].label)
}));
@@ -113,15 +116,31 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
context.isLite = this.config.roll?.lite;
context.extraFormula = this.config.extraFormula;
context.formula = this.roll.constructFormula(this.config);
+ if (this.actor.system.traits) context.abilities = this.getTraitModifiers();
- context.showReaction = !context.rollConfig.type && context.rollType === 'DualityRoll';
+ context.showReaction = !this.config.roll?.type && context.rollType === 'DualityRoll';
context.reactionOverride = this.reactionOverride;
}
+
+ const tagTeamSetting = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll);
+ if (tagTeamSetting.members[this.actor.id] && !this.config.skips?.createMessage) {
+ context.activeTagTeamRoll = true;
+ context.tagTeamSelected = this.config.tagTeamSelected;
+ }
+
return context;
}
+ getTraitModifiers() {
+ return Object.values(abilities).map(a => ({
+ id: a.id,
+ label: `${game.i18n.localize(a.label)} (${this.actor.system.traits[a.id]?.value.signedString() ?? 0})`
+ }));
+ }
+
static updateRollConfiguration(event, _, formData) {
const { ...rest } = foundry.utils.expandObject(formData.object);
+
this.config.selectedRollMode = rest.selectedRollMode;
if (this.config.costs) {
@@ -133,6 +152,12 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
this.roll[key] = value;
});
}
+ if (rest.hasOwnProperty('trait')) {
+ this.config.roll.trait = rest.trait;
+ this.config.title = game.i18n.format('DAGGERHEART.UI.Chat.dualityRoll.abilityCheckTitle', {
+ ability: game.i18n.localize(abilities[this.config.roll.trait]?.label)
+ });
+ }
this.config.extraFormula = rest.extraFormula;
this.render();
}
@@ -151,35 +176,38 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
this.config.experiences.indexOf(button.dataset.key) > -1
? this.config.experiences.filter(x => x !== button.dataset.key)
: [...this.config.experiences, button.dataset.key];
- if (this.config?.data?.parent?.type === 'character' || this.config?.data?.parent?.type === 'companion') {
- this.config.costs =
- this.config.costs.indexOf(this.config.costs.find(c => c.extKey === button.dataset.key)) > -1
- ? this.config.costs.filter(x => x.extKey !== button.dataset.key)
- : [
- ...this.config.costs,
- {
- extKey: button.dataset.key,
- key: 'hope',
- value: 1,
- name: this.config.data?.experiences?.[button.dataset.key]?.name
- }
- ];
- }
+ this.config.costs =
+ this.config.costs.indexOf(this.config.costs.find(c => c.extKey === button.dataset.key)) > -1
+ ? this.config.costs.filter(x => x.extKey !== button.dataset.key)
+ : [
+ ...this.config.costs,
+ {
+ extKey: button.dataset.key,
+ key: this.config?.data?.parent?.isNPC ? 'fear' : 'hope',
+ value: 1,
+ name: this.config.data?.experiences?.[button.dataset.key]?.name
+ }
+ ];
this.render();
}
static toggleReaction() {
if (this.config.roll) {
this.reactionOverride = !this.reactionOverride;
- this.config.roll.type = this.reactionOverride
+ this.config.actionType = this.reactionOverride
? CONFIG.DH.ITEM.actionTypes.reaction.id
- : this.config.roll.type === CONFIG.DH.ITEM.actionTypes.reaction.id
+ : this.config.actionType === CONFIG.DH.ITEM.actionTypes.reaction.id
? null
- : this.config.roll.type;
+ : this.config.actionType;
this.render();
}
}
+ static toggleTagTeamRoll() {
+ this.config.tagTeamSelected = !this.config.tagTeamSelected;
+ this.render();
+ }
+
static async submitRoll() {
await this.close({ submitted: true });
}
diff --git a/module/applications/dialogs/group-roll-dialog.mjs b/module/applications/dialogs/group-roll-dialog.mjs
new file mode 100644
index 00000000..2cb79563
--- /dev/null
+++ b/module/applications/dialogs/group-roll-dialog.mjs
@@ -0,0 +1,196 @@
+import autocomplete from 'autocompleter';
+import { abilities } from '../../config/actorConfig.mjs';
+
+const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
+
+export default class GroupRollDialog extends HandlebarsApplicationMixin(ApplicationV2) {
+ constructor(actors) {
+ super();
+ this.actors = actors;
+ this.actorLeader = {};
+ this.actorsMembers = [];
+ }
+
+ get title() {
+ return 'Group Roll';
+ }
+
+ static DEFAULT_OPTIONS = {
+ tag: 'form',
+ classes: ['daggerheart', 'views', 'dh-style', 'dialog', 'group-roll'],
+ position: { width: 'auto', height: 'auto' },
+ window: {
+ title: 'DAGGERHEART.UI.Chat.groupRoll.title'
+ },
+ actions: {
+ roll: GroupRollDialog.#roll,
+ removeLeader: GroupRollDialog.#removeLeader,
+ removeMember: GroupRollDialog.#removeMember
+ },
+ form: { handler: this.updateData, submitOnChange: true, closeOnSubmit: false }
+ };
+
+ static PARTS = {
+ application: {
+ id: 'group-roll',
+ template: 'systems/daggerheart/templates/dialogs/group-roll/group-roll.hbs'
+ }
+ };
+
+ _attachPartListeners(partId, htmlElement, options) {
+ super._attachPartListeners(partId, htmlElement, options);
+ const leaderChoices = this.actors.filter(x => this.actorsMembers.every(member => member.actor?.id !== x.id));
+ const memberChoices = this.actors.filter(
+ x => this.actorLeader?.actor?.id !== x.id && this.actorsMembers.every(member => member.actor?.id !== x.id)
+ );
+
+ htmlElement.querySelectorAll('.leader-change-input').forEach(element => {
+ autocomplete({
+ input: element,
+ fetch: function (text, update) {
+ if (!text) {
+ update(leaderChoices);
+ } else {
+ text = text.toLowerCase();
+ var suggestions = leaderChoices.filter(n => n.name.toLowerCase().includes(text));
+ update(suggestions);
+ }
+ },
+ render: function (actor, search) {
+ const actorName = game.i18n.localize(actor.name);
+ const matchIndex = actorName.toLowerCase().indexOf(search);
+
+ const beforeText = actorName.slice(0, matchIndex);
+ const matchText = actorName.slice(matchIndex, matchIndex + search.length);
+ const after = actorName.slice(matchIndex + search.length, actorName.length);
+ const img = document.createElement('img');
+ img.src = actor.img;
+
+ const element = document.createElement('li');
+ element.appendChild(img);
+
+ const label = document.createElement('span');
+ label.innerHTML = `${beforeText}${matchText ? `${matchText}` : ''}${after}`;
+ element.appendChild(label);
+
+ return element;
+ },
+ renderGroup: function (label) {
+ const itemElement = document.createElement('div');
+ itemElement.textContent = game.i18n.localize(label);
+ return itemElement;
+ },
+ onSelect: actor => {
+ element.value = actor.uuid;
+ this.actorLeader = { actor: actor, trait: 'agility', difficulty: 0 };
+ this.render();
+ },
+ click: e => e.fetch(),
+ customize: function (_input, _inputRect, container) {
+ container.style.zIndex = foundry.applications.api.ApplicationV2._maxZ;
+ },
+ minLength: 0
+ });
+ });
+
+ htmlElement.querySelectorAll('.team-push-input').forEach(element => {
+ autocomplete({
+ input: element,
+ fetch: function (text, update) {
+ if (!text) {
+ update(memberChoices);
+ } else {
+ text = text.toLowerCase();
+ var suggestions = memberChoices.filter(n => n.name.toLowerCase().includes(text));
+ update(suggestions);
+ }
+ },
+ render: function (actor, search) {
+ const actorName = game.i18n.localize(actor.name);
+ const matchIndex = actorName.toLowerCase().indexOf(search);
+
+ const beforeText = actorName.slice(0, matchIndex);
+ const matchText = actorName.slice(matchIndex, matchIndex + search.length);
+ const after = actorName.slice(matchIndex + search.length, actorName.length);
+ const img = document.createElement('img');
+ img.src = actor.img;
+
+ const element = document.createElement('li');
+ element.appendChild(img);
+
+ const label = document.createElement('span');
+ label.innerHTML = `${beforeText}${matchText ? `${matchText}` : ''}${after}`;
+ element.appendChild(label);
+
+ return element;
+ },
+ renderGroup: function (label) {
+ const itemElement = document.createElement('div');
+ itemElement.textContent = game.i18n.localize(label);
+ return itemElement;
+ },
+ onSelect: actor => {
+ element.value = actor.uuid;
+ this.actorsMembers.push({ actor: actor, trait: 'agility', difficulty: 0 });
+ this.render({ force: true });
+ },
+ click: e => e.fetch(),
+ customize: function (_input, _inputRect, container) {
+ container.style.zIndex = foundry.applications.api.ApplicationV2._maxZ;
+ },
+ minLength: 0
+ });
+ });
+ }
+
+ async _prepareContext(_options) {
+ const context = await super._prepareContext(_options);
+ context.leader = this.actorLeader;
+ context.members = this.actorsMembers;
+ context.traitList = abilities;
+
+ context.allSelected = this.actorsMembers.length + (this.actorLeader?.actor ? 1 : 0) === this.actors.length;
+ context.rollDisabled = context.members.length === 0 || !this.actorLeader?.actor;
+
+ return context;
+ }
+
+ static updateData(event, _, formData) {
+ const { actorLeader, actorsMembers } = foundry.utils.expandObject(formData.object);
+ this.actorLeader = foundry.utils.mergeObject(this.actorLeader, actorLeader);
+ this.actorsMembers = foundry.utils.mergeObject(this.actorsMembers, actorsMembers);
+ this.render(true);
+ }
+
+ static async #removeLeader(_, button) {
+ this.actorLeader = null;
+ this.render();
+ }
+
+ static async #removeMember(_, button) {
+ this.actorsMembers = this.actorsMembers.filter(m => m.actor.uuid !== button.dataset.memberUuid);
+ this.render();
+ }
+
+ static async #roll() {
+ const cls = getDocumentClass('ChatMessage');
+ const systemData = {
+ leader: this.actorLeader,
+ members: this.actorsMembers
+ };
+ const msg = {
+ type: 'groupRoll',
+ user: game.user.id,
+ speaker: cls.getSpeaker(),
+ title: game.i18n.localize('DAGGERHEART.UI.Chat.groupRoll.title'),
+ system: systemData,
+ content: await foundry.applications.handlebars.renderTemplate(
+ 'systems/daggerheart/templates/ui/chat/groupRoll.hbs',
+ { system: systemData }
+ )
+ };
+
+ cls.create(msg);
+ this.close();
+ }
+}
diff --git a/module/applications/dialogs/imageSelectDialog.mjs b/module/applications/dialogs/imageSelectDialog.mjs
new file mode 100644
index 00000000..b54a45e0
--- /dev/null
+++ b/module/applications/dialogs/imageSelectDialog.mjs
@@ -0,0 +1,67 @@
+const { ApplicationV2, HandlebarsApplicationMixin } = foundry.applications.api;
+
+export default class ImageSelectDialog extends HandlebarsApplicationMixin(ApplicationV2) {
+ constructor(titleName, images) {
+ super();
+
+ this.titleName = titleName;
+ this.images = images;
+ }
+
+ static DEFAULT_OPTIONS = {
+ tag: 'form',
+ classes: ['daggerheart', 'dialog', 'dh-style', 'image-select'],
+ position: {
+ width: 600,
+ height: 'auto'
+ },
+ window: {
+ icon: 'fa-solid fa-paw'
+ },
+ actions: {
+ selectImage: ImageSelectDialog.#selectImage,
+ finishSelection: ImageSelectDialog.#finishSelection
+ }
+ };
+
+ get title() {
+ return this.titleName;
+ }
+
+ /** @override */
+ static PARTS = {
+ main: { template: 'systems/daggerheart/templates/dialogs/image-select/main.hbs' },
+ footer: { template: 'systems/daggerheart/templates/dialogs/image-select/footer.hbs' }
+ };
+
+ async _prepareContext(_options) {
+ const context = await super._prepareContext(_options);
+ context.images = this.images;
+ context.selectedImage = this.selectedImage;
+
+ return context;
+ }
+
+ static #selectImage(_event, button) {
+ this.selectedImage = button.dataset.image ?? button.querySelector('img').dataset.image;
+ this.render();
+ }
+
+ static #finishSelection() {
+ this.close({ submitted: true });
+ }
+
+ async close(options = {}) {
+ if (!options.submitted) this.selectedImage = null;
+
+ await super.close();
+ }
+
+ static async configure(title, images) {
+ return new Promise(resolve => {
+ const app = new this(title, images);
+ app.addEventListener('close', () => resolve(app.selectedImage), { once: true });
+ app.render({ force: true });
+ });
+ }
+}
diff --git a/module/applications/dialogs/ownershipSelection.mjs b/module/applications/dialogs/ownershipSelection.mjs
index e4a7e628..049f4d99 100644
--- a/module/applications/dialogs/ownershipSelection.mjs
+++ b/module/applications/dialogs/ownershipSelection.mjs
@@ -1,18 +1,20 @@
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
export default class OwnershipSelection extends HandlebarsApplicationMixin(ApplicationV2) {
- constructor(resolve, reject, name, ownership) {
+ constructor(name, ownership, defaultOwnership) {
super({});
- this.resolve = resolve;
- this.reject = reject;
this.name = name;
- this.ownership = ownership;
+ this.ownership = foundry.utils.deepClone(ownership);
+ this.defaultOwnership = defaultOwnership;
}
static DEFAULT_OPTIONS = {
tag: 'form',
- classes: ['daggerheart', 'views', 'ownership-selection'],
+ classes: ['daggerheart', 'views', 'dialog', 'dh-style', 'ownership-selection'],
+ window: {
+ icon: 'fa-solid fa-users'
+ },
position: {
width: 600,
height: 'auto'
@@ -30,43 +32,48 @@ export default class OwnershipSelection extends HandlebarsApplicationMixin(Appli
return game.i18n.format('DAGGERHEART.APPLICATIONS.OwnershipSelection.title', { name: this.name });
}
+ getOwnershipData(id) {
+ return this.ownership[id] ?? CONST.DOCUMENT_OWNERSHIP_LEVELS.INHERIT;
+ }
+
async _prepareContext(_options) {
const context = await super._prepareContext(_options);
- context.ownershipOptions = Object.keys(CONST.DOCUMENT_OWNERSHIP_LEVELS).map(level => ({
- value: CONST.DOCUMENT_OWNERSHIP_LEVELS[level],
- label: game.i18n.localize(`OWNERSHIP.${level}`)
- }));
- context.ownership = {
- default: this.ownership.default,
- players: Object.keys(this.ownership.players).reduce((acc, x) => {
- const user = game.users.get(x);
- if (!user.isGM) {
- acc[x] = {
- img: user.character?.img ?? 'icons/svg/cowled.svg',
- name: user.name,
- ownership: this.ownership.players[x].value
- };
- }
+ context.ownershipDefaultOptions = CONFIG.DH.GENERAL.basicOwnershiplevels;
+ context.ownershipOptions = CONFIG.DH.GENERAL.simpleOwnershiplevels;
+ context.defaultOwnership = this.defaultOwnership;
+ context.ownership = game.users.reduce((acc, user) => {
+ if (!user.isGM) {
+ acc[user.id] = {
+ ...user,
+ img: user.character?.img ?? 'icons/svg/cowled.svg',
+ ownership: this.getOwnershipData(user.id)
+ };
+ }
- return acc;
- }, {})
- };
+ return acc;
+ }, {});
return context;
}
static async updateData(event, _, formData) {
- const { ownership } = foundry.utils.expandObject(formData.object);
-
- this.resolve(ownership);
- this.close(true);
+ const data = foundry.utils.expandObject(formData.object);
+ this.close(data);
}
- async close(fromSave) {
- if (!fromSave) {
- this.reject();
+ async close(data) {
+ if (data) {
+ this.saveData = data;
}
await super.close();
}
+
+ static async configure(name, ownership, defaultOwnership) {
+ return new Promise(resolve => {
+ const app = new this(name, ownership, defaultOwnership);
+ app.addEventListener('close', () => resolve(app.saveData), { once: true });
+ app.render({ force: true });
+ });
+ }
}
diff --git a/module/applications/dialogs/rerollDamageDialog.mjs b/module/applications/dialogs/rerollDamageDialog.mjs
index 0c2ea0e1..e1b75eb7 100644
--- a/module/applications/dialogs/rerollDamageDialog.mjs
+++ b/module/applications/dialogs/rerollDamageDialog.mjs
@@ -1,3 +1,5 @@
+import { RefreshType, socketEvent } from '../../systemRegistration/socket.mjs';
+
const { ApplicationV2, HandlebarsApplicationMixin } = foundry.applications.api;
export default class RerollDamageDialog extends HandlebarsApplicationMixin(ApplicationV2) {
@@ -122,6 +124,15 @@ export default class RerollDamageDialog extends HandlebarsApplicationMixin(Appli
}, {})
};
await this.message.update(update);
+
+ Hooks.callAll(socketEvent.Refresh, { refreshType: RefreshType.TagTeamRoll });
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.Refresh,
+ data: {
+ refreshType: RefreshType.TagTeamRoll
+ }
+ });
+
await this.close();
}
diff --git a/module/applications/dialogs/tagTeamDialog.mjs b/module/applications/dialogs/tagTeamDialog.mjs
new file mode 100644
index 00000000..e7290f1c
--- /dev/null
+++ b/module/applications/dialogs/tagTeamDialog.mjs
@@ -0,0 +1,315 @@
+import { GMUpdateEvent, RefreshType, socketEvent } from '../../systemRegistration/socket.mjs';
+
+const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
+
+export default class TagTeamDialog extends HandlebarsApplicationMixin(ApplicationV2) {
+ constructor(party) {
+ super();
+
+ this.data = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll);
+ this.party = party;
+
+ this.setupHooks = Hooks.on(socketEvent.Refresh, ({ refreshType }) => {
+ if (refreshType === RefreshType.TagTeamRoll) {
+ this.data = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll);
+ this.render();
+ }
+ });
+ }
+
+ get title() {
+ return game.i18n.localize('DAGGERHEART.APPLICATIONS.TagTeamSelect.title');
+ }
+
+ static DEFAULT_OPTIONS = {
+ tag: 'form',
+ classes: ['daggerheart', 'views', 'dh-style', 'dialog', 'tag-team-dialog'],
+ position: { width: 550, height: 'auto' },
+ actions: {
+ removeMember: TagTeamDialog.#removeMember,
+ unlinkMessage: TagTeamDialog.#unlinkMessage,
+ selectMessage: TagTeamDialog.#selectMessage,
+ createTagTeam: TagTeamDialog.#createTagTeam
+ },
+ form: { handler: this.updateData, submitOnChange: true, closeOnSubmit: false }
+ };
+
+ static PARTS = {
+ application: {
+ id: 'tag-team-dialog',
+ template: 'systems/daggerheart/templates/dialogs/tagTeamDialog.hbs'
+ }
+ };
+
+ async _prepareContext(_options) {
+ const context = await super._prepareContext(_options);
+ context.hopeCost = this.hopeCost;
+ context.data = this.data;
+
+ context.memberOptions = this.party.filter(c => !this.data.members[c.id]);
+ context.selectedCharacterOptions = this.party.filter(c => this.data.members[c.id]);
+
+ context.members = Object.keys(this.data.members).map(id => {
+ const roll = this.data.members[id].messageId ? game.messages.get(this.data.members[id].messageId) : null;
+
+ context.usesDamage =
+ context.usesDamage === undefined
+ ? roll?.system.hasDamage
+ : context.usesDamage && roll?.system.hasDamage;
+ return {
+ character: this.party.find(x => x.id === id),
+ selected: this.data.members[id].selected,
+ roll: roll,
+ damageValues: roll
+ ? Object.keys(roll.system.damage).map(key => ({
+ key: key,
+ name: game.i18n.localize(CONFIG.DH.GENERAL.healingTypes[key].label),
+ total: roll.system.damage[key].total
+ }))
+ : null
+ };
+ });
+
+ const initiatorChar = this.party.find(x => x.id === this.data.initiator.id);
+ context.initiator = {
+ character: initiatorChar,
+ cost: this.data.initiator.cost
+ };
+
+ context.selectedData = Object.values(context.members).reduce(
+ (acc, member) => {
+ if (!member.roll) return acc;
+ if (member.selected) {
+ acc.result = `${member.roll.system.roll.total} ${member.roll.system.roll.result.label}`;
+ }
+
+ if (context.usesDamage) {
+ if (!acc.damageValues) acc.damageValues = {};
+ for (let damage of member.damageValues) {
+ if (acc.damageValues[damage.key]) {
+ acc.damageValues[damage.key].total += damage.total;
+ } else {
+ acc.damageValues[damage.key] = foundry.utils.deepClone(damage);
+ }
+ }
+ }
+
+ return acc;
+ },
+ { result: null, damageValues: null }
+ );
+ context.showResult = Object.values(context.members).reduce((enabled, member) => {
+ if (!member.roll) return enabled;
+ if (context.usesDamage) {
+ enabled = enabled === null ? member.damageValues.length > 0 : enabled && member.damageValues.length > 0;
+ } else {
+ enabled = enabled === null ? Boolean(member.roll) : enabled && Boolean(member.roll);
+ }
+
+ return enabled;
+ }, null);
+
+ context.createDisabled =
+ !context.selectedData.result ||
+ !this.data.initiator.id ||
+ Object.keys(this.data.members).length === 0 ||
+ Object.values(context.members).some(x =>
+ context.usesDamage ? !x.damageValues || x.damageValues.length === 0 : !x.roll
+ );
+
+ return context;
+ }
+
+ async updateSource(update) {
+ await this.data.updateSource(update);
+
+ if (game.user.isGM) {
+ await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll, this.data.toObject());
+ Hooks.callAll(socketEvent.Refresh, { refreshType: RefreshType.TagTeamRoll });
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.Refresh,
+ data: {
+ refreshType: RefreshType.TagTeamRoll
+ }
+ });
+ } else {
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.GMUpdate,
+ data: {
+ action: GMUpdateEvent.UpdateSetting,
+ uuid: CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll,
+ update: this.data.toObject(),
+ refresh: { refreshType: RefreshType.TagTeamRoll }
+ }
+ });
+ }
+ }
+
+ static async updateData(_event, _element, formData) {
+ const { selectedAddMember, initiator } = foundry.utils.expandObject(formData.object);
+ const update = { initiator: initiator };
+ if (selectedAddMember) {
+ const member = await foundry.utils.fromUuid(selectedAddMember);
+ update[`members.${member.id}`] = { messageId: null };
+ }
+
+ await this.updateSource(update);
+ this.render();
+ }
+
+ static async #removeMember(_, button) {
+ const update = { [`members.-=${button.dataset.characterId}`]: null };
+ if (this.data.initiator.id === button.dataset.characterId) {
+ update.iniator = { id: null };
+ }
+
+ await this.updateSource(update);
+ }
+
+ static async #unlinkMessage(_, button) {
+ await this.updateSource({ [`members.${button.id}.messageId`]: null });
+ }
+
+ static async #selectMessage(_, button) {
+ const member = this.data.members[button.id];
+ const currentSelected = Object.keys(this.data.members).find(key => this.data.members[key].selected);
+ const curretSelectedUpdate =
+ currentSelected && currentSelected !== button.id ? { [`${currentSelected}`]: { selected: false } } : {};
+ await this.updateSource({
+ members: {
+ [`${button.id}`]: { selected: !member.selected },
+ ...curretSelectedUpdate
+ }
+ });
+ }
+
+ static async #createTagTeam() {
+ const mainRollId = Object.keys(this.data.members).find(key => this.data.members[key].selected);
+ const mainRoll = game.messages.get(this.data.members[mainRollId].messageId);
+
+ if (this.data.initiator.cost) {
+ const initiator = this.party.find(x => x.id === this.data.initiator.id);
+ if (initiator.system.resources.hope.value < this.data.initiator.cost) {
+ return ui.notifications.warn(
+ game.i18n.localize('DAGGERHEART.APPLICATIONS.TagTeamSelect.insufficientHope')
+ );
+ }
+ }
+
+ const secondaryRolls = Object.keys(this.data.members)
+ .filter(key => key !== mainRollId)
+ .map(key => game.messages.get(this.data.members[key].messageId));
+
+ const systemData = foundry.utils.deepClone(mainRoll).system.toObject();
+ for (let roll of secondaryRolls) {
+ if (roll.system.hasDamage) {
+ for (let key in roll.system.damage) {
+ var damage = roll.system.damage[key];
+ if (systemData.damage[key]) {
+ systemData.damage[key].total += damage.total;
+ systemData.damage[key].parts = [...systemData.damage[key].parts, ...damage.parts];
+ } else {
+ systemData.damage[key] = damage;
+ }
+ }
+ }
+ }
+ systemData.title = game.i18n.localize('DAGGERHEART.APPLICATIONS.TagTeamSelect.chatMessageRollTitle');
+
+ const cls = getDocumentClass('ChatMessage'),
+ msgData = {
+ type: 'dualityRoll',
+ user: game.user.id,
+ title: game.i18n.localize('DAGGERHEART.APPLICATIONS.TagTeamSelect.title'),
+ speaker: cls.getSpeaker({ actor: this.party.find(x => x.id === mainRollId) }),
+ system: systemData,
+ rolls: mainRoll.rolls,
+ sound: null,
+ flags: { core: { RollTable: true } }
+ };
+
+ await cls.create(msgData);
+
+ const fearUpdate = { key: 'fear', value: null, total: null, enabled: true };
+ for (let memberId of Object.keys(this.data.members)) {
+ const resourceUpdates = [];
+ if (systemData.roll.isCritical || systemData.roll.result.duality === 1) {
+ const value =
+ memberId !== this.data.initiator.id
+ ? 1
+ : this.data.initiator.cost
+ ? 1 - this.data.initiator.cost
+ : 1;
+ resourceUpdates.push({ key: 'hope', value: value, total: -value, enabled: true });
+ }
+ if (systemData.roll.isCritical) resourceUpdates.push({ key: 'stress', value: -1, total: 1, enabled: true });
+ if (systemData.roll.result.duality === -1) {
+ fearUpdate.value = fearUpdate.value === null ? 1 : fearUpdate.value + 1;
+ fearUpdate.total = fearUpdate.total === null ? -1 : fearUpdate.total - 1;
+ }
+
+ this.party.find(x => x.id === memberId).modifyResource(resourceUpdates);
+ }
+
+ if (fearUpdate.value) {
+ this.party.find(x => x.id === mainRollId).modifyResource([fearUpdate]);
+ }
+
+ /* Improve by fetching default from schema */
+ const update = { members: [], initiator: { id: null, cost: 3 } };
+ if (game.user.isGM) {
+ await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll, update);
+ Hooks.callAll(socketEvent.Refresh, { refreshType: RefreshType.TagTeamRoll });
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.Refresh,
+ data: {
+ refreshType: RefreshType.TagTeamRoll
+ }
+ });
+ } else {
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.GMUpdate,
+ data: {
+ action: GMUpdateEvent.UpdateSetting,
+ uuid: CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll,
+ update: update,
+ refresh: { refreshType: RefreshType.TagTeamRoll }
+ }
+ });
+ }
+ }
+
+ static async assignRoll(char, message) {
+ const settings = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll);
+ const character = settings.members[char.id];
+ if (!character) return;
+
+ await settings.updateSource({ [`members.${char.id}.messageId`]: message.id });
+
+ if (game.user.isGM) {
+ await game.settings.set(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll, settings);
+ Hooks.callAll(socketEvent.Refresh, { refreshType: RefreshType.TagTeamRoll });
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.Refresh,
+ data: {
+ refreshType: RefreshType.TagTeamRoll
+ }
+ });
+ } else {
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.GMUpdate,
+ data: {
+ action: GMUpdateEvent.UpdateSetting,
+ uuid: CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll,
+ update: settings,
+ refresh: { refreshType: RefreshType.TagTeamRoll }
+ }
+ });
+ }
+ }
+
+ async close(options = {}) {
+ Hooks.off(socketEvent.Refresh, this.setupHooks);
+ await super.close(options);
+ }
+}
diff --git a/module/applications/hud/tokenHUD.mjs b/module/applications/hud/tokenHUD.mjs
index 5c29260b..030eca59 100644
--- a/module/applications/hud/tokenHUD.mjs
+++ b/module/applications/hud/tokenHUD.mjs
@@ -1,6 +1,12 @@
+import { shuffleArray } from '../../helpers/utils.mjs';
+
export default class DHTokenHUD extends foundry.applications.hud.TokenHUD {
static DEFAULT_OPTIONS = {
- classes: ['daggerheart']
+ classes: ['daggerheart'],
+ actions: {
+ combat: DHTokenHUD.#onToggleCombat,
+ togglePartyTokens: DHTokenHUD.#togglePartyTokens
+ }
};
/** @override */
@@ -11,8 +17,20 @@ export default class DHTokenHUD extends foundry.applications.hud.TokenHUD {
}
};
+ static #nonCombatTypes = ['environment', 'companion'];
+
async _prepareContext(options) {
const context = await super._prepareContext(options);
+
+ context.partyOnCanvas =
+ this.actor.type === 'party' &&
+ this.actor.system.partyMembers.some(member => member.getActiveTokens().length > 0);
+ context.icons.toggleParty = 'systems/daggerheart/assets/icons/arrow-dunk.png';
+ context.actorType = this.actor.type;
+ context.usesEffects = this.actor.type !== 'party';
+ context.canToggleCombat = DHTokenHUD.#nonCombatTypes.includes(this.actor.type)
+ ? false
+ : context.canToggleCombat;
context.systemStatusEffects = Object.keys(context.statusEffects).reduce((acc, key) => {
const effect = context.statusEffects[key];
if (effect.systemEffect) acc[key] = effect;
@@ -36,6 +54,119 @@ export default class DHTokenHUD extends foundry.applications.hud.TokenHUD {
return context;
}
+ static async #onToggleCombat() {
+ const tokens = canvas.tokens.controlled
+ .filter(t => !t.actor || !DHTokenHUD.#nonCombatTypes.includes(t.actor.type))
+ .map(t => t.document);
+ if (!this.object.controlled) tokens.push(this.document);
+
+ try {
+ if (this.document.inCombat) await TokenDocument.implementation.deleteCombatants(tokens);
+ else await TokenDocument.implementation.createCombatants(tokens);
+ } catch (err) {
+ ui.notifications.warn(err.message);
+ }
+ }
+
+ static async #togglePartyTokens(_, button) {
+ const icon = button.querySelector('img');
+ icon.classList.toggle('flipped');
+ button.dataset.tooltip = game.i18n.localize(
+ icon.classList.contains('flipped')
+ ? 'DAGGERHEART.APPLICATIONS.HUD.tokenHUD.retrievePartyTokens'
+ : 'DAGGERHEART.APPLICATIONS.HUD.tokenHUD.depositPartyTokens'
+ );
+
+ const animationDuration = 500;
+ const activeTokens = this.actor.system.partyMembers.flatMap(member => member.getActiveTokens());
+ const { x: actorX, y: actorY } = this.document;
+ if (activeTokens.length > 0) {
+ for (let token of activeTokens) {
+ await token.document.update(
+ { x: actorX, y: actorY, alpha: 0 },
+ { animation: { duration: animationDuration } }
+ );
+ setTimeout(() => token.document.delete(), animationDuration);
+ }
+ } else {
+ const activeScene = game.scenes.find(x => x.active);
+ const partyTokenData = [];
+ for (let member of this.actor.system.partyMembers) {
+ const data = await member.getTokenDocument();
+ partyTokenData.push(data.toObject());
+ }
+ const newTokens = await activeScene.createEmbeddedDocuments(
+ 'Token',
+ partyTokenData.map(tokenData => ({
+ ...tokenData,
+ alpha: 0,
+ x: actorX,
+ y: actorY
+ }))
+ );
+
+ const { sizeX, sizeY } = activeScene.grid;
+ const nrRandomPositions = Math.ceil(newTokens.length / 8) * 8;
+ /* This is an overcomplicated mess, but I'm stupid */
+ const positions = shuffleArray(
+ [...Array(nrRandomPositions).keys()].map((_, index) => {
+ const nonZeroIndex = index + 1;
+ const indexFloor = Math.floor(index / 8);
+ const distanceCoefficient = indexFloor + 1;
+ const side = 3 + indexFloor * 2;
+ const sideMiddle = Math.ceil(side / 2);
+ const inbetween = 1 + indexFloor * 2;
+ const inbetweenMiddle = Math.ceil(inbetween / 2);
+
+ if (index < side) {
+ const distance =
+ nonZeroIndex === sideMiddle
+ ? 0
+ : nonZeroIndex < sideMiddle
+ ? -nonZeroIndex
+ : nonZeroIndex - sideMiddle;
+ return { x: actorX - sizeX * distance, y: actorY - sizeY * distanceCoefficient };
+ } else if (index < side + inbetween) {
+ const inbetweenIndex = nonZeroIndex - side;
+ const distance =
+ inbetweenIndex === inbetweenMiddle
+ ? 0
+ : inbetweenIndex < inbetweenMiddle
+ ? -inbetweenIndex
+ : inbetweenIndex - inbetweenMiddle;
+ return { x: actorX + sizeX * distanceCoefficient, y: actorY + sizeY * distance };
+ } else if (index < 2 * side + inbetween) {
+ const sideIndex = nonZeroIndex - side - inbetween;
+ const distance =
+ sideIndex === sideMiddle
+ ? 0
+ : sideIndex < sideMiddle
+ ? sideIndex
+ : -(sideIndex - sideMiddle);
+ return { x: actorX + sizeX * distance, y: actorY + sizeY * distanceCoefficient };
+ } else {
+ const inbetweenIndex = nonZeroIndex - 2 * side - inbetween;
+ const distance =
+ inbetweenIndex === inbetweenMiddle
+ ? 0
+ : inbetweenIndex < inbetweenMiddle
+ ? inbetweenIndex
+ : -(inbetweenIndex - inbetweenMiddle);
+ return { x: actorX - sizeX * distanceCoefficient, y: actorY + sizeY * distance };
+ }
+ })
+ );
+
+ for (let token of newTokens) {
+ const position = positions.pop();
+ token.update(
+ { x: position.x, y: position.y, alpha: 1 },
+ { animation: { duration: animationDuration } }
+ );
+ }
+ }
+ }
+
_getStatusEffectChoices() {
// Include all HUD-enabled status effects
const choices = {};
diff --git a/module/applications/levelup/_module.mjs b/module/applications/levelup/_module.mjs
index dd4135b4..24944feb 100644
--- a/module/applications/levelup/_module.mjs
+++ b/module/applications/levelup/_module.mjs
@@ -1,3 +1,4 @@
export { default as CharacterLevelup } from './characterLevelup.mjs';
export { default as CompanionLevelup } from './companionLevelup.mjs';
export { default as Levelup } from './levelup.mjs';
+export { default as LevelupViewMode } from './levelupViewMode.mjs';
diff --git a/module/applications/levelup/levelup.mjs b/module/applications/levelup/levelup.mjs
index 0b3f8970..c3cc6e81 100644
--- a/module/applications/levelup/levelup.mjs
+++ b/module/applications/levelup/levelup.mjs
@@ -1,6 +1,5 @@
import { abilities, subclassFeatureLabels } from '../../config/actorConfig.mjs';
import { getDeleteKeys, tagifyElement } from '../../helpers/utils.mjs';
-import { ItemBrowser } from '../ui/itemBrowser.mjs';
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
@@ -12,8 +11,6 @@ export default class DhlevelUp extends HandlebarsApplicationMixin(ApplicationV2)
this._dragDrop = this._createDragDropHandlers();
this.tabGroups.primary = 'advancements';
-
- this.itemBrowser = null;
}
get title() {
@@ -540,7 +537,6 @@ export default class DhlevelUp extends HandlebarsApplicationMixin(ApplicationV2)
const type = target.dataset.compendium ?? target.dataset.type;
const presets = {
- compendium: 'daggerheart',
folder: type,
render: {
noFolder: true
@@ -559,7 +555,7 @@ export default class DhlevelUp extends HandlebarsApplicationMixin(ApplicationV2)
};
}
- return (this.itemBrowser = await new ItemBrowser({ presets }).render({ force: true }));
+ ui.compendiumBrowser.open(presets);
}
static async selectPreview(_, button) {
@@ -662,7 +658,8 @@ export default class DhlevelUp extends HandlebarsApplicationMixin(ApplicationV2)
}, {});
await this.actor.levelUp(levelupData);
- if (this.itemBrowser) this.itemBrowser.close();
+
+ if (ui.compendiumBrowser) ui.compendiumBrowser.close();
this.close();
}
}
diff --git a/module/applications/levelup/levelupViewMode.mjs b/module/applications/levelup/levelupViewMode.mjs
new file mode 100644
index 00000000..b3d7c30f
--- /dev/null
+++ b/module/applications/levelup/levelupViewMode.mjs
@@ -0,0 +1,95 @@
+import { chunkify } from '../../helpers/utils.mjs';
+
+const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
+
+export default class DhlevelUpViewMode extends HandlebarsApplicationMixin(ApplicationV2) {
+ constructor(actor) {
+ super({});
+
+ this.actor = actor;
+ }
+
+ get title() {
+ return game.i18n.format('DAGGERHEART.APPLICATIONS.Levelup.viewModeTitle', { actor: this.actor.name });
+ }
+
+ static DEFAULT_OPTIONS = {
+ classes: ['daggerheart', 'dialog', 'dh-style', 'levelup'],
+ position: { width: 1000, height: 'auto' },
+ window: {
+ resizable: true,
+ icon: 'fa-solid fa-arrow-turn-up'
+ }
+ };
+
+ static PARTS = {
+ main: { template: 'systems/daggerheart/templates/levelup/tabs/viewMode.hbs' }
+ };
+
+ async _prepareContext(_options) {
+ const context = await super._prepareContext(_options);
+
+ const { tiers } = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers);
+ const tierKeys = Object.keys(tiers);
+ const selections = Object.keys(this.actor.system.levelData.levelups).reduce(
+ (acc, key) => {
+ const level = this.actor.system.levelData.levelups[key];
+ Object.keys(level.selections).forEach(optionKey => {
+ const choice = level.selections[optionKey];
+ if (!acc[choice.tier][choice.optionKey]) acc[choice.tier][choice.optionKey] = {};
+ acc[choice.tier][choice.optionKey][choice.checkboxNr] = choice;
+ });
+
+ return acc;
+ },
+ tierKeys.reduce((acc, key) => {
+ acc[key] = {};
+ return acc;
+ }, {})
+ );
+
+ context.tiers = tierKeys.map((tierKey, tierIndex) => {
+ const tier = tiers[tierKey];
+
+ return {
+ name: tier.name,
+ active: true,
+ groups: Object.keys(tier.options).map(optionKey => {
+ const option = tier.options[optionKey];
+
+ const checkboxes = [...Array(option.checkboxSelections).keys()].flatMap(index => {
+ const checkboxNr = index + 1;
+ const checkboxData = selections[tierKey]?.[optionKey]?.[checkboxNr];
+ const checkbox = { ...option, checkboxNr, tier: tierKey, disabled: true };
+
+ if (checkboxData) {
+ checkbox.level = checkboxData.level;
+ checkbox.selected = true;
+ }
+
+ return checkbox;
+ });
+
+ let label = game.i18n.localize(option.label);
+ return {
+ label: label,
+ checkboxGroups: chunkify(checkboxes, option.minCost, chunkedBoxes => {
+ const anySelected = chunkedBoxes.some(x => x.selected);
+ const anyDisabled = chunkedBoxes.some(x => x.disabled);
+ return {
+ multi: option.minCost > 1,
+ checkboxes: chunkedBoxes.map(x => ({
+ ...x,
+ selected: anySelected,
+ disabled: anyDisabled
+ }))
+ };
+ })
+ };
+ })
+ };
+ });
+
+ return context;
+ }
+}
diff --git a/module/applications/scene/_module.mjs b/module/applications/scene/_module.mjs
new file mode 100644
index 00000000..7cefd268
--- /dev/null
+++ b/module/applications/scene/_module.mjs
@@ -0,0 +1 @@
+export { default as DhSceneConfigSettings } from './sceneConfigSettings.mjs';
diff --git a/module/applications/scene/sceneConfigSettings.mjs b/module/applications/scene/sceneConfigSettings.mjs
new file mode 100644
index 00000000..be8f7b71
--- /dev/null
+++ b/module/applications/scene/sceneConfigSettings.mjs
@@ -0,0 +1,63 @@
+export default class DhSceneConfigSettings extends foundry.applications.sheets.SceneConfig {
+ // static DEFAULT_OPTIONS = {
+ // ...super.DEFAULT_OPTIONS,
+ // form: {
+ // handler: this.updateData,
+ // closeOnSubmit: true
+ // }
+ // };
+
+ static buildParts() {
+ const { footer, tabs, ...parts } = super.PARTS;
+ const tmpParts = {
+ // tabs,
+ tabs: { template: 'systems/daggerheart/templates/scene/tabs.hbs' },
+ ...parts,
+ dh: { template: 'systems/daggerheart/templates/scene/dh-config.hbs' },
+ footer
+ };
+ return tmpParts;
+ }
+
+ static PARTS = DhSceneConfigSettings.buildParts();
+
+ static buildTabs() {
+ super.TABS.sheet.tabs.push({ id: 'dh', src: 'systems/daggerheart/assets/logos/FoundryBorneLogoWhite.svg' });
+ return super.TABS;
+ }
+
+ static TABS = DhSceneConfigSettings.buildTabs();
+
+ _attachPartListeners(partId, htmlElement, options) {
+ super._attachPartListeners(partId, htmlElement, options);
+ switch (partId) {
+ case 'dh':
+ htmlElement.querySelector('#rangeMeasurementSetting')?.addEventListener('change', async event => {
+ const flagData = foundry.utils.mergeObject(this.document.flags.daggerheart, {
+ rangeMeasurement: { setting: event.target.value }
+ });
+ this.document.flags.daggerheart = flagData;
+ this.render();
+ });
+ break;
+ }
+ }
+
+ /** @inheritDoc */
+ async _preparePartContext(partId, context, options) {
+ context = await super._preparePartContext(partId, context, options);
+ switch (partId) {
+ case 'dh':
+ context.data = new game.system.api.data.scenes.DHScene(canvas.scene.flags.daggerheart);
+ context.variantRules = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.variantRules);
+ break;
+ }
+
+ return context;
+ }
+
+ // static async updateData(event, _, formData) {
+ // const data = foundry.utils.expandObject(formData.object);
+ // this.close(data);
+ // }
+}
diff --git a/module/applications/settings/appearanceSettings.mjs b/module/applications/settings/appearanceSettings.mjs
index f0310477..5950f961 100644
--- a/module/applications/settings/appearanceSettings.mjs
+++ b/module/applications/settings/appearanceSettings.mjs
@@ -3,43 +3,48 @@ import { getDiceSoNicePreset } from '../../config/generalConfig.mjs';
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
+/**
+ * @import {ApplicationClickAction} from "@client/applications/_types.mjs"
+ */
+
export default class DHAppearanceSettings extends HandlebarsApplicationMixin(ApplicationV2) {
- constructor() {
- super({});
-
- this.settings = new DhAppearance(
- game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.appearance).toObject()
- );
- }
-
- get title() {
- return game.i18n.localize('DAGGERHEART.SETTINGS.Menu.title');
- }
-
+ /**@inheritdoc */
static DEFAULT_OPTIONS = {
tag: 'form',
id: 'daggerheart-appearance-settings',
classes: ['daggerheart', 'dialog', 'dh-style', 'setting'],
position: { width: '600', height: 'auto' },
window: {
+ title: 'DAGGERHEART.SETTINGS.Menu.title',
icon: 'fa-solid fa-gears'
},
actions: {
- reset: this.reset,
- save: this.save,
- preview: this.preview
+ reset: DHAppearanceSettings.#onReset,
+ preview: DHAppearanceSettings.#onPreview
},
- form: { handler: this.updateData, submitOnChange: true }
+ form: {
+ closeOnSubmit: true,
+ handler: DHAppearanceSettings.#onSubmit
+ }
};
static PARTS = {
- main: {
- template: 'systems/daggerheart/templates/settings/appearance-settings.hbs'
- }
+ header: { template: 'systems/daggerheart/templates/settings/appearance-settings/header.hbs' },
+ tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' },
+ main: { template: 'systems/daggerheart/templates/settings/appearance-settings/main.hbs' },
+ diceSoNice: { template: 'systems/daggerheart/templates/settings/appearance-settings/diceSoNice.hbs' },
+ footer: { template: 'templates/generic/form-footer.hbs' }
};
/** @inheritdoc */
static TABS = {
+ general: {
+ tabs: [
+ { id: 'main', label: 'DAGGERHEART.GENERAL.Tabs.general' },
+ { id: 'diceSoNice', label: 'DAGGERHEART.SETTINGS.Menu.appearance.diceSoNice.title' }
+ ],
+ initial: 'main'
+ },
diceSoNice: {
tabs: [
{ id: 'hope', label: 'DAGGERHEART.GENERAL.hope' },
@@ -51,79 +56,149 @@ export default class DHAppearanceSettings extends HandlebarsApplicationMixin(App
}
};
- changeTab(tab, group, options) {
- super.changeTab(tab, group, options);
+ /**@type {DhAppearance}*/
+ setting;
- this.render();
+ static #localized = false;
+
+ /** @inheritDoc */
+ async _preFirstRender(_context, _options) {
+ await super._preFirstRender(_context, _options);
+ if (!DHAppearanceSettings.#localized) {
+ foundry.helpers.Localization.localizeDataModel(this.setting.constructor);
+ DHAppearanceSettings.#localized = true;
+ }
}
- async _prepareContext(_options) {
- const context = await super._prepareContext(_options);
- context.settingFields = this.settings;
-
- context.showDiceSoNice = game.modules.get('dice-so-nice')?.active;
- if (game.dice3d) {
- context.diceSoNiceTextures = game.dice3d.exports.TEXTURELIST;
- context.diceSoNiceColorsets = game.dice3d.exports.COLORSETS;
- context.diceSoNiceMaterials = Object.keys(game.dice3d.DiceFactory.material_options).map(key => ({
- key: key,
- name: `DICESONICE.Material${key.capitalize()}`
- }));
- context.diceSoNiceSystems = [];
- for (const [key, system] of game.dice3d.DiceFactory.systems.entries()) {
- context.diceSoNiceSystems.push({ key, name: system.name });
- }
+ /** @inheritdoc */
+ _configureRenderParts(options) {
+ const parts = super._configureRenderParts(options);
+ if (!game.modules.get('dice-so-nice')?.active) {
+ delete parts.diceSoNice;
+ delete parts.tabs;
}
+ return parts;
+ }
- context.diceTab = {
- key: this.tabGroups.diceSoNice,
- source: this.settings._source.diceSoNice[this.tabGroups.diceSoNice],
- fields: this.settings.schema.fields.diceSoNice.fields[this.tabGroups.diceSoNice].fields
- };
+ /**@inheritdoc */
+ async _prepareContext(options) {
+ const context = await super._prepareContext(options);
+ if (options.isFirstRender)
+ this.setting = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.appearance);
+
+ context.setting = this.setting;
+ context.fields = this.setting.schema.fields;
+
+ context.tabs = this._prepareTabs('general');
+ context.dsnTabs = this._prepareTabs('diceSoNice');
return context;
}
- static async updateData(event, element, formData) {
- const updatedSettings = foundry.utils.expandObject(formData.object);
-
- await this.settings.updateSource(updatedSettings);
- this.render();
+ /**@inheritdoc */
+ async _preparePartContext(partId, context, options) {
+ const partContext = await super._preparePartContext(partId, context, options);
+ if (partId in context.tabs) partContext.tab = partContext.tabs[partId];
+ switch (partId) {
+ case 'diceSoNice':
+ await this.prepareDiceSoNiceContext(partContext);
+ break;
+ case 'footer':
+ partContext.buttons = [
+ { type: 'button', action: 'reset', icon: 'fa-solid fa-arrow-rotate-left', label: 'Reset' },
+ { type: 'submit', icon: 'fa-solid fa-floppy-disk', label: 'Save Changes' }
+ ];
+ break;
+ }
+ return partContext;
}
- static async preview() {
- const source = this.settings._source.diceSoNice[this.tabGroups.diceSoNice];
- let faces = 'd12';
- switch (this.tabGroups.diceSoNice) {
- case 'advantage':
- case 'disadvantage':
- faces = 'd6';
- }
- const preset = await getDiceSoNicePreset(source, faces);
- const diceSoNiceRoll = await new Roll(`1${faces}`).evaluate();
+ /**
+ * Prepare render context for the DSN part.
+ * @param {ApplicationRenderContext} context
+ * @returns {Promise ${q}
')}`;
+ };
+ const backgroundQuestions = data.system.backgroundQuestions.filter(x => x);
+ const connections = data.system.connections.filter(x => x);
+ await this.actor.update({
+ 'system.biography': {
+ background: addQuestions(this.actor.system.biography.background, backgroundQuestions),
+ connections: addQuestions(this.actor.system.biography.connections, connections)
+ }
+ });
+ }
}
const allowed = await super._preCreate(data, options, user);
diff --git a/module/data/item/consumable.mjs b/module/data/item/consumable.mjs
index dad6a95c..5a50525a 100644
--- a/module/data/item/consumable.mjs
+++ b/module/data/item/consumable.mjs
@@ -1,5 +1,4 @@
import BaseDataItem from './base.mjs';
-import { ActionField } from '../fields/actionField.mjs';
export default class DHConsumable extends BaseDataItem {
/** @inheritDoc */
@@ -19,7 +18,8 @@ export default class DHConsumable extends BaseDataItem {
const fields = foundry.data.fields;
return {
...super.defineSchema(),
- consumeOnUse: new fields.BooleanField({ initial: false })
+ consumeOnUse: new fields.BooleanField({ initial: true }),
+ destroyOnEmpty: new fields.BooleanField({ initial: true })
};
}
@@ -27,5 +27,4 @@ export default class DHConsumable extends BaseDataItem {
/**@override */
static DEFAULT_ICON = 'systems/daggerheart/assets/icons/documents/items/round-potion.svg';
-
}
diff --git a/module/data/item/weapon.mjs b/module/data/item/weapon.mjs
index 66025cc5..b2d937b5 100644
--- a/module/data/item/weapon.mjs
+++ b/module/data/item/weapon.mjs
@@ -39,7 +39,7 @@ export default class DHWeapon extends AttachableItem {
new fields.SchemaField({
value: new fields.StringField({
required: true,
- choices: CONFIG.DH.ITEM.weaponFeatures,
+ choices: CONFIG.DH.ITEM.allWeaponFeatures,
blank: true
}),
effectIds: new fields.ArrayField(new fields.StringField({ required: true })),
@@ -116,13 +116,14 @@ export default class DHWeapon extends AttachableItem {
const allowed = await super._preUpdate(changes, options, user);
if (allowed === false) return false;
+ const changedWeaponFeatures = changes.system?.weaponFeatures ?? [];
+ const removedFeatures = this.weaponFeatures.filter(x => changedWeaponFeatures.every(y => y.value !== x.value));
if (changes.system?.weaponFeatures) {
- const removed = this.weaponFeatures.filter(x => !changes.system.weaponFeatures.includes(x));
- const added = changes.system.weaponFeatures.filter(x => !this.weaponFeatures.includes(x));
+ const added = changedWeaponFeatures.filter(x => this.weaponFeatures.every(y => y.value !== x.value));
const removedEffectsUpdate = [];
const removedActionsUpdate = [];
- for (let weaponFeature of removed) {
+ for (let weaponFeature of removedFeatures) {
removedEffectsUpdate.push(...weaponFeature.effectIds);
removedActionsUpdate.push(...weaponFeature.actionIds);
}
@@ -133,8 +134,9 @@ export default class DHWeapon extends AttachableItem {
return acc;
}, {});
+ const allFeatures = CONFIG.DH.ITEM.allWeaponFeatures();
for (let weaponFeature of added) {
- const featureData = CONFIG.DH.ITEM.weaponFeatures[weaponFeature.value];
+ const featureData = allFeatures[weaponFeature.value];
if (featureData.effects?.length > 0) {
const embeddedItems = await this.parent.createEmbeddedDocuments(
'ActiveEffect',
@@ -148,7 +150,7 @@ export default class DHWeapon extends AttachableItem {
}
const newActions = {};
- if (featureData.actions?.length > 0) {
+ if (featureData.actions?.length > 0 || featureData.actions?.size > 0) {
for (let action of featureData.actions) {
const embeddedEffects = await this.parent.createEmbeddedDocuments(
'ActiveEffect',
@@ -170,10 +172,12 @@ export default class DHWeapon extends AttachableItem {
{
...cls.getSourceConfig(this),
...action,
+ type: action.type,
_id: actionId,
name: game.i18n.localize(action.name),
description: game.i18n.localize(action.description),
- effects: embeddedEffects.map(x => ({ _id: x.id }))
+ effects: embeddedEffects.map(x => ({ _id: x.id })),
+ systemPath: 'actions'
},
{ parent: this }
);
@@ -199,8 +203,8 @@ export default class DHWeapon extends AttachableItem {
];
for (const { value, type } of attack.damage.parts) {
- const parts = [value.dice];
- if (value.bonus) parts.push(value.bonus.signedString());
+ const parts = value.custom.enabled ? [game.i18n.localize('DAGGERHEART.GENERAL.custom')] : [value.dice];
+ if (!value.custom.enabled && value.bonus) parts.push(value.bonus.signedString());
if (type.size > 0) {
const typeTags = Array.from(type)
diff --git a/module/data/levelTier.mjs b/module/data/levelTier.mjs
index e42cfc54..2252e4da 100644
--- a/module/data/levelTier.mjs
+++ b/module/data/levelTier.mjs
@@ -169,7 +169,7 @@ export const defaultLevelTiers = {
tiers: {
2: {
tier: 2,
- name: 'Tier 2',
+ name: 'DAGGERHEART.APPLICATIONS.Levelup.tier2.name',
levels: {
start: 2,
end: 4
@@ -232,7 +232,7 @@ export const defaultLevelTiers = {
},
3: {
tier: 3,
- name: 'Tier 3',
+ name: 'DAGGERHEART.APPLICATIONS.Levelup.tier3.name',
levels: {
start: 5,
end: 7
@@ -313,7 +313,7 @@ export const defaultLevelTiers = {
},
4: {
tier: 4,
- name: 'Tier 4',
+ name: 'DAGGERHEART.APPLICATIONS.Levelup.tier4.name',
levels: {
start: 8,
end: 10
diff --git a/module/data/levelup.mjs b/module/data/levelup.mjs
index 665b3264..4dc1c058 100644
--- a/module/data/levelup.mjs
+++ b/module/data/levelup.mjs
@@ -234,7 +234,7 @@ export class DhLevelup extends foundry.abstract.DataModel {
const subclassInTier = subclasses.some(x => x.tier === Number(tierKey));
return {
- name: tier.name,
+ name: game.i18n.localize(tier.name),
active: this.currentLevel >= Math.min(...tier.belongingLevels),
groups: Object.keys(tier.options).map(optionKey => {
const option = tier.options[optionKey];
diff --git a/module/data/scene/_module.mjs b/module/data/scene/_module.mjs
new file mode 100644
index 00000000..9994901b
--- /dev/null
+++ b/module/data/scene/_module.mjs
@@ -0,0 +1 @@
+export { default as DHScene } from './scene.mjs';
diff --git a/module/data/scene/scene.mjs b/module/data/scene/scene.mjs
new file mode 100644
index 00000000..7cf74ade
--- /dev/null
+++ b/module/data/scene/scene.mjs
@@ -0,0 +1,19 @@
+export default class DHScene extends foundry.abstract.DataModel {
+ static defineSchema() {
+ const fields = foundry.data.fields;
+
+ return {
+ rangeMeasurement: new fields.SchemaField({
+ setting: new fields.StringField({
+ choices: CONFIG.DH.GENERAL.sceneRangeMeasurementSetting,
+ initial: CONFIG.DH.GENERAL.sceneRangeMeasurementSetting.default.id,
+ label: 'DAGGERHEART.SETTINGS.Scene.FIELDS.rangeMeasurement.setting.label'
+ }),
+ melee: new fields.NumberField({ integer: true, label: 'DAGGERHEART.CONFIG.Range.melee.name' }),
+ veryClose: new fields.NumberField({ integer: true, label: 'DAGGERHEART.CONFIG.Range.veryClose.name' }),
+ close: new fields.NumberField({ integer: true, label: 'DAGGERHEART.CONFIG.Range.close.name' }),
+ far: new fields.NumberField({ integer: true, label: 'DAGGERHEART.CONFIG.Range.far.name' })
+ })
+ };
+ }
+}
diff --git a/module/data/settings/Appearance.mjs b/module/data/settings/Appearance.mjs
index ac980346..47909b2c 100644
--- a/module/data/settings/Appearance.mjs
+++ b/module/data/settings/Appearance.mjs
@@ -1,77 +1,47 @@
-import { fearDisplay } from '../../config/generalConfig.mjs';
-
export default class DhAppearance extends foundry.abstract.DataModel {
+ static LOCALIZATION_PREFIXES = ['DAGGERHEART.SETTINGS.Appearance'];
+
static defineSchema() {
- const fields = foundry.data.fields;
+ const { StringField, ColorField, BooleanField, SchemaField } = foundry.data.fields;
+
+ // helper to create dice style schema
+ const diceStyle = ({ fg, bg, outline, edge }) =>
+ new SchemaField({
+ foreground: new ColorField({ required: true, initial: fg }),
+ background: new ColorField({ required: true, initial: bg }),
+ outline: new ColorField({ required: true, initial: outline }),
+ edge: new ColorField({ required: true, initial: edge }),
+ texture: new StringField({ initial: 'astralsea', required: true, blank: false }),
+ colorset: new StringField({ initial: 'inspired', required: true, blank: false }),
+ material: new StringField({ initial: 'metal', required: true, blank: false }),
+ system: new StringField({ initial: 'standard', required: true, blank: false })
+ });
+
return {
- displayFear: new fields.StringField({
+ useResourcePips: new BooleanField({ initial: false }),
+ displayFear: new StringField({
required: true,
- choices: fearDisplay,
- initial: fearDisplay.token.value,
- label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.displayFear.label'
+ choices: CONFIG.DH.GENERAL.fearDisplay,
+ initial: CONFIG.DH.GENERAL.fearDisplay.token.value
}),
- diceSoNice: new fields.SchemaField({
- hope: new fields.SchemaField({
- foreground: new fields.ColorField({ required: true, initial: '#ffffff' }),
- background: new fields.ColorField({ required: true, initial: '#ffe760' }),
- outline: new fields.ColorField({ required: true, initial: '#000000' }),
- edge: new fields.ColorField({ required: true, initial: '#ffffff' }),
- texture: new fields.StringField({ initial: 'astralsea' }),
- colorset: new fields.StringField({ initial: 'inspired' }),
- material: new fields.StringField({ initial: 'metal' }),
- system: new fields.StringField({ initial: 'standard' })
- }),
- fear: new fields.SchemaField({
- foreground: new fields.ColorField({ required: true, initial: '#000000' }),
- background: new fields.ColorField({ required: true, initial: '#0032b1' }),
- outline: new fields.ColorField({ required: true, initial: '#ffffff' }),
- edge: new fields.ColorField({ required: true, initial: '#000000' }),
- texture: new fields.StringField({ initial: 'astralsea' }),
- colorset: new fields.StringField({ initial: 'inspired' }),
- material: new fields.StringField({ initial: 'metal' }),
- system: new fields.StringField({ initial: 'standard' })
- }),
- advantage: new fields.SchemaField({
- foreground: new fields.ColorField({ required: true, initial: '#ffffff' }),
- background: new fields.ColorField({ required: true, initial: '#008000' }),
- outline: new fields.ColorField({ required: true, initial: '#000000' }),
- edge: new fields.ColorField({ required: true, initial: '#ffffff' }),
- texture: new fields.StringField({ initial: 'astralsea' }),
- colorset: new fields.StringField({ initial: 'inspired' }),
- material: new fields.StringField({ initial: 'metal' }),
- system: new fields.StringField({ initial: 'standard' })
- }),
- disadvantage: new fields.SchemaField({
- foreground: new fields.ColorField({ required: true, initial: '#000000' }),
- background: new fields.ColorField({ required: true, initial: '#b30000' }),
- outline: new fields.ColorField({ required: true, initial: '#ffffff' }),
- edge: new fields.ColorField({ required: true, initial: '#000000' }),
- texture: new fields.StringField({ initial: 'astralsea' }),
- colorset: new fields.StringField({ initial: 'inspired' }),
- material: new fields.StringField({ initial: 'metal' }),
- system: new fields.StringField({ initial: 'standard' })
- })
+ diceSoNice: new SchemaField({
+ hope: diceStyle({ fg: '#ffffff', bg: '#ffe760', outline: '#000000', edge: '#ffffff' }),
+ fear: diceStyle({ fg: '#000000', bg: '#0032b1', outline: '#ffffff', edge: '#000000' }),
+ advantage: diceStyle({ fg: '#ffffff', bg: '#008000', outline: '#000000', edge: '#ffffff' }),
+ disadvantage: diceStyle({ fg: '#000000', bg: '#b30000', outline: '#ffffff', edge: '#000000' })
}),
- showGenericStatusEffects: new fields.BooleanField({
- initial: true,
- label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.showGenericStatusEffects.label'
+ extendCharacterDescriptions: new BooleanField(),
+ extendAdversaryDescriptions: new BooleanField(),
+ extendEnvironmentDescriptions: new BooleanField(),
+ extendItemDescriptions: new BooleanField(),
+ expandRollMessage: new SchemaField({
+ desc: new BooleanField(),
+ roll: new BooleanField(),
+ damage: new BooleanField(),
+ target: new BooleanField()
}),
- extendCharacterDescriptions: new fields.BooleanField({
- initial: false,
- label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.extendCharacterDescriptions.label'
- }),
- extendAdversaryDescriptions: new fields.BooleanField({
- initial: false,
- label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.extendAdversaryDescriptions.label'
- }),
- extendEnvironmentDescriptions: new fields.BooleanField({
- initial: false,
- label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.extendEnvironmentDescriptions.label'
- }),
- extendItemDescriptions: new fields.BooleanField({
- initial: false,
- label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.extendItemDescriptions.label'
- })
+ hideAttribution: new BooleanField(),
+ showGenericStatusEffects: new BooleanField({ initial: true })
};
}
}
diff --git a/module/data/settings/Automation.mjs b/module/data/settings/Automation.mjs
index e1d63669..fbded2de 100644
--- a/module/data/settings/Automation.mjs
+++ b/module/data/settings/Automation.mjs
@@ -2,6 +2,10 @@ export default class DhAutomation extends foundry.abstract.DataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
+ summaryMessages: new fields.SchemaField({
+ damage: new fields.BooleanField({ initial: true, label: 'DAGGERHEART.GENERAL.damage' }),
+ effects: new fields.BooleanField({ initial: true, label: 'DAGGERHEART.GENERAL.Effect.plural' })
+ }),
hopeFear: new fields.SchemaField({
gm: new fields.BooleanField({
required: true,
@@ -64,21 +68,105 @@ export default class DhAutomation extends foundry.abstract.DataModel {
}),
characterDefault: new fields.StringField({
required: true,
- choices: CONFIG.DH.GENERAL.defeatedConditions,
- initial: CONFIG.DH.GENERAL.defeatedConditions.unconscious.id,
+ choices: CONFIG.DH.GENERAL.defeatedConditionChoices,
+ initial: CONFIG.DH.GENERAL.defeatedConditionChoices.unconscious.id,
label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.defeated.characterDefault.label'
}),
adversaryDefault: new fields.StringField({
required: true,
- choices: CONFIG.DH.GENERAL.defeatedConditions,
- initial: CONFIG.DH.GENERAL.defeatedConditions.defeated.id,
+ choices: CONFIG.DH.GENERAL.defeatedConditionChoices,
+ initial: CONFIG.DH.GENERAL.defeatedConditionChoices.dead.id,
label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.defeated.adversaryDefault.label'
}),
companionDefault: new fields.StringField({
required: true,
- choices: CONFIG.DH.GENERAL.defeatedConditions,
- initial: CONFIG.DH.GENERAL.defeatedConditions.defeated.id,
+ choices: CONFIG.DH.GENERAL.defeatedConditionChoices,
+ initial: CONFIG.DH.GENERAL.defeatedConditionChoices.defeated.id,
label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.defeated.companionDefault.label'
+ }),
+ deadIcon: new fields.FilePathField({
+ initial: 'icons/magic/death/grave-tombstone-glow-teal.webp',
+ categories: ['IMAGE'],
+ base64: false,
+ label: 'Dead'
+ }),
+ defeatedIcon: new fields.FilePathField({
+ initial: 'icons/magic/control/fear-fright-mask-orange.webp',
+ categories: ['IMAGE'],
+ base64: false,
+ label: 'Defeated'
+ }),
+ unconsciousIcon: new fields.FilePathField({
+ initial: 'icons/magic/control/sleep-bubble-purple.webp',
+ categories: ['IMAGE'],
+ base64: false,
+ label: 'Unconcious'
+ })
+ }),
+ roll: new fields.SchemaField({
+ roll: new fields.SchemaField({
+ gm: new fields.BooleanField({
+ required: true,
+ initial: false,
+ label: 'DAGGERHEART.GENERAL.gm'
+ }),
+ players: new fields.BooleanField({
+ required: true,
+ initial: false,
+ label: 'DAGGERHEART.GENERAL.player.plurial'
+ })
+ }),
+ damage: new fields.SchemaField({
+ gm: new fields.StringField({
+ required: true,
+ initial: 'never',
+ choices: CONFIG.DH.SETTINGS.actionAutomationChoices,
+ label: 'DAGGERHEART.GENERAL.gm'
+ }),
+ players: new fields.StringField({
+ required: true,
+ initial: 'never',
+ choices: CONFIG.DH.SETTINGS.actionAutomationChoices,
+ label: 'DAGGERHEART.GENERAL.player.plurial'
+ })
+ }),
+ save: new fields.SchemaField({
+ gm: new fields.StringField({
+ required: true,
+ initial: 'never',
+ choices: CONFIG.DH.SETTINGS.actionAutomationChoices,
+ label: 'DAGGERHEART.GENERAL.gm'
+ }),
+ players: new fields.StringField({
+ required: true,
+ initial: 'never',
+ choices: CONFIG.DH.SETTINGS.actionAutomationChoices,
+ label: 'DAGGERHEART.GENERAL.player.plurial'
+ })
+ }),
+ damageApply: new fields.SchemaField({
+ gm: new fields.BooleanField({
+ required: true,
+ initial: false,
+ label: 'DAGGERHEART.GENERAL.gm'
+ }),
+ players: new fields.BooleanField({
+ required: true,
+ initial: false,
+ label: 'DAGGERHEART.GENERAL.player.plurial'
+ })
+ }),
+ effect: new fields.SchemaField({
+ gm: new fields.BooleanField({
+ required: true,
+ initial: false,
+ label: 'DAGGERHEART.GENERAL.gm'
+ }),
+ players: new fields.BooleanField({
+ required: true,
+ initial: false,
+ label: 'DAGGERHEART.GENERAL.player.plurial'
+ })
})
})
};
diff --git a/module/data/settings/Homebrew.mjs b/module/data/settings/Homebrew.mjs
index e18fee39..ca44a3ed 100644
--- a/module/data/settings/Homebrew.mjs
+++ b/module/data/settings/Homebrew.mjs
@@ -108,7 +108,42 @@ export default class DhHomebrew extends foundry.abstract.DataModel {
}),
description: new fields.HTMLField()
})
- )
+ ),
+ adversaryTypes: new fields.TypedObjectField(
+ new fields.SchemaField({
+ id: new fields.StringField({ required: true }),
+ label: new fields.StringField({ required: true, label: 'DAGGERHEART.GENERAL.label' }),
+ description: new fields.StringField()
+ })
+ ),
+ itemFeatures: new fields.SchemaField({
+ weaponFeatures: new fields.TypedObjectField(
+ new fields.SchemaField({
+ name: new fields.StringField({ required: true }),
+ img: new fields.FilePathField({
+ initial: 'icons/magic/life/cross-worn-green.webp',
+ categories: ['IMAGE'],
+ base64: false
+ }),
+ description: new fields.HTMLField(),
+ actions: new ActionsField(),
+ effects: new fields.ArrayField(new fields.ObjectField())
+ })
+ ),
+ armorFeatures: new fields.TypedObjectField(
+ new fields.SchemaField({
+ name: new fields.StringField({ required: true }),
+ img: new fields.FilePathField({
+ initial: 'icons/magic/life/cross-worn-green.webp',
+ categories: ['IMAGE'],
+ base64: false
+ }),
+ description: new fields.HTMLField(),
+ actions: new ActionsField(),
+ effects: new fields.ArrayField(new fields.ObjectField())
+ })
+ )
+ })
};
}
}
diff --git a/module/data/tagTeamRoll.mjs b/module/data/tagTeamRoll.mjs
new file mode 100644
index 00000000..de71a11b
--- /dev/null
+++ b/module/data/tagTeamRoll.mjs
@@ -0,0 +1,20 @@
+import { DhCharacter } from './actor/_module.mjs';
+
+export default class DhTagTeamRoll extends foundry.abstract.DataModel {
+ static defineSchema() {
+ const fields = foundry.data.fields;
+
+ return {
+ initiator: new fields.SchemaField({
+ id: new fields.StringField({ nullable: true, initial: null }),
+ cost: new fields.NumberField({ integer: true, min: 0, initial: 3 })
+ }),
+ members: new fields.TypedObjectField(
+ new fields.SchemaField({
+ messageId: new fields.StringField({ required: true, nullable: true, initial: null }),
+ selected: new fields.BooleanField({ required: true, initial: false })
+ })
+ )
+ };
+ }
+}
diff --git a/module/dice/d20Roll.mjs b/module/dice/d20Roll.mjs
index 63d84744..f0660106 100644
--- a/module/dice/d20Roll.mjs
+++ b/module/dice/d20Roll.mjs
@@ -128,7 +128,9 @@ export default class D20Roll extends DHRoll {
applyBaseBonus() {
const modifiers = foundry.utils.deepClone(this.options.roll.baseModifiers) ?? [];
- modifiers.push(...this.getBonus(`roll.${this.options.type}`, `${this.options.type?.capitalize()} Bonus`));
+ modifiers.push(
+ ...this.getBonus(`roll.${this.options.actionType}`, `${this.options.actionType?.capitalize()} Bonus`)
+ );
modifiers.push(
...this.getBonus(`roll.${this.options.roll.type}`, `${this.options.roll.type?.capitalize()} Bonus`)
);
@@ -138,7 +140,7 @@ export default class D20Roll extends DHRoll {
static postEvaluate(roll, config = {}) {
const data = super.postEvaluate(roll, config);
- data.type = config.roll?.type;
+ data.type = config.actionType;
data.difficulty = config.roll.difficulty;
if (config.targets?.length) {
config.targets.forEach(target => {
@@ -147,6 +149,7 @@ export default class D20Roll extends DHRoll {
});
data.success = config.targets.some(target => target.hit);
} else if (config.roll.difficulty) data.success = roll.isCritical || roll.total >= config.roll.difficulty;
+ config.successConsumed = data.success;
data.advantage = {
type: config.roll.advantage,
diff --git a/module/dice/damageRoll.mjs b/module/dice/damageRoll.mjs
index aa9e1d94..c10ee6ff 100644
--- a/module/dice/damageRoll.mjs
+++ b/module/dice/damageRoll.mjs
@@ -1,4 +1,5 @@
import DamageDialog from '../applications/dialogs/damageDialog.mjs';
+import { RefreshType, socketEvent } from '../systemRegistration/socket.mjs';
import DHRoll from './dhRoll.mjs';
export default class DamageRoll extends DHRoll {
@@ -9,6 +10,7 @@ export default class DamageRoll extends DHRoll {
static DefaultDialog = DamageDialog;
static async buildEvaluate(roll, config = {}, message = {}) {
+ if (config.dialog.configure === false) roll.constructFormula(config);
if (config.evaluate !== false) for (const roll of config.roll) await roll.roll.evaluate();
roll._evaluated = true;
@@ -46,9 +48,7 @@ export default class DamageRoll extends DHRoll {
);
}
await super.buildPost(roll, config, message);
- if (config.source?.message) {
- chatMessage.update({ 'system.damage': config.damage });
- }
+ if (config.source?.message) chatMessage.update({ 'system.damage': config.damage });
}
static unifyDamageRoll(rolls) {
@@ -339,5 +339,13 @@ export default class DamageRoll extends DHRoll {
parts: damageParts
}
});
+
+ Hooks.callAll(socketEvent.Refresh, { refreshType: RefreshType.TagTeamRoll });
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.Refresh,
+ data: {
+ refreshType: RefreshType.TagTeamRoll
+ }
+ });
}
}
diff --git a/module/dice/dhRoll.mjs b/module/dice/dhRoll.mjs
index 6d691c20..c9bda197 100644
--- a/module/dice/dhRoll.mjs
+++ b/module/dice/dhRoll.mjs
@@ -28,6 +28,11 @@ export default class DHRoll extends Roll {
static async buildConfigure(config = {}, message = {}) {
config.hooks = [...this.getHooks(), ''];
config.dialog ??= {};
+
+ const actorIdSplit = config.source.actor.split('.');
+ const tagTeamSettings = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll);
+ config.tagTeamSelected = tagTeamSettings.members[actorIdSplit[actorIdSplit.length - 1]];
+
for (const hook of config.hooks) {
if (Hooks.call(`${CONFIG.DH.id}.preRoll${hook.capitalize()}`, config, message) === false) return null;
}
@@ -65,8 +70,13 @@ export default class DHRoll extends Roll {
if (Hooks.call(`${CONFIG.DH.id}.postRoll${hook.capitalize()}`, config, message) === false) return null;
}
- // Create Chat Message
- if (!config.source?.message) config.message = await this.toMessage(roll, config);
+ if (config.skips?.createMessage) {
+ if (game.modules.get('dice-so-nice')?.active) {
+ await game.dice3d.showForRoll(roll, game.user, true);
+ }
+ } else if (!config.source?.message) {
+ config.message = await this.toMessage(roll, config);
+ }
}
static postEvaluate(roll, config = {}) {
@@ -84,18 +94,31 @@ export default class DHRoll extends Roll {
static async toMessage(roll, config) {
const cls = getDocumentClass('ChatMessage'),
- msg = {
+ msgData = {
type: this.messageType,
user: game.user.id,
title: roll.title,
- speaker: cls.getSpeaker(),
+ speaker: cls.getSpeaker({ actor: roll.data?.parent }),
sound: config.mute ? null : CONFIG.sounds.dice,
system: config,
rolls: [roll]
};
+
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 (config.tagTeamSelected) {
+ game.system.api.applications.dialogs.TagTeamDialog.assignRoll(message.speakerActor, message);
+ }
+
+ if (game.modules.get('dice-so-nice')?.active) {
+ await game.dice3d.waitFor3DAnimationByMessageID(message.id);
+ }
+
+ return message;
+ } else return msgData;
}
/** @inheritDoc */
@@ -218,10 +241,11 @@ export const registerRollDiceHooks = () => {
if (
!config.source?.actor ||
(game.user.isGM ? !hopeFearAutomation.gm : !hopeFearAutomation.players) ||
- config.roll.type === 'reaction'
+ config.actionType === 'reaction' ||
+ config.tagTeamSelected ||
+ config.skips?.resources
)
return;
-
const actor = await fromUuid(config.source.actor);
let updates = [];
if (!actor) return;
diff --git a/module/dice/dualityRoll.mjs b/module/dice/dualityRoll.mjs
index ac1047ab..813c913b 100644
--- a/module/dice/dualityRoll.mjs
+++ b/module/dice/dualityRoll.mjs
@@ -19,7 +19,7 @@ export default class DualityRoll extends D20Roll {
get title() {
return game.i18n.localize(
- `DAGGERHEART.GENERAL.${this.options?.roll?.type === CONFIG.DH.ITEM.actionTypes.reaction.id ? 'reactionRoll' : 'dualityRoll'}`
+ `DAGGERHEART.GENERAL.${this.options?.actionType === CONFIG.DH.ITEM.actionTypes.reaction.id ? 'reactionRoll' : 'dualityRoll'}`
);
}
@@ -154,9 +154,12 @@ export default class DualityRoll extends D20Roll {
applyBaseBonus() {
const modifiers = super.applyBaseBonus();
- if (this.options.roll.trait && this.data.traits[this.options.roll.trait])
+ if (this.options.roll.trait && this.data.traits?.[this.options.roll.trait])
modifiers.unshift({
- label: `DAGGERHEART.CONFIG.Traits.${this.options.roll.trait}.name`,
+ label:
+ this.options.roll.type === CONFIG.DH.GENERAL.rollTypes.spellcast.id
+ ? 'DAGGERHEART.CONFIG.RollTypes.spellcast.name'
+ : `DAGGERHEART.CONFIG.Traits.${this.options.roll.trait}.name`,
value: this.data.traits[this.options.roll.trait].value
});
@@ -253,9 +256,11 @@ export default class DualityRoll extends D20Roll {
});
newRoll.extra = newRoll.extra.slice(2);
+ const tagTeamSettings = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.TagTeamRoll);
Hooks.call(`${CONFIG.DH.id}.postRollDuality`, {
source: { actor: message.system.source.actor ?? '' },
targets: message.system.targets,
+ tagTeamSelected: Object.values(tagTeamSettings.members).some(x => x.messageId === message._id),
roll: newRoll,
rerolledRoll:
newRoll.result.duality !== message.system.roll.result.duality ? message.system.roll : undefined
diff --git a/module/documents/actor.mjs b/module/documents/actor.mjs
index 9a22eb44..8faf1350 100644
--- a/module/documents/actor.mjs
+++ b/module/documents/actor.mjs
@@ -1,17 +1,22 @@
import { emitAsGM, GMUpdateEvent } from '../systemRegistration/socket.mjs';
import { LevelOptionType } from '../data/levelTier.mjs';
import DHFeature from '../data/item/feature.mjs';
-import { damageKeyToNumber } from '../helpers/utils.mjs';
+import { createScrollText, damageKeyToNumber } from '../helpers/utils.mjs';
import DhCompanionLevelUp from '../applications/levelup/companionLevelup.mjs';
export default class DhpActor extends Actor {
+ parties = new Set();
+
+ #scrollTextQueue = [];
+ #scrollTextInterval;
+
/**
* Return the first Actor active owner.
*/
get owner() {
const user =
this.hasPlayerOwner && game.users.players.find(u => this.testUserPermission(u, 'OWNER') && u.active);
- if (!user) return game.user.isGM ? game.user : null;
+ if (!user) return game.users.activeGM;
return user;
}
@@ -71,7 +76,7 @@ export default class DhpActor extends Actor {
// Configure prototype token settings
const prototypeToken = {};
- if (['character', 'companion'].includes(this.type))
+ if (['character', 'companion', 'party'].includes(this.type))
Object.assign(prototypeToken, {
sight: { enabled: true },
actorLink: true,
@@ -80,6 +85,20 @@ export default class DhpActor extends Actor {
this.updateSource({ prototypeToken });
}
+ _onUpdate(changes, options, userId) {
+ super._onUpdate(changes, options, userId);
+ for (const party of this.parties) {
+ party.render();
+ }
+ }
+
+ _onDelete(options, userId) {
+ super._onDelete(options, userId);
+ for (const party of this.parties) {
+ party.render();
+ }
+ }
+
async updateLevel(newLevel) {
if (!['character', 'companion'].includes(this.type) || newLevel === this.system.levelData.level.changed) return;
@@ -498,6 +517,7 @@ export default class DhpActor extends Actor {
/**@inheritdoc */
getRollData() {
const rollData = super.getRollData();
+ rollData.name = this.name;
rollData.system = this.system.getRollData();
rollData.prof = this.system.proficiency ?? 1;
rollData.cast = this.system.spellcastModifier ?? 1;
@@ -523,7 +543,7 @@ export default class DhpActor extends Actor {
return canUseArmor || canUseStress;
}
- async takeDamage(damages) {
+ async takeDamage(damages, isDirect = false) {
if (Hooks.call(`${CONFIG.DH.id}.preTakeDamage`, this, damages) === false) return null;
if (this.type === 'companion') {
@@ -554,6 +574,7 @@ export default class DhpActor extends Actor {
hpDamage.value = this.convertDamageToThreshold(hpDamage.value);
if (
this.type === 'character' &&
+ !isDirect &&
this.system.armor &&
this.#canReduceDamage(hpDamage.value, hpDamage.damageTypes)
) {
@@ -594,6 +615,8 @@ export default class DhpActor extends Actor {
await this.modifyResource(updates);
if (Hooks.call(`${CONFIG.DH.id}.postTakeDamage`, this, updates) === false) return null;
+
+ return updates;
}
calculateDamage(baseDamage, type) {
@@ -642,6 +665,8 @@ export default class DhpActor extends Actor {
await this.modifyResource(updates);
if (Hooks.call(`${CONFIG.DH.id}.postTakeHealing`, this, updates) === false) return null;
+
+ return updates;
}
async modifyResource(resources) {
@@ -655,13 +680,22 @@ export default class DhpActor extends Actor {
};
resources.forEach(r => {
- if (r.keyIsID) {
- updates.items[r.key] = {
- target: r.target,
- resources: {
- 'system.resource.value': r.target.system.resource.value + r.value
- }
- };
+ if (r.itemId) {
+ const { path, value } = game.system.api.fields.ActionFields.CostField.getItemIdCostUpdate(r);
+
+ if (
+ r.key === 'quantity' &&
+ r.target.type === 'consumable' &&
+ value === 0 &&
+ r.target.system.destroyOnEmpty
+ ) {
+ r.target.delete();
+ } else {
+ updates.items[r.key] = {
+ target: r.target,
+ resources: { [path]: value }
+ };
+ }
} else {
switch (r.key) {
case 'fear':
@@ -735,7 +769,7 @@ export default class DhpActor extends Actor {
async toggleDefeated(defeatedState) {
const settings = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation).defeated;
- const { unconscious, defeated, dead } = CONFIG.DH.GENERAL.conditions;
+ const { unconscious, defeated, dead } = CONFIG.DH.GENERAL.conditions();
const defeatedConditions = new Set([unconscious.id, defeated.id, dead.id]);
if (!defeatedState) {
for (let defeatedId of defeatedConditions) {
@@ -750,6 +784,25 @@ export default class DhpActor extends Actor {
}
}
+ queueScrollText(scrollingTextData) {
+ this.#scrollTextQueue.push(...scrollingTextData.map(data => () => createScrollText(this, data)));
+ if (!this.#scrollTextInterval) {
+ const scrollFunc = this.#scrollTextQueue.pop();
+ scrollFunc?.();
+
+ const intervalFunc = () => {
+ const scrollFunc = this.#scrollTextQueue.pop();
+ scrollFunc?.();
+ if (this.#scrollTextQueue.length === 0) {
+ clearInterval(this.#scrollTextInterval);
+ this.#scrollTextInterval = null;
+ }
+ };
+
+ this.#scrollTextInterval = setInterval(intervalFunc.bind(this), 600);
+ }
+ }
+
/** @inheritdoc */
async importFromJSON(json) {
if (!this.type === 'character') return await super.importFromJSON(json);
@@ -771,4 +824,14 @@ export default class DhpActor extends Actor {
return await super.importFromJSON(json);
}
+
+ /**
+ * Generate an array of localized tag.
+ * @returns {string[]} An array of localized tag strings.
+ */
+ _getTags() {
+ const tags = [];
+ if (this.system._getTags) tags.push(...this.system._getTags());
+ return tags;
+ }
}
diff --git a/module/documents/chatMessage.mjs b/module/documents/chatMessage.mjs
index b8667384..ec4c5a49 100644
--- a/module/documents/chatMessage.mjs
+++ b/module/documents/chatMessage.mjs
@@ -1,3 +1,5 @@
+import { emitAsGM, GMUpdateEvent, RefreshType, socketEvent } from '../systemRegistration/socket.mjs';
+
export default class DhpChatMessage extends foundry.documents.ChatMessage {
targetHook = null;
@@ -14,7 +16,7 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage {
const html = await super.renderHTML({ actor: actorData, author: this.author });
if (this.flags.core?.RollTable) {
- html.querySelector('.roll-buttons.apply-buttons').remove();
+ html.querySelector('.roll-buttons.apply-buttons')?.remove();
}
this.enrichChatMessage(html);
@@ -47,6 +49,18 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage {
return super._preDelete(options, user);
}
+ /** @inheritDoc */
+ _onUpdate(changes, options, userId) {
+ super._onUpdate(changes, options, userId);
+
+ const lastMessage = Array.from(game.messages).sort((a, b) => b.timestamp - a.timestamp)[0];
+ if (lastMessage.id === this.id && ui.chat.isAtBottom) {
+ setTimeout(() => {
+ ui.chat.scrollBottom();
+ }, 5);
+ }
+ }
+
enrichChatMessage(html) {
const elements = html.querySelectorAll('[data-perm-id]');
elements.forEach(e => {
@@ -73,21 +87,47 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage {
break;
}
}
+
+ const autoExpandRoll = game.settings.get(
+ CONFIG.DH.id,
+ CONFIG.DH.SETTINGS.gameSettings.appearance
+ ).expandRollMessage,
+ rollSections = html.querySelectorAll('.roll-part'),
+ itemDesc = html.querySelector('.domain-card-move');
+ rollSections.forEach(s => {
+ if (s.classList.contains('roll-section')) {
+ const toExpand = s.querySelector('[data-action="expandRoll"]');
+ toExpand.classList.toggle('expanded', autoExpandRoll.roll);
+ } else if (s.classList.contains('damage-section'))
+ s.classList.toggle('expanded', autoExpandRoll.damage);
+ else if (s.classList.contains('target-section')) s.classList.toggle('expanded', autoExpandRoll.target);
+ });
+ if (itemDesc && autoExpandRoll.desc) itemDesc.setAttribute('open', '');
}
- if (!game.user.isGM) {
+ if (!this.isAuthor && !this.speakerActor?.isOwner) {
const applyButtons = html.querySelector('.apply-buttons');
applyButtons?.remove();
- if (!this.isAuthor && !this.speakerActor?.isOwner) {
- const buttons = html.querySelectorAll('.ability-card-footer > .ability-use-button');
- buttons.forEach(b => b.remove());
- }
+ const buttons = html.querySelectorAll('.ability-card-footer > .ability-use-button');
+ buttons.forEach(b => b.remove());
}
}
addChatListeners(html) {
+ html.querySelectorAll('.duality-action-damage').forEach(element =>
+ element.addEventListener('click', this.onRollDamage.bind(this))
+ );
+
html.querySelectorAll('.damage-button').forEach(element =>
- element.addEventListener('click', this.onDamage.bind(this))
+ element.addEventListener('click', this.onApplyDamage.bind(this))
+ );
+
+ html.querySelectorAll('.target-save').forEach(element =>
+ element.addEventListener('click', this.onRollSave.bind(this))
+ );
+
+ html.querySelectorAll('.roll-all-save-button').forEach(element =>
+ element.addEventListener('click', this.onRollAllSave.bind(this))
);
html.querySelectorAll('.duality-action-effect').forEach(element =>
@@ -103,19 +143,37 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage {
html.querySelectorAll('.button-target-selection').forEach(element => {
element.addEventListener('click', this.onTargetSelection.bind(this));
});
+
+ html.querySelectorAll('.token-target-container').forEach(element => {
+ element.addEventListener('pointerover', this.hoverTarget);
+ element.addEventListener('pointerout', this.unhoverTarget);
+ element.addEventListener('click', this.clickTarget);
+ });
}
- getTargetList() {
- const targets = this.system.hitTargets ?? [];
- return targets.map(target => game.canvas.tokens.documentCollection.find(t => t.actor?.uuid === target.actorId));
- }
-
- async onDamage(event) {
+ async onRollDamage(event) {
event.stopPropagation();
- const targets = this.getTargetList();
+ const config = foundry.utils.deepClone(this.system);
+ config.event = event;
+ await this.system.action?.workflow.get('damage')?.execute(config, this._id, true);
+
+ Hooks.callAll(socketEvent.Refresh, { refreshType: RefreshType.TagTeamRoll });
+ await game.socket.emit(`system.${CONFIG.DH.id}`, {
+ action: socketEvent.Refresh,
+ data: {
+ refreshType: RefreshType.TagTeamRoll
+ }
+ });
+ }
+
+ async onApplyDamage(event) {
+ event.stopPropagation();
+ const targets = this.filterPermTargets(this.system.hitTargets),
+ config = foundry.utils.deepClone(this.system);
+ config.event = event;
if (this.system.onSave) {
- const pendingingSaves = this.system.hitTargets.filter(t => t.saved.success === null);
+ const pendingingSaves = targets.filter(t => t.saved.success === null);
if (pendingingSaves.length) {
const confirm = await foundry.applications.api.DialogV2.confirm({
window: { title: 'Pending Reaction Rolls found' },
@@ -126,62 +184,66 @@ export default class DhpChatMessage extends foundry.documents.ChatMessage {
}
if (targets.length === 0)
- return ui.notifications.info(game.i18n.localize('DAGGERHEART.UI.Notifications.noTargetsSelected'));
+ return ui.notifications.info(game.i18n.localize('DAGGERHEART.UI.Notifications.noTargetsSelectedOrPerm'));
- for (let target of targets) {
- let damages = foundry.utils.deepClone(this.system.damage);
- if (
- !this.system.hasHealing &&
- this.system.onSave &&
- this.system.hitTargets.find(t => t.id === target.id)?.saved?.success === true
- ) {
- const mod = CONFIG.DH.ACTIONS.damageOnSave[this.system.onSave]?.mod ?? 1;
- Object.entries(damages).forEach(([k, v]) => {
- v.total = 0;
- v.parts.forEach(part => {
- part.total = Math.ceil(part.total * mod);
- v.total += part.total;
- });
- });
- }
+ this.consumeOnSuccess();
+ this.system.action?.workflow.get('applyDamage')?.execute(config, targets, true);
+ }
- this.consumeOnSuccess();
- if (this.system.hasHealing) target.actor.takeHealing(damages);
- else target.actor.takeDamage(damages);
+ async onRollSave(event) {
+ event.stopPropagation();
+ const tokenId = event.target.closest('[data-token]')?.dataset.token,
+ token = game.canvas.tokens.get(tokenId);
+ if (!token?.actor || !token.isOwner) return true;
+ if (this.system.source.item && this.system.source.action) {
+ const action = this.system.action;
+ if (!action || !action?.hasSave) return;
+ game.system.api.fields.ActionFields.SaveField.rollSave.call(action, token.actor, event).then(result =>
+ emitAsGM(
+ GMUpdateEvent.UpdateSaveMessage,
+ game.system.api.fields.ActionFields.SaveField.updateSaveMessage.bind(
+ action,
+ result,
+ this,
+ token.id
+ ),
+ {
+ action: action.uuid,
+ message: this._id,
+ token: token.id,
+ result
+ }
+ )
+ );
}
}
- getAction(actor, itemId, actionId) {
- const item = actor.items.get(itemId),
- action =
- actor.system.attack?._id === actionId
- ? actor.system.attack
- : item.system.attack?._id === actionId
- ? item.system.attack
- : item?.system?.actions?.get(actionId);
- return action;
+ async onRollAllSave(event) {
+ event.stopPropagation();
+ if (!game.user.isGM) return;
+ const targets = this.system.hitTargets,
+ config = foundry.utils.deepClone(this.system);
+ config.event = event;
+ this.system.action?.workflow.get('save')?.execute(config, targets, true);
}
async onApplyEffect(event) {
event.stopPropagation();
- const actor = await foundry.utils.fromUuid(this.system.source.actor);
- if (!actor || !game.user.isGM) return true;
- if (this.system.source.item && this.system.source.action) {
- const action = this.getAction(actor, this.system.source.item, this.system.source.action);
- if (!action || !action?.applyEffects) return;
- const targets = this.getTargetList();
- if (targets.length === 0)
- ui.notifications.info(game.i18n.localize('DAGGERHEART.UI.Notifications.noTargetsSelected'));
- this.consumeOnSuccess();
- await action.applyEffects(event, this, targets);
- }
+ const targets = this.filterPermTargets(this.system.hitTargets),
+ config = foundry.utils.deepClone(this.system);
+ config.event = event;
+ if (targets.length === 0)
+ ui.notifications.info(game.i18n.localize('DAGGERHEART.UI.Notifications.noTargetsSelectedOrPerm'));
+ this.consumeOnSuccess();
+ this.system.action?.workflow.get('effects')?.execute(config, targets, true);
+ }
+
+ filterPermTargets(targets) {
+ return targets.filter(t => fromUuidSync(t.actorId)?.canUserModify(game.user, 'update'));
}
consumeOnSuccess() {
- if (!this.system.successConsumed && !this.targetSelection) {
- const action = this.system.action;
- if (action) action.consume(this.system, true);
- }
+ if (!this.system.successConsumed && !this.targetSelection) this.system.action?.consume(this.system, true);
}
hoverTarget(event) {
diff --git a/module/documents/item.mjs b/module/documents/item.mjs
index 8492f068..33daf52a 100644
--- a/module/documents/item.mjs
+++ b/module/documents/item.mjs
@@ -32,7 +32,7 @@ export default class DHItem extends foundry.documents.Item {
/** @inheritDoc */
static migrateData(source) {
- if(source.system?.attack && !source.system.attack.type) source.system.attack.type = "attack";
+ if (source.system?.attack && !source.system.attack.type) source.system.attack.type = 'attack';
return super.migrateData(source);
}
diff --git a/module/documents/templateManager.mjs b/module/documents/templateManager.mjs
index c31b1baa..cf15c2e3 100644
--- a/module/documents/templateManager.mjs
+++ b/module/documents/templateManager.mjs
@@ -57,7 +57,10 @@ export default class DhTemplateManager {
* @param {wheel Event} event
*/
#onMouseWheel(event) {
- if (!event.shiftKey) return;
+ if (!this.#activePreview) {
+ return;
+ }
+ if (!event.shiftKey && !event.ctrlKey) return;
event.stopPropagation();
event.preventDefault();
const { moveTime, object } = this.#activePreview;
@@ -66,8 +69,10 @@ export default class DhTemplateManager {
if (now - (moveTime || 0) <= 16) return;
this.#activePreview.moveTime = now;
+ const multiplier = event.shiftKey ? 0.2 : 0.1;
+
object.document.updateSource({
- direction: object.document.direction + event.deltaY * 0.2
+ direction: object.document.direction + event.deltaY * multiplier
});
object.renderFlags.set({ refresh: true });
}
@@ -77,12 +82,13 @@ export default class DhTemplateManager {
* @param {contextmenu Event} event
*/
#cancelTemplate(event) {
- const { mousemove, mousedown, contextmenu } = this.#activePreview.events;
+ const { mousemove, mousedown, contextmenu, wheel } = this.#activePreview.events;
canvas.templates._onDragLeftCancel(event);
canvas.stage.off('mousemove', mousemove);
canvas.stage.off('mousedown', mousedown);
canvas.app.view.removeEventListener('contextmenu', contextmenu);
+ canvas.app.view.removeEventListener('wheel', wheel);
}
/**
@@ -91,9 +97,9 @@ export default class DhTemplateManager {
*/
#confirmTemplate(event) {
event.stopPropagation();
+ this.#cancelTemplate(event);
canvas.scene.createEmbeddedDocuments('MeasuredTemplate', [this.#activePreview.document.toObject()]);
-
- this.#cancelTemplate(event);
+ this.#activePreview = undefined;
}
}
diff --git a/module/enrichers/DamageEnricher.mjs b/module/enrichers/DamageEnricher.mjs
index a52c4b31..e3f9c42a 100644
--- a/module/enrichers/DamageEnricher.mjs
+++ b/module/enrichers/DamageEnricher.mjs
@@ -1,29 +1,8 @@
+import { parseInlineParams } from './parser.mjs';
+
export default function DhDamageEnricher(match, _options) {
- const parts = match[1].split('|').map(x => x.trim());
-
- let value = null,
- type = null,
- inline = false;
-
- parts.forEach(part => {
- const split = part.split(':').map(x => x.toLowerCase().trim());
- if (split.length === 2) {
- switch (split[0]) {
- case 'value':
- value = split[1];
- break;
- case 'type':
- type = split[1];
- break;
- case 'inline':
- inline = true;
- break;
- }
- }
- });
-
- if (!value || !value) return match[0];
-
+ const { value, type, inline } = parseInlineParams(match[1]);
+ if (!value || !type) return match[0];
return getDamageMessage(value, type, inline, match[0]);
}
diff --git a/module/enrichers/DualityRollEnricher.mjs b/module/enrichers/DualityRollEnricher.mjs
index 73d4f25a..1d6404ff 100644
--- a/module/enrichers/DualityRollEnricher.mjs
+++ b/module/enrichers/DualityRollEnricher.mjs
@@ -9,12 +9,12 @@ export default function DhDualityRollEnricher(match, _options) {
}
function getDualityMessage(roll, flavor) {
- const trait = roll.trait && abilities[roll.trait] ? game.i18n.localize(abilities[roll.trait].label) : null;
+ const trait = roll?.trait && abilities[roll.trait] ? game.i18n.localize(abilities[roll.trait].label) : null;
const label =
flavor ??
- (roll.trait
+ (roll?.trait
? game.i18n.format('DAGGERHEART.GENERAL.rollWith', { roll: trait })
- : roll.reaction
+ : roll?.reaction
? game.i18n.localize('DAGGERHEART.GENERAL.reactionRoll')
: game.i18n.localize('DAGGERHEART.GENERAL.duality'));
@@ -22,9 +22,9 @@ function getDualityMessage(roll, flavor) {
? game.i18n.localize(abilities[roll.trait].label)
: game.i18n.localize('DAGGERHEART.GENERAL.duality');
- const advantage = roll.advantage
+ const advantage = roll?.advantage
? CONFIG.DH.ACTIONS.advantageState.advantage.value
- : roll.disadvantage
+ : roll?.disadvantage
? CONFIG.DH.ACTIONS.advantageState.disadvantage.value
: undefined;
const advantageLabel =
@@ -36,21 +36,21 @@ function getDualityMessage(roll, flavor) {
const dualityElement = document.createElement('span');
dualityElement.innerHTML = `
-
`;
diff --git a/module/enrichers/LookupEnricher.mjs b/module/enrichers/LookupEnricher.mjs
new file mode 100644
index 00000000..3566e112
--- /dev/null
+++ b/module/enrichers/LookupEnricher.mjs
@@ -0,0 +1,8 @@
+import { parseInlineParams } from './parser.mjs';
+
+export default function DhLookupEnricher(match, { rollData }) {
+ const results = parseInlineParams(match[1], { first: 'formula' });
+ const element = document.createElement('span');
+ element.textContent = Roll.replaceFormulaData(String(results.formula), rollData);
+ return element;
+}
diff --git a/module/enrichers/TemplateEnricher.mjs b/module/enrichers/TemplateEnricher.mjs
index 35a3e231..4b9b052e 100644
--- a/module/enrichers/TemplateEnricher.mjs
+++ b/module/enrichers/TemplateEnricher.mjs
@@ -1,41 +1,46 @@
+import { parseInlineParams } from './parser.mjs';
+
export default function DhTemplateEnricher(match, _options) {
- const parts = match[1].split('|').map(x => x.trim());
+ const params = parseInlineParams(match[1]);
+ const { type, angle = CONFIG.MeasuredTemplate.defaults.angle, inline = false } = params;
+ const direction = Number(params.direction) || 0;
+ const range =
+ params.range && Number.isNaN(Number(params.range))
+ ? Object.values(CONFIG.DH.GENERAL.templateRanges).find(
+ x => x.id.toLowerCase() === params.range || x.short === params.range
+ )?.id
+ : params.range;
- let type = null,
- range = null,
- inline = false;
-
- parts.forEach(part => {
- const split = part.split(':').map(x => x.toLowerCase().trim());
- if (split.length === 2) {
- switch (split[0]) {
- case 'type':
- const matchedType = Object.values(CONFIG.DH.GENERAL.templateTypes).find(
- x => x.toLowerCase() === split[1]
- );
- type = matchedType;
- break;
- case 'range':
- const matchedRange = Object.values(CONFIG.DH.GENERAL.templateRanges).find(
- x => x.id.toLowerCase() === split[1] || x.short === split[1]
- );
- range = matchedRange?.id;
- break;
- case 'inline':
- inline = true;
- break;
- }
- }
- });
-
- if (!type || !range) return match[0];
+ if (!Object.values(CONFIG.DH.GENERAL.templateTypes).find(x => x === type) || !range) return match[0];
const label = game.i18n.localize(`DAGGERHEART.CONFIG.TemplateTypes.${type}`);
+ const rangeDisplay = Number.isNaN(Number(range))
+ ? game.i18n.localize(`DAGGERHEART.CONFIG.Range.${range}.name`)
+ : range;
+
+ let angleDisplay = '';
+ if (angle != CONFIG.MeasuredTemplate.defaults.angle) {
+ angleDisplay = 'angle:' + angle;
+ }
+ let directionDisplay = '';
+ if (direction != 0) {
+ directionDisplay = 'direction:' + direction;
+ }
+
+ let extraDisplay = '';
+ if (angleDisplay != '' && directionDisplay != '') {
+ extraDisplay = ' (' + angleDisplay + '|' + directionDisplay + ')';
+ } else if (angleDisplay != '') {
+ extraDisplay = ' (' + angleDisplay + ')';
+ } else if (directionDisplay != '') {
+ extraDisplay = ' (' + directionDisplay + ')';
+ }
const templateElement = document.createElement('span');
templateElement.innerHTML = `
-
Being part of a loreborne community means youβre from a society that favors strong academic or political prowess.
Loreborne communities highly value knowledge, frequently in the form of historical preservation, political advancement, scientific study, skill development, or lore and mythology compilation. Most members of these communities research in institutions built in bastions of civilization, while some eclectic few thrive in gathering information from the natural world. Some may be isolationists, operating in smaller enclaves, schools, or guilds and following their own unique ethos. Others still wield their knowledge on a larger scale, making deft political maneuvers across governmental landscapes.
\nLoreborne are often direct, eloquent, inquisitive, patient, rhapsodic, and witty.
", "features": [ "Compendium.daggerheart.communities.Item.JBZJmywisJg5X3tH" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784392, - "modifiedTime": 1754010491764, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394793025, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YsvlyqYoi8QQ8kwm", "sort": 3400000, diff --git a/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json index 7817a2ea..ae6adc86 100644 --- a/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json +++ b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json @@ -7,19 +7,24 @@ "description": "Being part of an orderborne community means youβre from a collective that focuses on discipline or faith, and you uphold a set of principles that reflect your experience there.
Orderborne are frequently some of the most powerful among the surrounding communities. By aligning the members of their society around a common value or goal, such as a god, doctrine, ethos, or even a shared business or trade, the ruling bodies of these enclaves are able to mobilize larger populations with less effort. While orderborne communities take a variety of formsβsome even profoundly pacifisticβperhaps the most feared are those that structure themselves around military prowess. In such a case, itβs not uncommon for orderborne to provide soldiers for hire to other cities or countries.
\nOrderborne are often ambitious, benevolent, pensive, prudent, sardonic, and stoic.
", "features": [ "Compendium.daggerheart.communities.Item.7aXWdH3gzaYREK0X" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784393, - "modifiedTime": 1754010626874, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394802410, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TY2TejenASXtS484", "sort": 3400000, diff --git a/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json index 5971d311..1b09ad82 100644 --- a/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json +++ b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json @@ -7,19 +7,24 @@ "description": "Being part of a ridgeborne community means youβve called the rocky peaks and sharp cliffs of the mountainside home.
Those whoβve lived in the mountains often consider themselves hardier than most because theyβve thrived among the most dangerous terrain many continents have to offer. These groups are adept at adaptation, developing unique technologies and equipment to move both people and products across difficult terrain. As such, ridgeborne grow up scrambling and climbing, making them sturdy and strong-willed. Ridgeborne localities appear in a variety of formsβsome cities carve out entire cliff faces, others construct castles of stone, and still more live in small homes on windblown peaks. Outside forces often struggle to attack ridgeborne groups, as the small militias and large military forces of the mountains are adept at utilizing their high-ground advantage.
\nRidgeborne are often bold, hardy, indomitable, loyal, reserved, and stubborn.
", "features": [ "Compendium.daggerheart.communities.Item.DYmmr5CknLtHnwuj" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784394, - "modifiedTime": 1754010655426, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394814094, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WHLA4qrdszXQHOuo", "sort": 3400000, diff --git a/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json index 95798e66..cd474b14 100644 --- a/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json +++ b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json @@ -7,19 +7,24 @@ "description": "Being part of a seaborne community means you lived on or near a large body of water.
Seaborne communities are built, both physically and culturally, around the specific waters they call home. Some of these groups live along the shore, constructing ports for locals and travelers alike. These harbors function as centers of commerce, tourist attractions, or even just a safe place to lay down oneβs head after weeks of travel. Other seaborne live on the water in small boats or large ships, with the idea of βhomeβ comprising a ship and its crew, rather than any one landmass. No matter their exact location, seaborne communities are closely tied to the ocean tides and the creatures who inhabit them. Seaborne learn to fish at a young age, and train from birth to hold their breath and swim in even the most tumultuous waters. Individuals from these groups are highly sought after for their sailing skills, and many become captains of vessels, whether within their own community, working for another, or even at the helm of a powerful naval operation.
\nSeaborne are often candid, cooperative, exuberant, fierce, resolute, and weathered.
", "features": [ "Compendium.daggerheart.communities.Item.07x6Qe6qMzDw2xN4" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784395, - "modifiedTime": 1754010861330, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394819693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "o5AA5J05N7EvH1rN", "sort": 3400000, diff --git a/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json index c038fe90..3d8911be 100644 --- a/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json +++ b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json @@ -7,19 +7,24 @@ "description": "Being part of a slyborne community means you come from a group that operates outside the law, including all manner of criminals, grifters, and con artists.
Being part of a slyborne community means you come from a group that operates outside the law, including all manner of criminals, grifters, and con artists. Members of slyborne communities are brought together by their disreputable goals and their clever means of achieving them. Many people in these communities have an array of unscrupulous skills: forging, thievery, smuggling, and violence. People of any social class can be slyborne, from those who have garnered vast wealth and influence to those without a coin to their name. To the outside eye, slyborne might appear to be ruffians with no loyalty, but these communities possess some of the strictest codes of honor which, when broken, can result in a terrifying end for the transgressor.
\nSlyborne are often calculating, clever, formidable, perceptive, shrewd, and tenacious.
", "features": [ "Compendium.daggerheart.communities.Item.ZmEuBdL0JrvuA8le" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784396, - "modifiedTime": 1754011031727, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394825710, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rGwCPMqZtky7SE6d", "sort": 3400000, diff --git a/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json index 7bd276be..7a5134c6 100644 --- a/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json +++ b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json @@ -7,19 +7,24 @@ "description": "Being part of an underborne community means youβre from a subterranean society.
Many underborne live right beneath the cities and villages of other collectives, while some live much deeper. These communities range from small family groups in burrows to massive metropolises in caverns of stone. In many locales, underborne are recognized for their incredible boldness and skill that enable great feats of architecture and engineering. Underborne are regularly hired for their bravery, as even the least daring among them has likely encountered formidable belowground beasts, and learning to dispatch such creatures is common practice amongst these societies. Because of the dangers of their environment, many underborne communities develop unique nonverbal languages that prove equally useful on the surface.
\nUnderborne are often composed, elusive, indomitable, innovative, resourceful, and unpretentious.
", "features": [ "Compendium.daggerheart.communities.Item.aMla3xQuCHEwORGD" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784398, - "modifiedTime": 1754011085731, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394833394, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "eX0I1ZNMyD3nfaL1", "sort": 3400000, diff --git a/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json index a1b03f93..465e20e3 100644 --- a/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json +++ b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json @@ -7,19 +7,24 @@ "description": "Being part of a wanderborne community means youβve lived as a nomad, forgoing a permanent home and experiencing a wide variety of cultures.
Unlike many communities that are defined by their locale, wanderborne are defined by their traveling lifestyle. Because of their frequent migration, wanderborne put less value on the accumulation of material possessions in favor of acquiring information, skills, and connections. While some wanderborne are allied by a common ethos, such as a religion or a set of political or economic values, others come together after shared tragedy, such as the loss of their home or land. No matter the reason, the dangers posed by life on the road and the choice to continue down that road together mean that wanderborne are known for their unwavering loyalty.
\nWanderborne are often inscrutable, magnanimous, mirthful, reliable, savvy, and unorthodox.
", "features": [ "Compendium.daggerheart.communities.Item.2RSrQouA2zEJ5Xee" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784398, - "modifiedTime": 1754011123332, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394858795, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "82mDY2EIBfLkNwQj", "sort": 3400000, diff --git a/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json index 73032136..922c3fc7 100644 --- a/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json +++ b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json @@ -7,19 +7,24 @@ "description": "Being part of a wildborne community means you lived deep within the forest.
Wildborne communities are defined by their dedication to the conservation of their homelands, and many have strong religious or cultural ties to the fauna they live among. This results in unique architectural and technological advancements that favor sustainability over short-term, high-yield results. It is a hallmark of wildborne societies to integrate their villages and cities with the natural environment and avoid disturbing the lives of the plants and animals. While some construct their lodgings high in the branches of trees, others establish their homes on the ground beneath the forest canopy. Itβs not uncommon for wildborne to remain reclusive and hidden within their woodland homes.
\nWildborne are often hardy, loyal, nurturing, reclusive, sagacious, and vibrant.
", "features": [ "Compendium.daggerheart.communities.Item.TQ1AIQjndC4mYmmU" - ] + ], + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784398, - "modifiedTime": 1754011159389, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394854412, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CRJ5pzJj4FjCtIlx", "sort": 3400000, diff --git a/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json b/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json index 11ac8208..5591af1e 100644 --- a/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json +++ b/src/packs/communities/feature_Dedicated_7aXWdH3gzaYREK0X.json @@ -33,7 +33,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "effects": [], "flags": {}, diff --git a/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json b/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json index d2c1c314..e93245f6 100644 --- a/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json +++ b/src/packs/communities/feature_Know_the_Tide_07x6Qe6qMzDw2xN4.json @@ -18,7 +18,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [], "flags": {}, @@ -26,12 +31,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754498464092, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755394912698, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json b/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json index 86d1ba97..2c9028a2 100644 --- a/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json +++ b/src/packs/communities/feature_Lightfoot_TQ1AIQjndC4mYmmU.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394946768, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json b/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json index 27dde95c..38008333 100644 --- a/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json +++ b/src/packs/communities/feature_Low_Light_Living_aMla3xQuCHEwORGD.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394926216, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json b/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json index 605c9d7d..b2f8eeb3 100644 --- a/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json +++ b/src/packs/communities/feature_Nomadic_Pack_2RSrQouA2zEJ5Xee.json @@ -17,7 +17,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -41,7 +40,12 @@ }, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 34, + "artist": "" + } }, "effects": [], "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394951501, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json b/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json index 20f015b2..a3d9912a 100644 --- a/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json +++ b/src/packs/communities/feature_Privilege_C7NR6qRatawZusmg.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394874830, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json b/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json index b5618477..1dd3db4f 100644 --- a/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json +++ b/src/packs/communities/feature_Scoundrel_ZmEuBdL0JrvuA8le.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394919483, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json b/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json index 713f8f53..f3690651 100644 --- a/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json +++ b/src/packs/communities/feature_Steady_DYmmr5CknLtHnwuj.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 33, + "artist": "" + } }, "effects": [ { @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394904715, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json b/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json index 7fd9e397..7ef972a2 100644 --- a/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json +++ b/src/packs/communities/feature_Well_Read_JBZJmywisJg5X3tH.json @@ -10,7 +10,12 @@ "actions": {}, "originItemType": null, "subType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 32, + "artist": "" + } }, "effects": [ { @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754010247432, - "modifiedTime": 1754010247432, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755394887664, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "sort": 0, "ownership": { diff --git a/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json index 2177b496..f84e8113 100644 --- a/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json +++ b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json @@ -78,6 +78,11 @@ "img": "icons/magic/light/beam-rays-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784407, - "modifiedTime": 1754304308103, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428101583, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Y08dLFuPXsgeRrHi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json b/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json index 142f6f42..051e27f0 100644 --- a/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json +++ b/src/packs/domains/domainCard_Adjust_Reality_Zp2S2EnLS5Iv3XuT.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 5, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/magic/fire/flame-burning-hand-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784408, - "modifiedTime": 1754254353257, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428058189, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Zp2S2EnLS5Iv3XuT", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json b/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json index 64c03215..c614a86e 100644 --- a/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json +++ b/src/packs/domains/domainCard_Arcana_Touched_5PvMQKCjrgSxzstn.json @@ -21,15 +21,15 @@ "type": "effect", "_id": "hBh4Lt0Bdd9CtJY7", "systemPath": "actions", - "description": "Once per rest, you can switch the results of your Hope and Fear Dice.
", + "description": "Once per rest, you can switch the results of your Hope and Fear Dice.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": false, - "key": "5PvMQKCjrgSxzstn", + "key": "resource", + "itemId": "5PvMQKCjrgSxzstn", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -49,6 +49,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -56,12 +61,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784408, - "modifiedTime": 1754253919218, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575261, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "5PvMQKCjrgSxzstn", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json b/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json index 1bf40321..d9f887c6 100644 --- a/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json +++ b/src/packs/domains/domainCard_Arcane_Reflection_JzSvxy9Mu3RJp1jV.json @@ -23,7 +23,6 @@ "key": "hope", "value": 1, "step": 1, - "keyIsID": false, "consumeOnSuccess": false } ], @@ -66,6 +65,11 @@ "img": "icons/magic/defensive/barrier-shield-dome-deflect-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -73,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784409, - "modifiedTime": 1754254134197, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428031621, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JzSvxy9Mu3RJp1jV", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json b/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json index cc33310b..023c6ee8 100644 --- a/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json +++ b/src/packs/domains/domainCard_Armorer_cy8GjBPGc9w9RaGO.json @@ -77,6 +77,11 @@ "img": "icons/tools/hand/hammer-and-nail.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784409, - "modifiedTime": 1754241866049, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429881876, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cy8GjBPGc9w9RaGO", "sort": 3400000, @@ -125,7 +130,7 @@ "startRound": null, "startTurn": null }, - "description": "While youβre wearing armor, gain a +1 bonus to your Armor Score.
", + "description": "While youβre wearing armor, gain a +1 bonus to your Armor Score.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json b/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json index a82eb0e7..619ab731 100644 --- a/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json +++ b/src/packs/domains/domainCard_Astral_Projection_YNOCNmZ96sCp9NEr.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -40,6 +39,11 @@ "img": "icons/magic/perception/orb-crystal-ball-scrying.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -47,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784409, - "modifiedTime": 1754342271751, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429240862, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YNOCNmZ96sCp9NEr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json index 403a8286..ce7669d5 100644 --- a/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json +++ b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json @@ -63,6 +63,11 @@ "max": "1", "icon": "fa-solid fa-hand-sparkles", "recovery": "shortRest" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784411, - "modifiedTime": 1754240991601, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429055116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "AIbHfryMA2Rvs1ut", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json b/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json index 181e994a..0509faff 100644 --- a/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json +++ b/src/packs/domains/domainCard_Bare_Bones_l5D9kq901JDESaXw.json @@ -11,19 +11,24 @@ "type": "ability", "resource": null, "actions": {}, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067006722, - "modifiedTime": 1754337008196, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429823165, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [], "ownership": { diff --git a/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json b/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json index e3c74f7e..be928940 100644 --- a/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json +++ b/src/packs/domains/domainCard_Battle_Cry_Ef1JsUG50LIoKx2F.json @@ -108,6 +108,11 @@ "img": "icons/magic/control/buff-flight-wings-runes-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -115,12 +120,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784413, - "modifiedTime": 1754304622040, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428179279, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Ef1JsUG50LIoKx2F", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json b/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json index ccd46389..3b804ddf 100644 --- a/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json +++ b/src/packs/domains/domainCard_Battle_Hardened_NeEOghgfyDUBTwBG.json @@ -78,6 +78,11 @@ "img": "icons/magic/life/heart-cross-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784415, - "modifiedTime": 1754304541810, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428149693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "NeEOghgfyDUBTwBG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json b/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json index 50cabbea..13178c37 100644 --- a/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json +++ b/src/packs/domains/domainCard_Battle_Monster_P0ezScyQ5t8ruByf.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 4, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784414, - "modifiedTime": 1754304799641, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428207522, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "P0ezScyQ5t8ruByf", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json b/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json index 82a13070..f451d5cf 100644 --- a/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json +++ b/src/packs/domains/domainCard_Blade_Touched_Gb5bqpFSBiuBxUix.json @@ -8,19 +8,24 @@ "domain": "blade", "recallCost": 1, "level": 7, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784416, - "modifiedTime": 1754304595818, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428164790, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Gb5bqpFSBiuBxUix", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json b/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json index 67fe9335..c069362d 100644 --- a/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json +++ b/src/packs/domains/domainCard_Blink_Out_Qu0iA4s3Xov10Erd.json @@ -23,7 +23,6 @@ "scalable": true, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -66,6 +65,11 @@ "img": "icons/magic/symbols/runes-star-orange-purple.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -73,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784416, - "modifiedTime": 1754253600839, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427965888, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Qu0iA4s3Xov10Erd", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json b/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json index 763a4fe0..32d336ab 100644 --- a/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json +++ b/src/packs/domains/domainCard_Body_Basher_aQz8jKkCd8M9aKMA.json @@ -11,19 +11,24 @@ "type": "ability", "resource": null, "actions": {}, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067167343, - "modifiedTime": 1754241470721, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429841164, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [ { @@ -63,7 +68,7 @@ "startRound": null, "startTurn": null }, - "description": "On a successful attack using a weapon with a Melee range, gain a bonus to your damage roll equal to your Strength.
", + "description": "On a successful attack using a weapon with a Melee range, gain a bonus to your damage roll equal to your Strength.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json b/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json index 9c767f34..2c80d1d5 100644 --- a/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json +++ b/src/packs/domains/domainCard_Bold_Presence_tdsL00yTSLNgZWs6.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -43,7 +42,7 @@ }, "name": "Spend Hope", "img": "icons/magic/holy/barrier-shield-winged-blue.webp", - "range": "" + "range": "self" }, "OdRTXMOXhZFiZHES": { "type": "effect", @@ -67,6 +66,11 @@ "img": "icons/skills/wounds/blood-cells-disease-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -74,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784418, - "modifiedTime": 1754241531537, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756038980509, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "tdsL00yTSLNgZWs6", "sort": 3400000, @@ -88,7 +92,7 @@ "name": "Bold Presence", "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "origin": "Compendium.daggerheart.domains.Item.tdsL00yTSLNgZWs6", - "transfer": true, + "transfer": false, "_id": "2XEYhuAcRGTtqvED", "type": "base", "system": { @@ -107,7 +111,7 @@ "priority": null } ], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -126,12 +130,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754241531511, - "modifiedTime": 1754241605959, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756038989398, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items.effects!tdsL00yTSLNgZWs6.2XEYhuAcRGTtqvED" } diff --git a/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json b/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json index aa4552c5..8921de7d 100644 --- a/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json +++ b/src/packs/domains/domainCard_Bolt_Beacon_BNevJyGk7hmN7XOY.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "zrGLlwmpuUIBrSXy", "systemPath": "actions", - "description": "Make a Spellcast Roll against a target within Far range. On a success, spend a Hope to send a bolt of shimmering light toward them, dealing d8+2 magic damage using your Proficiency. The target becomes temporarily Vulnerable and glows brightly until this condition is cleared.
", + "description": "Make a Spellcast Roll against a target within Far range. On a success, spend a Hope to send a bolt of shimmering light toward them, dealing d8+2 magic damage using your Proficiency. The target becomes temporarily Vulnerable and glows brightly until this condition is cleared.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -96,6 +95,11 @@ "img": "icons/magic/light/beam-horizon-strike-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -103,12 +107,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784418, - "modifiedTime": 1754269150878, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429657284, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BNevJyGk7hmN7XOY", "sort": 3400000, @@ -139,7 +143,7 @@ "startRound": null, "startTurn": null }, - "description": "Temporarily Vulnerable and glows brightly until this condition is cleared.
", + "description": "Temporarily Vulnerable and glows brightly until this condition is cleared.
", "tint": "#ffffff", "statuses": [ "vulnerable" diff --git a/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json b/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json index 5932c284..922a77d9 100644 --- a/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json +++ b/src/packs/domains/domainCard_Bone_Touched_ON5bvnoQBy0SYc9Y.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 3, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784419, - "modifiedTime": 1754252494658, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428331915, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ON5bvnoQBy0SYc9Y", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json b/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json index 2c18114e..0c460a1d 100644 --- a/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json +++ b/src/packs/domains/domainCard_Book_of_Ava_YtZzYBtR0yLPPA93.json @@ -92,7 +92,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -237,6 +236,11 @@ "img": "icons/magic/water/projectile-icecicle.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -244,12 +248,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784419, - "modifiedTime": 1754228833533, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428973862, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YtZzYBtR0yLPPA93", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json b/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json index a3808a31..611c71cb 100644 --- a/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json +++ b/src/packs/domains/domainCard_Book_of_Exota_oVs2MSC6Uf5GbgEG.json @@ -66,7 +66,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -160,6 +159,11 @@ "img": "icons/creatures/magical/construct-golem-stone-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -167,12 +171,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784420, - "modifiedTime": 1754240355163, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429022342, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oVs2MSC6Uf5GbgEG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json b/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json index 4b04f076..83974d28 100644 --- a/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json +++ b/src/packs/domains/domainCard_Book_of_Grynn_R0LNheiZycZlZzV3.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -136,6 +135,11 @@ "img": "icons/magic/fire/barrier-wall-flame-ring-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784420, - "modifiedTime": 1754240392592, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429032715, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "R0LNheiZycZlZzV3", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json index 6869c1f0..94ff8ca7 100644 --- a/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json +++ b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json @@ -105,19 +105,24 @@ "range": "" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784421, - "modifiedTime": 1754240751151, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429070054, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gFMx08ogQ8hS2Obi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json b/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json index 91943faf..1d4084d6 100644 --- a/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json +++ b/src/packs/domains/domainCard_Book_of_Illiat_df4iRqQzRntrF6Qw.json @@ -73,8 +73,7 @@ "scalable": true, "key": "hope", "value": 1, - "step": 1, - "keyIsID": false + "step": 1 } ], "uses": { @@ -129,7 +128,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -155,6 +153,11 @@ "img": "icons/magic/perception/third-eye-blue-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -162,12 +165,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784421, - "modifiedTime": 1754228842497, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428980637, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "df4iRqQzRntrF6Qw", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json index d3fdb94f..d2e80c21 100644 --- a/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json +++ b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json @@ -65,7 +65,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -122,7 +121,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -171,6 +169,11 @@ "img": "icons/magic/symbols/runes-star-pentagon-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -178,12 +181,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784423, - "modifiedTime": 1754230131429, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429006130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cWRFHJdxEZ0M1dAg", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json b/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json index 70d1fc79..4db3e78f 100644 --- a/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json +++ b/src/packs/domains/domainCard_Book_of_Norai_WtwSWXTRZa7QVvmo.json @@ -160,6 +160,11 @@ "img": "icons/magic/fire/explosion-fireball-large-red-orange.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -167,12 +172,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784423, - "modifiedTime": 1754231026933, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429011603, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WtwSWXTRZa7QVvmo", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json b/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json index 7c0ecab0..862d5da9 100644 --- a/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json +++ b/src/packs/domains/domainCard_Book_of_Ronin_SZMNR3uGNinJcN4N.json @@ -28,7 +28,7 @@ "includeBase": false }, "target": { - "type": "any", + "type": "self", "amount": null }, "effects": [ @@ -59,7 +59,7 @@ }, "name": "Transform", "img": "icons/containers/barrels/barrel-reinforced-cherry-brown.webp", - "range": "" + "range": "self" }, "h7i4ZuDYuYLnjze6": { "type": "attack", @@ -112,6 +112,11 @@ "img": "icons/magic/unholy/hand-light-green.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784424, - "modifiedTime": 1754233533128, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756038121293, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "SZMNR3uGNinJcN4N", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json b/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json index 594c34e1..1002b85c 100644 --- a/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json +++ b/src/packs/domains/domainCard_Book_of_Sitil_eq8VNqYMRHhF9xw9.json @@ -30,12 +30,12 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Adjust Appearance", "img": "icons/magic/defensive/shield-barrier-blades-teal.webp", - "range": "" + "range": "self" }, "wBQkw3P4Esj6kOx2": { "type": "effect", @@ -49,7 +49,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -118,6 +117,11 @@ "img": "icons/magic/control/silhouette-hold-change-green.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -125,12 +129,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784424, - "modifiedTime": 1754229292338, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756037990822, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "eq8VNqYMRHhF9xw9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json b/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json index ed29fd87..e974f58a 100644 --- a/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json +++ b/src/packs/domains/domainCard_Book_of_Tyfar_1VXzwRbvbBj5bd5V.json @@ -176,6 +176,11 @@ "img": "icons/magic/air/fog-gas-smoke-dense-gray.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -183,12 +188,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784426, - "modifiedTime": 1754241041570, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428986804, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1VXzwRbvbBj5bd5V", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json b/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json index a54f4c5f..1e3b3bf4 100644 --- a/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json +++ b/src/packs/domains/domainCard_Book_of_Vagras_aknDDYtN7EObv94t.json @@ -70,7 +70,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -158,6 +157,11 @@ "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 124, + "artist": "" } }, "flags": {}, @@ -165,12 +169,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784427, - "modifiedTime": 1754240299795, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428999015, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "aknDDYtN7EObv94t", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json b/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json index e9c8dacf..9ecf339a 100644 --- a/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json +++ b/src/packs/domains/domainCard_Book_of_Vyola_VOIgm2j2Ijszwc5m.json @@ -65,7 +65,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -91,6 +90,11 @@ "img": "icons/magic/control/energy-stream-link-large-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -98,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784427, - "modifiedTime": 1754233138291, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429085107, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VOIgm2j2Ijszwc5m", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json b/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json index 4e1cdaf6..2896a467 100644 --- a/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json +++ b/src/packs/domains/domainCard_Book_of_Yarrow_J1ovx2FpNDvPq1o6.json @@ -68,7 +68,6 @@ "scalable": false, "key": "hope", "value": 5, - "keyIsID": false, "step": null } ], @@ -89,8 +88,13 @@ }, "name": "Magic Immunity", "img": "icons/magic/defensive/barrier-shield-dome-deflect-teal.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -98,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784429, - "modifiedTime": 1754234029921, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756038143042, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "J1ovx2FpNDvPq1o6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json b/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json index d6438669..f4d69fcd 100644 --- a/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json +++ b/src/packs/domains/domainCard_Boost_VKAHS6eWz28ukcDs.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/skills/movement/arrow-upward-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784430, - "modifiedTime": 1754252472924, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428287690, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VKAHS6eWz28ukcDs", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json b/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json index 4ac9fc40..c477f555 100644 --- a/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json +++ b/src/packs/domains/domainCard_Brace_QXs4vssSqNGQu5b8.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 3, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784431, - "modifiedTime": 1754249663994, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428272090, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QXs4vssSqNGQu5b8", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json b/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json index 8f440bd9..a660200b 100644 --- a/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json +++ b/src/packs/domains/domainCard_Breaking_Blow_8UANBgSdhMZ0sqfO.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -41,12 +40,17 @@ ], "target": { "type": "any", - "amount": null + "amount": 1 }, "name": "Mark Stress", "img": "icons/skills/wounds/bone-broken-knee-beam.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784431, - "modifiedTime": 1754252500559, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756037935304, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "8UANBgSdhMZ0sqfO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json b/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json index 84704d27..9193247f 100644 --- a/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json +++ b/src/packs/domains/domainCard_Chain_Lightning_0kAVO6rordCfZqYP.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 2, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -147,6 +146,11 @@ "img": "icons/magic/lightning/bolt-forked-large-magenta.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -154,12 +158,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784433, - "modifiedTime": 1754253714828, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427978632, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0kAVO6rordCfZqYP", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json b/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json index f0ffe8f8..48c35a57 100644 --- a/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json +++ b/src/packs/domains/domainCard_Champion_s_Edge_rnejRbUQsNGX1GMC.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -96,7 +95,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -173,7 +171,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -228,6 +225,11 @@ "img": "icons/skills/melee/strike-axe-blood-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -235,12 +237,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784433, - "modifiedTime": 1754304490701, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428137797, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rnejRbUQsNGX1GMC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json index f68ba80c..74a862b8 100644 --- a/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json +++ b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json @@ -14,7 +14,7 @@ "type": "effect", "_id": "QCMkze8rU0VB1VYL", "systemPath": "actions", - "description": "When you position yourself behind a creature whoβs about your size, you can mark a Stress to pull them into a chokehold, making them temporarily Vulnerable.
", + "description": "When you position yourself behind a creature whoβs about your size, you can mark a Stress to pull them into a chokehold, making them temporarily Vulnerable.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -57,7 +56,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -79,6 +77,11 @@ "img": "icons/magic/control/debuff-chains-shackle-movement-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -86,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784434, - "modifiedTime": 1754173330136, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429320800, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "R5GYUalYXLLFRlNl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json index ce88eb60..410bb313 100644 --- a/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json +++ b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json @@ -143,6 +143,11 @@ "img": "icons/magic/fire/flame-burning-earth-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -150,12 +155,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784434, - "modifiedTime": 1754475145346, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755427937789, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5EP2Lgf7ojfrc0Is", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json index 6b5f9ee9..a853cbcf 100644 --- a/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json +++ b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json @@ -22,7 +22,6 @@ "scalable": true, "key": "hope", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -40,13 +39,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Become Cloaked", "img": "icons/magic/perception/shadow-stealth-eyes-purple.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784435, - "modifiedTime": 1754254076729, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756037373705, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "Zhw7PtK8nMPlsOqD", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json b/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json index 2e3caa80..e06b2cff 100644 --- a/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json +++ b/src/packs/domains/domainCard_Codex_Touched_7Pu83ABdMukTxu3e.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -67,6 +66,11 @@ "img": "icons/magic/symbols/star-inverted-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -74,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784435, - "modifiedTime": 1754232995094, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429075701, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "7Pu83ABdMukTxu3e", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json b/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json index ee91b2fc..1f4f8851 100644 --- a/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json +++ b/src/packs/domains/domainCard_Confusing_Aura_R8NDiJXJWmC48WSr.json @@ -61,7 +61,7 @@ "type": "attack", "_id": "oB5tyd2a7bmcJJmm", "systemPath": "actions", - "description": "Mark any number of Stress to make that many additional layers.
", + "description": "Mark any number of Stress to make that many additional layers.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -70,7 +70,6 @@ "key": "stress", "value": 1, "step": 1, - "keyIsID": false, "consumeOnSuccess": false } ], @@ -117,6 +116,11 @@ "resource": { "type": "simple", "value": 0 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -124,12 +128,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784437, - "modifiedTime": 1754501480068, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428037022, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "R8NDiJXJWmC48WSr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json b/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json index 87226a85..94ce7d3b 100644 --- a/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json +++ b/src/packs/domains/domainCard_Conjure_Swarm_rZPH0BY8Sznc9sFG.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -36,7 +35,7 @@ "includeBase": false }, "target": { - "type": "any", + "type": "self", "amount": null }, "effects": [ @@ -67,7 +66,7 @@ }, "name": "Tekaira's Armored Beetles: Stress", "img": "icons/creatures/invertebrates/wasp-swarm-attack.webp", - "range": "" + "range": "self" }, "533qzPIjcccpiMey": { "type": "effect", @@ -78,7 +77,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -112,7 +110,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -127,11 +124,12 @@ "resultBased": false, "value": { "custom": { - "enabled": false + "enabled": false, + "formula": "" }, "multiplier": "flat", "flatMultiplier": 2, - "dice": "d6", + "dice": "d8", "bonus": 3 }, "applyTo": "hitPoints", @@ -145,7 +143,8 @@ "dice": "d6", "bonus": null, "custom": { - "enabled": false + "enabled": false, + "formula": "" } } } @@ -181,6 +180,11 @@ "img": "icons/creatures/invertebrates/wasp-swarm-movement.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -188,12 +192,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.2", "createdTime": 1753922784438, - "modifiedTime": 1754338003443, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1761502767190, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_id": "rZPH0BY8Sznc9sFG", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json b/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json index 6c23ae92..6403e4ce 100644 --- a/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json +++ b/src/packs/domains/domainCard_Conjured_Steeds_Jkp6cMDiHHaBZQRS.json @@ -22,8 +22,7 @@ "scalable": true, "key": "hope", "value": 1, - "step": 1, - "keyIsID": false + "step": 1 } ], "uses": { @@ -45,6 +44,11 @@ "img": "icons/creatures/mammals/deer-movement-leap-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784438, - "modifiedTime": 1754339195316, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429572061, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Jkp6cMDiHHaBZQRS", "sort": 3400000, @@ -107,7 +111,7 @@ "startRound": null, "startTurn": null }, - "description": "Creatures riding a steed gain a β2 penalty to attack rolls and a +2 bonus to damage rolls.
", + "description": "Creatures riding a steed gain a β2 penalty to attack rolls and a +2 bonus to damage rolls.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json b/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json index 6e9762c6..2785ecaa 100644 --- a/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json +++ b/src/packs/domains/domainCard_Copycat_3A7LZ1xmDEMGa165.json @@ -34,6 +34,11 @@ "img": "icons/magic/perception/hand-eye-black.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -41,12 +46,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784439, - "modifiedTime": 1754499898585, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429253976, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3A7LZ1xmDEMGa165", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json b/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json index e5e4532f..12e36eb3 100644 --- a/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json +++ b/src/packs/domains/domainCard_Corrosive_Projectile_qJaSNTuDfbPVr8Lb.json @@ -93,8 +93,7 @@ "scalable": true, "key": "stress", "value": 0, - "step": 2, - "keyIsID": false + "step": 2 } ], "uses": { @@ -116,6 +115,11 @@ "img": "icons/magic/acid/dissolve-bone-white.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -123,12 +127,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784439, - "modifiedTime": 1754338276907, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429496161, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qJaSNTuDfbPVr8Lb", "sort": 3400000, @@ -166,7 +170,7 @@ "startRound": null, "startTurn": null }, - "description": "While a target is Corroded, they gain a β1 penalty to their Difficulty for every 2 Stress you spent. This condition can stack.
", + "description": "While a target is Corroded, they gain a β1 penalty to their Difficulty for every 2 Stress you spent. This condition can stack.
", "tint": "#ffffff", "statuses": [ "corrode" diff --git a/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json b/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json index 63ed214d..80b4192e 100644 --- a/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json +++ b/src/packs/domains/domainCard_Counterspell_6dhqo1kzGxejCjHa.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "SeOcGdKAc7egwg9H", "systemPath": "actions", - "description": "You can interrupt a magical effect taking place by making a reaction roll using your Spellcast trait. On a success, the effect stops and any consequences are avoided, and this card is placed in your vault.
", + "description": "You can interrupt a magical effect taking place by making a reaction roll using your Spellcast trait. On a success, the effect stops and any consequences are avoided, and this card is placed in your vault.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -57,6 +57,11 @@ "img": "icons/magic/control/hypnosis-mesmerism-watch.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784440, - "modifiedTime": 1754253523353, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427950892, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "6dhqo1kzGxejCjHa", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json b/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json index ba3c5685..747eb272 100644 --- a/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json +++ b/src/packs/domains/domainCard_Critical_Inspiration_ABp9pUfBS69NomTD.json @@ -51,6 +51,11 @@ "img": "icons/magic/light/hand-sparks-glow-yellow.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -58,12 +63,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784441, - "modifiedTime": 1754241711823, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429855659, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ABp9pUfBS69NomTD", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json b/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json index 8b142a56..352e1941 100644 --- a/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json +++ b/src/packs/domains/domainCard_Cruel_Precision_bap1eCWryPNowbyo.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 7, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784442, - "modifiedTime": 1754252496659, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428338581, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "bap1eCWryPNowbyo", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json b/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json index 2e680a1a..019e4d51 100644 --- a/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json +++ b/src/packs/domains/domainCard_Dark_Whispers_yL2qrSWmTwXVOySH.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -64,6 +63,11 @@ "img": "icons/magic/control/mouth-smile-deception-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -71,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784442, - "modifiedTime": 1754331078647, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429363025, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "yL2qrSWmTwXVOySH", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json b/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json index 62b40269..9246896d 100644 --- a/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json +++ b/src/packs/domains/domainCard_Deadly_Focus_xxZOXC4tiZQ6kg1e.json @@ -26,18 +26,23 @@ }, "effects": [ { - "_id": "6sR46Hd554DiLHy4", + "_id": "TFWiAUDCfGaax5MU", "onSave": false } ], "target": { - "type": "any", - "amount": null + "type": "self", + "amount": 1 }, "name": "Focus", "img": "icons/skills/targeting/crosshair-pointed-orange.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -45,22 +50,22 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784443, - "modifiedTime": 1754304260916, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756037604544, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "xxZOXC4tiZQ6kg1e", "sort": 3400000, "effects": [ { "name": "Deadly Focus", - "img": "systems/daggerheart/assets/icons/domains/domain-card/blade.png", + "img": "icons/skills/targeting/crosshair-pointed-orange.webp", "origin": "Compendium.daggerheart.domains.Item.xxZOXC4tiZQ6kg1e", - "transfer": true, - "_id": "6sR46Hd554DiLHy4", + "transfer": false, + "_id": "TFWiAUDCfGaax5MU", "type": "base", "system": { "rangeDependence": { @@ -78,7 +83,7 @@ "priority": null } ], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -88,7 +93,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "Until you attack another creature, you defeat the target, or the battle ends, gain a +1 bonus to your Proficiency.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -97,14 +102,14 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1754244951545, - "modifiedTime": 1754304242570, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "systemVersion": "1.1.0", + "createdTime": 1756037548255, + "modifiedTime": 1756037588317, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, - "_key": "!items.effects!xxZOXC4tiZQ6kg1e.6sR46Hd554DiLHy4" + "_key": "!items.effects!xxZOXC4tiZQ6kg1e.TFWiAUDCfGaax5MU" } ], "ownership": { diff --git a/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json b/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json index 4341f03f..437100da 100644 --- a/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json +++ b/src/packs/domains/domainCard_Death_Grip_x0FVGE1YbfXalJiw.json @@ -216,6 +216,11 @@ "img": "icons/magic/nature/root-vine-beanstalk-moon.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -223,12 +228,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784444, - "modifiedTime": 1754338651654, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429513441, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "x0FVGE1YbfXalJiw", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json b/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json index 4d415f76..8d6ea214 100644 --- a/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json +++ b/src/packs/domains/domainCard_Deathrun_xFOSn8IVVNizgHFq.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -42,6 +41,11 @@ "img": "icons/magic/movement/trail-streak-zigzag-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784445, - "modifiedTime": 1754252515126, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428374555, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xFOSn8IVVNizgHFq", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json index 0ac724a6..1e971dd9 100644 --- a/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json +++ b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -45,6 +44,11 @@ "img": "icons/magic/life/heart-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784445, - "modifiedTime": 1754340779197, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429137161, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "38znCh6kHTkaPwYi", "sort": 3400000, @@ -95,7 +99,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain advantage on a roll to deceive or trick someone into believing a lie you tell them.
", + "description": "Gain advantage on a roll to deceive or trick someone into believing a lie you tell them.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json b/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json index bdf4cbd0..ae4932bf 100644 --- a/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json +++ b/src/packs/domains/domainCard_Deft_Maneuvers_dc4rAXlv95srZUct.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -47,6 +46,11 @@ "img": "icons/skills/movement/arrow-upward-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784446, - "modifiedTime": 1754249648390, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428242266, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dc4rAXlv95srZUct", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json b/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json index cf5c2cc0..1f229fca 100644 --- a/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json +++ b/src/packs/domains/domainCard_Disintegration_Wave_kja5qvh4rdeDBB96.json @@ -58,19 +58,24 @@ "range": "far" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784447, - "modifiedTime": 1754240832214, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429109019, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kja5qvh4rdeDBB96", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json b/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json index 0c7e5530..4c0a599d 100644 --- a/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json +++ b/src/packs/domains/domainCard_Divination_K8oFepK24UVsAX8B.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 3, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/skills/trades/academics-astronomy-navigation-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784448, - "modifiedTime": 1754269593038, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429706201, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "K8oFepK24UVsAX8B", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json b/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json index 6b8cc8b1..e0441289 100644 --- a/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json +++ b/src/packs/domains/domainCard_Earthquake_C0qLOwSSvZ6PG3Ws.json @@ -19,12 +19,12 @@ "actionType": "action", "cost": [ { - "consumeOnSuccess": true, - "scalable": false, - "key": "C0qLOwSSvZ6PG3Ws", + "key": "resource", + "itemId": "C0qLOwSSvZ6PG3Ws", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": true } ], "uses": { @@ -99,19 +99,24 @@ "range": "veryFar" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784449, - "modifiedTime": 1754501560924, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575299, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "C0qLOwSSvZ6PG3Ws", "sort": 3400000, @@ -142,7 +147,7 @@ "startRound": null, "startTurn": null }, - "description": "Temporarily Vulnerable.
", + "description": "Temporarily Vulnerable.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json index 855d336e..6bc6a040 100644 --- a/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json +++ b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json @@ -114,6 +114,11 @@ "img": "icons/skills/wounds/anatomy-organ-brain-pink-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -121,12 +126,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784449, - "modifiedTime": 1754331279468, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429426240, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "62Sj67PdPFzwWVe3", "sort": 3400000, @@ -164,7 +169,7 @@ "startRound": null, "startTurn": null }, - "description": "Attack rolls have disadvantage when targeting you or an ally within this shadow.
", + "description": "Attack rolls have disadvantage when targeting you or an ally within this shadow.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json b/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json index 43b6cf22..ef4eb1ad 100644 --- a/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json +++ b/src/packs/domains/domainCard_Encore_klahWDFwihqqEhXP.json @@ -56,6 +56,11 @@ "img": "icons/magic/light/explosion-impact-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -63,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784450, - "modifiedTime": 1754342166865, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429267094, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "klahWDFwihqqEhXP", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json b/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json index a226b952..0277175a 100644 --- a/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json +++ b/src/packs/domains/domainCard_Endless_Charisma_tNzFNlVHghloKsFi.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -40,6 +39,11 @@ "img": "icons/sundries/gaming/dice-runed-tan.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -47,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784450, - "modifiedTime": 1754341790725, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429228458, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tNzFNlVHghloKsFi", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json b/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json index fc87d922..a933e609 100644 --- a/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json +++ b/src/packs/domains/domainCard_Enrapture_a8lFiKX1o8T924ze.json @@ -73,7 +73,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -121,6 +120,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -128,12 +132,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784451, - "modifiedTime": 1754500747453, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429143444, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "a8lFiKX1o8T924ze", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json b/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json index fd032d37..f827cd09 100644 --- a/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json +++ b/src/packs/domains/domainCard_Falling_Sky_hZJp9mdkMnqKDROe.json @@ -23,8 +23,7 @@ "scalable": true, "key": "stress", "value": 1, - "step": 1, - "keyIsID": false + "step": 1 } ], "uses": { @@ -92,6 +91,11 @@ "img": "icons/magic/light/projectiles-star-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -99,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784452, - "modifiedTime": 1754501517016, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428063874, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "hZJp9mdkMnqKDROe", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json b/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json index 05477e79..a2c18ba5 100644 --- a/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json +++ b/src/packs/domains/domainCard_Fane_of_the_Wilds_F2m9wvZ3v5c3yCtv.json @@ -15,6 +15,11 @@ "recovery": "longRest", "max": "", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784452, - "modifiedTime": 1754336327302, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429617500, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "F2m9wvZ3v5c3yCtv", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json index feb74897..483c6a7d 100644 --- a/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json +++ b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json @@ -33,6 +33,11 @@ "img": "icons/skills/melee/maneuver-daggers-paired-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784453, - "modifiedTime": 1754249658710, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428260608, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jSQsSP61CX4MhSN7", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json b/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json index 61cd64e6..17f4c969 100644 --- a/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json +++ b/src/packs/domains/domainCard_Final_Words_Nbw6Jnh1vRZzwHQI.json @@ -57,6 +57,11 @@ "img": "icons/magic/death/undead-skeleton-fire-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784454, - "modifiedTime": 1754269243084, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429677699, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Nbw6Jnh1vRZzwHQI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json b/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json index 1b4970d2..fd2cd7ec 100644 --- a/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json +++ b/src/packs/domains/domainCard_Flight_54GUjNuBEy7xdzMz.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "sAE4ZDLyU9CmNzES", "systemPath": "actions", - "description": "Make a Spellcast Roll (15). On a success, place a number of tokens equal to your Agility on this card (minimum 1).
", + "description": "Make a Spellcast Roll (15). On a success, place a number of tokens equal to your Agility on this card (minimum 1).
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -66,15 +66,15 @@ "type": "effect", "_id": "2wzlrOPefdowBtRr", "systemPath": "actions", - "description": "When you make an action roll while flying, spend a token from this card. After the action that spends the last token is resolved, you descend to the ground directly below you.
", + "description": "When you make an action roll while flying, spend a token from this card. After the action that spends the last token is resolved, you descend to the ground directly below you.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": false, - "key": "54GUjNuBEy7xdzMz", + "key": "resource", + "itemId": "54GUjNuBEy7xdzMz", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -100,6 +100,11 @@ "value": 0, "max": "", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -107,12 +112,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784454, - "modifiedTime": 1754253557569, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575249, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "54GUjNuBEy7xdzMz", "sort": 3400000, @@ -143,7 +148,7 @@ "startRound": null, "startTurn": null }, - "description": "You can fly. When you make an action roll while flying, spend a token from this card.Β After the action that spends the last token is resolved, you descend to the ground directly below you.
", + "description": "You can fly. When you make an action roll while flying, spend a token from this card.Β After the action that spends the last token is resolved, you descend to the ground directly below you.
", "tint": "#ffffff", "statuses": [ "fly" diff --git a/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json b/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json index 62a36dcf..1df8c51d 100644 --- a/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json +++ b/src/packs/domains/domainCard_Floating_Eye_wOQLu7nLMQ7v6Ogw.json @@ -14,7 +14,7 @@ "type": "effect", "_id": "pO8E1Bf4GDAU0efI", "systemPath": "actions", - "description": "Spend a Hope to create a single, small floating orb that you can move anywhere within Very Far range. While this spell is active, you can see through the orb as though youβre looking out from its position. You can transition between using your own senses and seeing through the orb freely. If the orb takes damage or moves out of range, the spell ends.
", + "description": "Spend a Hope to create a single, small floating orb that you can move anywhere within Very Far range. While this spell is active, you can see through the orb as though youβre looking out from its position. You can transition between using your own senses and seeing through the orb freely. If the orb takes damage or moves out of range, the spell ends.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -38,6 +38,11 @@ "img": "icons/magic/perception/eye-tendrils-web-purple.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784455, - "modifiedTime": 1754253473206, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427943550, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wOQLu7nLMQ7v6Ogw", "sort": 3400000, @@ -81,7 +86,7 @@ "startRound": null, "startTurn": null }, - "description": "While this spell is active, you can see through the orb as though youβre looking out from its position. You can transition between using your own senses and seeing through the orb freely. If the orb takes damage or moves out of range, the spell ends.
", + "description": "While this spell is active, you can see through the orb as though youβre looking out from its position. You can transition between using your own senses and seeing through the orb freely. If the orb takes damage or moves out of range, the spell ends.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json b/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json index 5e039fb9..b7629a8f 100644 --- a/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json +++ b/src/packs/domains/domainCard_Forager_06UapZuaA5S6fAKl.json @@ -238,6 +238,11 @@ "img": "icons/consumables/potions/bottle-bulb-corked-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -245,12 +250,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784456, - "modifiedTime": 1754339631526, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429578094, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "06UapZuaA5S6fAKl", "sort": 3400000, @@ -288,7 +293,7 @@ "startRound": null, "startTurn": null }, - "description": "+2 to a Spellcast Roll
", + "description": "+2 to a Spellcast Roll
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json b/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json index bf4a1e0d..b3d55ab5 100644 --- a/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json +++ b/src/packs/domains/domainCard_Force_of_Nature_LzVpMkD5I4QeaIHf.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -38,12 +37,12 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Transform", "img": "icons/magic/nature/elemental-plant-humanoid.webp", - "range": "" + "range": "self" }, "1rLoYS90AZizJujS": { "type": "effect", @@ -54,7 +53,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -75,6 +73,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -82,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784456, - "modifiedTime": 1754340347669, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038760003, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "LzVpMkD5I4QeaIHf", "sort": 3400000, @@ -131,7 +134,7 @@ "startRound": null, "startTurn": null }, - "description": "When you succeed on an attack or Spellcast Roll, gain a +10 bonus to the damage roll.
When you deal enough damage to defeat a creature within Close range, you absorb them and clear an Armor Slot.
You canβt be Restrained.
Before you make an action roll, you must spend a Hope. If you canβt, you revert to your normal form.
When you succeed on an attack or Spellcast Roll, gain a +10 bonus to the damage roll.
When you deal enough damage to defeat a creature within Close range, you absorb them and clear an Armor Slot.
You canβt be Restrained.
Before you make an action roll, you must spend a Hope. If you canβt, you revert to your normal form.
Gain a +3 bonus to attack rolls against adversaries within Melee range of a sprite.
An ally who marks an Armor Slot while within Melee range of a sprite can mark an additional Armor Slot.
A sprite vanishes after granting a benefit or taking any damage.
", + "description": "Gain a +3 bonus to attack rolls against adversaries within Melee range of a sprite.
An ally who marks an Armor Slot while within Melee range of a sprite can mark an additional Armor Slot.
A sprite vanishes after granting a benefit or taking any damage.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json index b48a2e09..a0a58f74 100644 --- a/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json +++ b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json @@ -8,19 +8,24 @@ "domain": "blade", "recallCost": 0, "level": 4, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784458, - "modifiedTime": 1754304268859, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428132316, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oVa49lI107eZILZr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json b/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json index d8718735..c6323551 100644 --- a/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json +++ b/src/packs/domains/domainCard_Frenzy_MMl7abdGRLl7TJLO.json @@ -31,13 +31,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Frenzy", "img": "icons/magic/fire/projectile-wave-yellow.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784459, - "modifiedTime": 1754304635322, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756037770198, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "MMl7abdGRLl7TJLO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json b/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json index ca10655c..91bc544a 100644 --- a/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json +++ b/src/packs/domains/domainCard_Full_Surge_SgvjJfMyubZowPxS.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 3, - "keyIsID": false, "step": null } ], @@ -43,8 +42,13 @@ }, "name": "Mark Stress", "img": "icons/magic/control/buff-flight-wings-runes-purple.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784460, - "modifiedTime": 1754498928489, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756039042961, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "SgvjJfMyubZowPxS", "sort": 3400000, @@ -66,7 +70,7 @@ "name": "Full Surge", "img": "icons/magic/symbols/ring-circle-smoke-blue.webp", "origin": "Compendium.daggerheart.domains.Item.SgvjJfMyubZowPxS", - "transfer": true, + "transfer": false, "_id": "H5q5iYImr69TfZcp", "type": "base", "system": { @@ -115,7 +119,7 @@ "priority": null } ], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -125,7 +129,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a +2 bonus to all of your character traits until your next rest.
", + "description": "Gain a +2 bonus to all of your character traits until your next rest.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -134,12 +138,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754242182511, - "modifiedTime": 1754242229676, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756039048089, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items.effects!SgvjJfMyubZowPxS.H5q5iYImr69TfZcp" } diff --git a/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json b/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json index 91b55807..a35dcd3c 100644 --- a/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json +++ b/src/packs/domains/domainCard_Get_Back_Up_BFWN2cObMdlk9uVz.json @@ -9,19 +9,24 @@ "recallCost": 1, "level": 1, "type": "ability", - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784460, - "modifiedTime": 1754304045807, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428082275, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BFWN2cObMdlk9uVz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json b/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json index a9e66110..5fb1987e 100644 --- a/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json +++ b/src/packs/domains/domainCard_Gifted_Tracker_VZ2b4zfRzV73XTuT.json @@ -22,8 +22,7 @@ "scalable": true, "key": "hope", "value": 1, - "step": 1, - "keyIsID": false + "step": 1 } ], "uses": { @@ -45,6 +44,11 @@ "img": "icons/magic/nature/stealth-hide-eyes-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784461, - "modifiedTime": 1754337461017, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429462909, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "VZ2b4zfRzV73XTuT", "sort": 3400000, @@ -95,7 +99,7 @@ "startRound": null, "startTurn": null }, - "description": "When you encounter creatures youβve tracked in this way, gain a +1 bonus to your Evasion against them.
", + "description": "When you encounter creatures youβve tracked in this way, gain a +1 bonus to your Evasion against them.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json b/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json index b01a8e00..cde0c6f0 100644 --- a/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json +++ b/src/packs/domains/domainCard_Glancing_Blow_nCNCqSH7UgW4O3To.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -46,6 +45,11 @@ "img": "systems/daggerheart/assets/icons/domains/domain-card/blade.png", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784462, - "modifiedTime": 1754304608102, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428170369, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "nCNCqSH7UgW4O3To", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json b/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json index 99b6b683..b552545d 100644 --- a/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json +++ b/src/packs/domains/domainCard_Glyph_of_Nightfall_B5HXqYRJiL3xMNKT.json @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -70,6 +69,11 @@ "img": "icons/magic/symbols/runes-triangle-blue.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -77,12 +81,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784463, - "modifiedTime": 1754330838174, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429335032, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "B5HXqYRJiL3xMNKT", "sort": 3400000, @@ -120,7 +124,7 @@ "startRound": null, "startTurn": null }, - "description": "Conjure a dark glyph upon their body that exposes their weak points, temporarily reducing the targetβs Difficulty by a value equal to your Knowledge (minimum 1).
", + "description": "Conjure a dark glyph upon their body that exposes their weak points, temporarily reducing the targetβs Difficulty by a value equal to your Knowledge (minimum 1).
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -171,7 +175,7 @@ "startRound": null, "startTurn": null }, - "description": "Conjure a dark glyph upon their body that exposes their weak points, temporarily reducing the targetβs Difficulty by a value equal to your Knowledge (minimum 1).
", + "description": "Conjure a dark glyph upon their body that exposes their weak points, temporarily reducing the targetβs Difficulty by a value equal to your Knowledge (minimum 1).
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json b/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json index 03c1b5e0..09f49cf2 100644 --- a/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json +++ b/src/packs/domains/domainCard_Goad_Them_On_HufF5KzuNfEb9RTi.json @@ -87,6 +87,11 @@ "img": "icons/magic/control/mouth-smile-deception-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784464, - "modifiedTime": 1754241738411, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429869259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HufF5KzuNfEb9RTi", "sort": 3400000, @@ -137,7 +142,7 @@ "startRound": null, "startTurn": null }, - "description": "The next time this Adversary isΒ spotlighted,Β they must target the Goading Character with an attack, which they make with disadvantage.
", + "description": "The next time this Adversary isΒ spotlighted,Β they must target the Goading Character with an attack, which they make with disadvantage.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json b/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json index 6c8de699..bfb91236 100644 --- a/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json +++ b/src/packs/domains/domainCard_Gore_and_Glory_3zvjgZ5Od343wHzx.json @@ -146,6 +146,11 @@ "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -153,12 +158,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784464, - "modifiedTime": 1754304753469, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428195100, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "3zvjgZ5Od343wHzx", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json index f1d82163..11a9c47a 100644 --- a/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json +++ b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json @@ -22,7 +22,6 @@ "scalable": false, "key": "armor", "value": 1, - "keyIsID": false, "step": null } ], @@ -92,6 +91,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -99,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784465, - "modifiedTime": 1754341871438, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429233975, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "KAuNb51AwhD8KEXk", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json b/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json index 4e603ff8..2b27f9d6 100644 --- a/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json +++ b/src/packs/domains/domainCard_Ground_Pound_WnGldYhJPDhx8v9X.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -91,6 +90,11 @@ "img": "icons/magic/earth/barrier-stone-brown-green.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -98,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784466, - "modifiedTime": 1754242257735, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429937836, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WnGldYhJPDhx8v9X", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json b/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json index a9b0561d..49001e24 100644 --- a/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json +++ b/src/packs/domains/domainCard_Healing_Field_GlRm1Dxlc0Z1b04o.json @@ -19,11 +19,12 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "GlRm1Dxlc0Z1b04o", + "key": "resource", + "itemId": "GlRm1Dxlc0Z1b04o", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -94,18 +95,20 @@ "actionType": "action", "cost": [ { - "scalable": false, "key": "hope", + "itemId": null, "value": 2, - "keyIsID": false, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false }, { - "scalable": false, - "key": "GlRm1Dxlc0Z1b04o", + "key": "resource", + "itemId": "GlRm1Dxlc0Z1b04o", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -175,6 +178,11 @@ "max": "1", "icon": "", "progression": "decreasing" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -182,12 +190,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784466, - "modifiedTime": 1754499077474, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575341, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "GlRm1Dxlc0Z1b04o", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json b/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json index a7aeb6b2..dc3669da 100644 --- a/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json +++ b/src/packs/domains/domainCard_Healing_Hands_WTlhnQMajc1r8i50.json @@ -66,7 +66,7 @@ "type": "healing", "_id": "vmWku5XYmakLdwX2", "systemPath": "actions", - "description": "On a failure, mark a Stress to clear a Hit Point or a Stress on the target. You canβt heal the same target again until your next long rest.
", + "description": "On a failure, mark a Stress to clear a Hit Point or a Stress on the target. You canβt heal the same target again until your next long rest.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -75,7 +75,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -143,7 +142,7 @@ "type": "healing", "_id": "FYHLuVtFCR9A6Nvt", "systemPath": "actions", - "description": "On a success, mark a Stress to clear 2 Hit Points or 2 Stress on the target. You canβt heal the same target again until your next long rest.
", + "description": "On a success, mark a Stress to clear 2 Hit Points or 2 Stress on the target. You canβt heal the same target again until your next long rest.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -151,7 +150,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -220,7 +218,7 @@ "type": "healing", "_id": "8ElTYMjIM7YI6Kb8", "systemPath": "actions", - "description": "On a failure, mark a Stress to clear a Hit Point or a Stress on the target. You canβt heal the same target again until your next long rest.
", + "description": "On a failure, mark a Stress to clear a Hit Point or a Stress on the target. You canβt heal the same target again until your next long rest.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -228,7 +226,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -297,7 +294,7 @@ "type": "healing", "_id": "lQMhidLodJn9Nj7e", "systemPath": "actions", - "description": "On a success, mark a Stress to clear 2 Hit Points or 2 Stress on the target. You canβt heal the same target again until your next long rest.
", + "description": "On a success, mark a Stress to clear 2 Hit Points or 2 Stress on the target. You canβt heal the same target again until your next long rest.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -305,7 +302,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -370,6 +366,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -377,12 +378,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784467, - "modifiedTime": 1754269408742, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429684407, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WTlhnQMajc1r8i50", "sort": 3400000, @@ -413,7 +414,7 @@ "startRound": null, "startTurn": null }, - "description": "Canβt be healed again with Healing Hands by the caster of the Healing Hands until a long rest.
", + "description": "Canβt be healed again with Healing Hands by the caster of the Healing Hands until a long rest.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json b/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json index 6c3dd4fd..68c2143b 100644 --- a/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json +++ b/src/packs/domains/domainCard_Healing_Strike_XtSc0jIJLOoMTMYS.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -87,6 +86,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-green.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -94,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784468, - "modifiedTime": 1754269824514, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429756749, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XtSc0jIJLOoMTMYS", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json b/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json index 0ab4d205..cbca693c 100644 --- a/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json +++ b/src/packs/domains/domainCard_Hold_the_Line_kdFoLo3KXwn4LqTG.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -43,7 +42,7 @@ }, "name": "Spend Hope", "img": "icons/magic/holy/barrier-shield-winged-blue.webp", - "range": "" + "range": "self" }, "SKG6Gu0uJZxtYTnz": { "type": "effect", @@ -73,6 +72,11 @@ "img": "icons/magic/defensive/shield-barrier-blue.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -80,12 +84,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784468, - "modifiedTime": 1754242400496, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756039072992, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "kdFoLo3KXwn4LqTG", "sort": 3400000, @@ -94,7 +98,7 @@ "name": "Hold the Line", "img": "icons/magic/defensive/shield-barrier-blue.webp", "origin": "Compendium.daggerheart.domains.Item.kdFoLo3KXwn4LqTG", - "transfer": true, + "transfer": false, "_id": "y82y3nUStyL8DIJL", "type": "base", "system": { @@ -106,7 +110,7 @@ } }, "changes": [], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -125,18 +129,18 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754242295342, - "modifiedTime": 1754242434181, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756039077113, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items.effects!kdFoLo3KXwn4LqTG.y82y3nUStyL8DIJL" }, { "name": "Hold the Line", - "img": "systems/daggerheart/assets/icons/domains/domain-card/valor.png", + "img": "icons/skills/melee/shield-block-bash-blue.webp", "origin": "Compendium.daggerheart.domains.Item.kdFoLo3KXwn4LqTG", "transfer": false, "_id": "WTYg0b8nE1XbnMiA", @@ -171,12 +175,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754242400483, - "modifiedTime": 1754242409060, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756039151398, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items.effects!kdFoLo3KXwn4LqTG.WTYg0b8nE1XbnMiA" } diff --git a/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json b/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json index 93dfbf97..a3293033 100644 --- a/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json +++ b/src/packs/domains/domainCard_Hush_gwmYasmfgXZ7tFS6.json @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -70,6 +69,11 @@ "img": "icons/magic/unholy/orb-glowing-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -77,12 +81,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784470, - "modifiedTime": 1754331001689, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429348547, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gwmYasmfgXZ7tFS6", "sort": 3400000, @@ -113,7 +117,7 @@ "startRound": null, "startTurn": null }, - "description": "Auppressive magic around the target that encompasses everything within Very Close range of them and follows them as they move.Β The target and anything within the area is Silenced until the GM spends a Fear on their turn to clear this condition, you cast Hush again, or you take Major damage. While Silenced, they canβt make noise and canβt cast spells.
", + "description": "Auppressive magic around the target that encompasses everything within Very Close range of them and follows them as they move.Β The target and anything within the area is Silenced until the GM spends a Fear on their turn to clear this condition, you cast Hush again, or you take Major damage. While Silenced, they canβt make noise and canβt cast spells.
", "tint": "#ffffff", "statuses": [ "silence" @@ -159,7 +163,7 @@ "startRound": null, "startTurn": null }, - "description": "Suppressive magic around the target that encompasses everything within Very Close range of them and follows them as they move.Β The target and anything within the area is Silenced until the GM spends a Fear on their turn to clear this condition, you cast Hush again, or you take Major damage. While Silenced, they canβt make noise and canβt cast spells.
", + "description": "Suppressive magic around the target that encompasses everything within Very Close range of them and follows them as they move.Β The target and anything within the area is Silenced until the GM spends a Fear on their turn to clear this condition, you cast Hush again, or you take Major damage. While Silenced, they canβt make noise and canβt cast spells.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json b/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json index a221859c..a04c7c6e 100644 --- a/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json +++ b/src/packs/domains/domainCard_Hypnotic_Shimmer_2ZeuCGVatQdPOVC6.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "kLMAuyZktmohOSXa", "systemPath": "actions", - "description": "Make a Spellcast Roll against all adversaries in front of you within Close range. Once per rest on a success, create an illusion of flashing colors and lights that temporarily Stuns targets you succeed against and forces them to mark a Stress. While Stunned, they canβt use reactions and canβt take any other actions until they clear this condition.
", + "description": "Make a Spellcast Roll against all adversaries in front of you within Close range. Once per rest on a success, create an illusion of flashing colors and lights that temporarily Stuns targets you succeed against and forces them to mark a Stress. While Stunned, they canβt use reactions and canβt take any other actions until they clear this condition.
@Template[type:infront|range:c]
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -88,6 +88,11 @@ "img": "icons/magic/control/hypnosis-mesmerism-swirl.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -95,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784471, - "modifiedTime": 1754341315075, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038232979, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "2ZeuCGVatQdPOVC6", "sort": 3400000, @@ -131,7 +136,7 @@ "startRound": null, "startTurn": null }, - "description": "An illusion of flashing colors and lights that temporarily Stuns targets. While Stunned, they canβt use reactions and canβt take any other actions until they clear this condition.
", + "description": "An illusion of flashing colors and lights that temporarily Stuns targets. While Stunned, they canβt use reactions and canβt take any other actions until they clear this condition.
", "tint": "#ffffff", "statuses": [ "stun" diff --git a/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json b/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json index 1699800f..258499a7 100644 --- a/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json +++ b/src/packs/domains/domainCard_I_Am_Your_Shield_KOf6LLpMRNwjezDx.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -42,19 +41,24 @@ } }, "resource": null, - "inVault": false + "inVault": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754067020844, - "modifiedTime": 1754241453261, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429834425, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "effects": [], "ownership": { diff --git a/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json b/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json index 0960839a..d44ae867 100644 --- a/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json +++ b/src/packs/domains/domainCard_I_See_It_Coming_Kp6RejHGimnuoBom.json @@ -23,7 +23,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -66,6 +65,11 @@ "img": "icons/skills/melee/maneuver-sword-katana-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -73,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784472, - "modifiedTime": 1754249651973, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428247643, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Kp6RejHGimnuoBom", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json b/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json index 78718d6b..c453111c 100644 --- a/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json +++ b/src/packs/domains/domainCard_Inevitable_XTT8c8uJ4D7fvtbL.json @@ -8,19 +8,24 @@ "domain": "valor", "recallCost": 1, "level": 6, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784472, - "modifiedTime": 1754242058119, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429896649, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "XTT8c8uJ4D7fvtbL", "sort": 3400000, @@ -56,7 +61,7 @@ "startRound": null, "startTurn": null }, - "description": "When you fail an action roll, your next action roll has advantage.
", + "description": "When you fail an action roll, your next action roll has advantage.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json b/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json index 424b08b7..e3dd7875 100644 --- a/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json +++ b/src/packs/domains/domainCard_Inspirational_Words_cWu1o82ZF7GvnbXc.json @@ -27,11 +27,12 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "cWu1o82ZF7GvnbXc", + "key": "resource", + "itemId": "cWu1o82ZF7GvnbXc", "value": 1, + "scalable": false, "step": null, - "keyIsID": true + "consumeOnSuccess": false } ], "uses": { @@ -97,16 +98,17 @@ "type": "healing", "_id": "QKS3vo3Nf5CK8rkF", "systemPath": "actions", - "description": "Spend a token from this card to give them the following:
Your ally clears a Hit Point.
Spend a token from this card to give them the following:
Your ally clears a Hit Point.
Spend a token from this card to give them the following:
Your ally gains a Hope.
Spend a token from this card to give them the following:
Your ally gains a Hope.
An Invisible creature canβt be seen except through magical means and attack rolls against them are made with disadvantage. Place a number of tokens on this card equal to your Spellcast trait. When the Invisible creature takes an action, spend a token from this card. After the action that spends the last token is resolved, the effect ends.
", + "description": "An Invisible creature canβt be seen except through magical means and attack rolls against them are made with disadvantage. Place a number of tokens on this card equal to your Spellcast trait. When the Invisible creature takes an action, spend a token from this card. After the action that spends the last token is resolved, the effect ends.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json index 53ef85a7..75b94c59 100644 --- a/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json +++ b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -78,7 +77,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -98,6 +96,11 @@ "img": "icons/magic/perception/eye-ringed-glow-angry-small-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -105,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784475, - "modifiedTime": 1754252480391, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428299138, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "O38MQMhJWdZnXi6b", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json b/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json index 67f8e04c..86e8b1ca 100644 --- a/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json +++ b/src/packs/domains/domainCard_Lead_by_Example_YWCRplmtwpCjpq5i.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -39,12 +38,17 @@ ], "target": { "type": "any", - "amount": null + "amount": 1 }, "name": "Mark Stress", "img": "icons/magic/control/buff-flight-wings-runes-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784475, - "modifiedTime": 1754242464667, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756039181179, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "YWCRplmtwpCjpq5i", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json b/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json index aecbe898..73bfee2b 100644 --- a/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json +++ b/src/packs/domains/domainCard_Lean_on_Me_BdePs1ZWpZTZvY1Z.json @@ -77,6 +77,11 @@ "img": "icons/magic/life/heart-cross-strong-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784477, - "modifiedTime": 1754241703151, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429861185, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BdePs1ZWpZTZvY1Z", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json b/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json index 78b2ec5e..12884992 100644 --- a/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json +++ b/src/packs/domains/domainCard_Life_Ward_OszbCj0jTqq2ADx9.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 3, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -47,6 +46,11 @@ "img": "icons/magic/defensive/shield-barrier-deflect-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784478, - "modifiedTime": 1754269642386, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429712212, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "OszbCj0jTqq2ADx9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json b/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json index acb35822..c938aca6 100644 --- a/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json +++ b/src/packs/domains/domainCard_Manifest_Wall_TtGOtWkbr23VhHfH.json @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 1, - "keyIsID": false, "step": null } ], @@ -66,6 +65,11 @@ "img": "icons/magic/symbols/ring-circle-smoke-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -73,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784479, - "modifiedTime": 1754240697822, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429040215, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TtGOtWkbr23VhHfH", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json b/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json index 76ea0d6b..b715c94a 100644 --- a/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json +++ b/src/packs/domains/domainCard_Mass_Disguise_dT95m0Jam8sWbeuC.json @@ -37,6 +37,11 @@ "img": "icons/skills/social/diplomacy-unity-alliance.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784480, - "modifiedTime": 1754331105670, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429370519, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dT95m0Jam8sWbeuC", "sort": 3400000, @@ -87,7 +92,7 @@ "startRound": null, "startTurn": null }, - "description": "A disguised creature has advantage on Presence Rolls to avoid scrutiny.
", + "description": "A disguised creature has advantage on Presence Rolls to avoid scrutiny.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json b/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json index 2713e2c7..b04fddf6 100644 --- a/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json +++ b/src/packs/domains/domainCard_Mass_Enrapture_ubpixIgZrJXKyM3b.json @@ -73,7 +73,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -121,6 +120,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -128,12 +132,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784481, - "modifiedTime": 1754499825008, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429247535, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ubpixIgZrJXKyM3b", "sort": 3400000, @@ -164,7 +168,7 @@ "startRound": null, "startTurn": null }, - "description": "While Enraptured, a targetβs attention is fixed on you, narrowing their field of view and drowning out any sound but your voice.
", + "description": "While Enraptured, a targetβs attention is fixed on you, narrowing their field of view and drowning out any sound but your voice.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json b/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json index 8ab75989..148ce05a 100644 --- a/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json +++ b/src/packs/domains/domainCard_Master_of_the_Craft_yAGTwXHUC3qxpTeK.json @@ -8,19 +8,24 @@ "domain": "grace", "recallCost": 0, "level": 9, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784482, - "modifiedTime": 1754229084018, - "lastModifiedBy": "l5jB3XmcVXOTQpRZ" + "modifiedTime": 1755429259836, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "yAGTwXHUC3qxpTeK", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json b/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json index 437adffc..102c895f 100644 --- a/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json +++ b/src/packs/domains/domainCard_Mending_Touch_TGjR4vJVNbQRV8zr.json @@ -14,7 +14,7 @@ "type": "healing", "_id": "sDoL9p1cpIx8Vdbb", "systemPath": "actions", - "description": "When you can take a few minutes to focus on the target youβre helping, you can spend 2 Hope to clear a Hit Point or a Stress on them.
", + "description": "When you can take a few minutes to focus on the target youβre helping, you can spend 2 Hope to clear a Hit Point or a Stress on them.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -99,7 +98,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -173,18 +171,18 @@ "actionType": "action", "cost": [ { - "scalable": false, "key": "hope", + "itemId": null, "value": 2, - "keyIsID": false, + "scalable": false, "step": null, "consumeOnSuccess": false }, { - "scalable": false, - "key": "TGjR4vJVNbQRV8zr", + "key": "resource", + "itemId": "TGjR4vJVNbQRV8zr", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -258,18 +256,18 @@ "actionType": "action", "cost": [ { - "scalable": false, "key": "hope", + "itemId": null, "value": 2, - "keyIsID": false, + "scalable": false, "step": null, "consumeOnSuccess": false }, { - "scalable": false, - "key": "TGjR4vJVNbQRV8zr", + "key": "resource", + "itemId": "TGjR4vJVNbQRV8zr", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -342,6 +340,11 @@ "max": "1", "icon": "fa-solid fa-hands-praying", "recovery": "longRest" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -349,12 +352,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784482, - "modifiedTime": 1754498631054, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575507, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "TGjR4vJVNbQRV8zr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json b/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json index 701f912d..6878ed3f 100644 --- a/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json +++ b/src/packs/domains/domainCard_Midnight_Spirit_FXLsB3QbQvTtqX5B.json @@ -14,12 +14,11 @@ "type": "effect", "_id": "BDKCP4FvntHkYqXp", "systemPath": "actions", - "description": "Spend a Hope to summon a humanoid-sized spirit that can move or carry things for you until your next rest.
", + "description": "Spend a Hope to summon a humanoid-sized spirit that can move or carry things for you until your next rest.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -44,12 +43,11 @@ "type": "attack", "_id": "YVSMa2Igxp6DhNpG", "systemPath": "actions", - "description": "You can also send it to attack an adversary. When you do, make a Spellcast Roll against a target within Very Far range. On a success, the spirit moves into Melee range with that target. Roll a number of d6s equal to your Spellcast trait and deal that much magic damage to the target. The spirit then dissipates. You can only have one spirit at a time.
", + "description": "You can also send it to attack an adversary. When you do, make a Spellcast Roll against a target within Very Far range. On a success, the spirit moves into Melee range with that target. Roll a number of d6s equal to your Spellcast trait and deal that much magic damage to the target. The spirit then dissipates. You can only have one spirit at a time.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -121,6 +119,11 @@ "img": "icons/creatures/magical/spirit-undead-ghost-purple.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -128,12 +131,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784482, - "modifiedTime": 1754330630881, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429306955, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "FXLsB3QbQvTtqX5B", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json b/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json index 7a06e78e..73ecfaae 100644 --- a/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json +++ b/src/packs/domains/domainCard_Midnight_Touched_uSyGKVxOJcnp28po.json @@ -14,7 +14,7 @@ "type": "healing", "_id": "ksl1CcxcuwYxObiS", "systemPath": "actions", - "description": "Once per rest, when you have 0 Hope and the GM would gain a Fear, you can gain a Hope instead.
", + "description": "Once per rest, when you have 0 Hope and the GM would gain a Fear, you can gain a Hope instead.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -81,7 +81,7 @@ "type": "effect", "_id": "Ky5wcwBqgm5bJCK1", "systemPath": "actions", - "description": "When you make a successful attack, you can mark a Stress to add the result of your Fear Die to your damage roll.
", + "description": "When you make a successful attack, you can mark a Stress to add the result of your Fear Die to your damage roll.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -89,7 +89,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -107,6 +106,11 @@ "img": "icons/skills/wounds/anatomy-organ-brain-pink-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -114,12 +118,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784484, - "modifiedTime": 1754331118511, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429376821, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uSyGKVxOJcnp28po", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json b/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json index 97da5875..1e2c783d 100644 --- a/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json +++ b/src/packs/domains/domainCard_Natural_Familiar_Tag303LoRNC5zGgl.json @@ -22,7 +22,6 @@ "scalable": true, "key": "hope", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -104,7 +103,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -122,6 +120,11 @@ "img": "icons/magic/perception/eye-ringed-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -129,12 +132,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784485, - "modifiedTime": 1754338204263, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429486873, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Tag303LoRNC5zGgl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json b/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json index ed754e5c..4ede0a27 100644 --- a/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json +++ b/src/packs/domains/domainCard_Nature_s_Tongue_atWLorlCOxcrq8WB.json @@ -65,7 +65,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -91,6 +90,11 @@ "img": "icons/magic/nature/beam-hand-leaves-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -98,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784485, - "modifiedTime": 1754337595015, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429468262, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "atWLorlCOxcrq8WB", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json b/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json index b53b635d..4f553e26 100644 --- a/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json +++ b/src/packs/domains/domainCard_Never_Upstaged_McdncxmO9K1YNP7Y.json @@ -25,18 +25,20 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "McdncxmO9K1YNP7Y", + "key": "resource", + "itemId": "McdncxmO9K1YNP7Y", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false }, { - "scalable": false, "key": "stress", + "itemId": null, "value": 1, - "keyIsID": false, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -67,18 +69,20 @@ "actionType": "action", "cost": [ { - "scalable": false, "key": "stress", + "itemId": null, "value": 1, - "keyIsID": false, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false }, { - "scalable": false, - "key": "McdncxmO9K1YNP7Y", + "key": "resource", + "itemId": "McdncxmO9K1YNP7Y", "value": 2, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -109,18 +113,20 @@ "actionType": "action", "cost": [ { - "scalable": false, "key": "stress", + "itemId": null, "value": 1, - "keyIsID": false, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false }, { - "scalable": false, - "key": "McdncxmO9K1YNP7Y", + "key": "resource", + "itemId": "McdncxmO9K1YNP7Y", "value": 3, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -151,18 +157,20 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "McdncxmO9K1YNP7Y", + "key": "resource", + "itemId": "McdncxmO9K1YNP7Y", "value": 4, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false }, { - "scalable": false, "key": "stress", + "itemId": null, "value": 1, - "keyIsID": false, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -184,6 +192,11 @@ "img": "icons/commodities/gems/gem-faceted-navette-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -191,12 +204,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784486, - "modifiedTime": 1754341729669, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575431, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "McdncxmO9K1YNP7Y", "sort": 3400000, @@ -240,7 +253,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a +5 bonus to your damage roll
", + "description": "Gain a +5 bonus to your damage roll
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -297,7 +310,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a +10 bonus to your damage roll
", + "description": "Gain a +10 bonus to your damage roll
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -354,7 +367,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a +15 bonus to your damage roll
", + "description": "Gain a +15 bonus to your damage roll
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -411,7 +424,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a +20 bonus to your damage roll
", + "description": "Gain a +20 bonus to your damage roll
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json b/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json index cb538eb1..28cd1e0b 100644 --- a/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json +++ b/src/packs/domains/domainCard_Night_Terror_zcldCuqOg3dphUVI.json @@ -65,16 +65,17 @@ "type": "damage", "_id": "ELzQvftGxZigPkBH", "systemPath": "actions", - "description": "Steal a number of Fear from the GM equal to the number of targets that are Horrified (up to the number of Fear in the GMβs pool). Roll a number of d6s equal to the number of stolen Fear and deal the total damage to each Horrified target. Discard the stolen Fear.
", + "description": "Steal a number of Fear from the GM equal to the number of targets that are Horrified (up to the number of Fear in the GMβs pool). Roll a number of d6s equal to the number of stolen Fear and deal the total damage to each Horrified target. Discard the stolen Fear.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": true, - "key": "zcldCuqOg3dphUVI", + "key": "resource", + "itemId": "zcldCuqOg3dphUVI", "value": 1, + "scalable": true, "step": 1, - "keyIsID": true + "consumeOnSuccess": false } ], "uses": { @@ -121,19 +122,24 @@ "range": "" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784487, - "modifiedTime": 1754499654051, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575872, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "zcldCuqOg3dphUVI", "sort": 3400000, @@ -164,7 +170,7 @@ "startRound": null, "startTurn": null }, - "description": "While Horrified, theyβre Vulnerable.
", + "description": "While Horrified, theyβre Vulnerable.
", "tint": "#ffffff", "statuses": [ "vulnerable" diff --git a/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json b/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json index 56abe99f..6d7acdf5 100644 --- a/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json +++ b/src/packs/domains/domainCard_Not_Good_Enough_xheQZOIYp0ERQhT9.json @@ -8,19 +8,24 @@ "domain": "blade", "recallCost": 1, "level": 1, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784487, - "modifiedTime": 1754244517328, - "lastModifiedBy": "l5jB3XmcVXOTQpRZ" + "modifiedTime": 1755428087961, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "xheQZOIYp0ERQhT9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json index aad731ff..4f9e09e2 100644 --- a/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json +++ b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -40,6 +39,11 @@ "img": "icons/magic/light/explosion-star-glow-silhouette.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -47,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784489, - "modifiedTime": 1754342229231, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429273228, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "IqxzvvjZiYbgx21A", "sort": 3400000, diff --git a/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json b/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json index b6f6548f..c6978859 100644 --- a/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json +++ b/src/packs/domains/domainCard_On_the_Brink_zbxPl81kbWEegKQN.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 9, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784489, - "modifiedTime": 1754252507659, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428361099, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "zbxPl81kbWEegKQN", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json b/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json index 0d924ef2..20a677d0 100644 --- a/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json +++ b/src/packs/domains/domainCard_Onslaught_I7pNsQ9Yx6mRJX4V.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -46,6 +45,11 @@ "img": "icons/skills/melee/strike-axe-blood-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784490, - "modifiedTime": 1754304817948, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428212614, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "I7pNsQ9Yx6mRJX4V", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json b/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json index 68abefea..8cdb10fc 100644 --- a/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json +++ b/src/packs/domains/domainCard_Overwhelming_Aura_iEBLySZD9z8CLdz7.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "r2XblKJyZyamOOXq", "systemPath": "actions", - "description": "Make a Spellcast Roll (15) to magically empower your aura. On a success, spend 2 Hope to make your Presence equal to your Spellcast trait until your next long rest.While this spell is active, an adversary must mark a Stress when they target you with an attack.
", + "description": "Make a Spellcast Roll (15) to magically empower your aura. On a success, spend 2 Hope to make your Presence equal to your Spellcast trait until your next long rest.While this spell is active, an adversary must mark a Stress when they target you with an attack.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -38,7 +37,7 @@ "includeBase": false }, "target": { - "type": "any", + "type": "self", "amount": null }, "effects": [ @@ -69,8 +68,13 @@ }, "name": "Cast", "img": "icons/magic/holy/angel-winged-humanoid-blue.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -78,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784491, - "modifiedTime": 1754270006714, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038903709, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "iEBLySZD9z8CLdz7", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json b/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json index 7e58df93..1acf0f9d 100644 --- a/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json +++ b/src/packs/domains/domainCard_Phantom_Retreat_0vdpIn06ifF3xxqZ.json @@ -14,12 +14,11 @@ "type": "effect", "_id": "SE2C9Andtlw3OQLL", "systemPath": "actions", - "description": "Spend a Hope to activate Phantom Retreat where youβre currently standing.
", + "description": "Spend a Hope to activate Phantom Retreat where youβre currently standing.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -49,7 +48,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -70,6 +68,11 @@ "img": "icons/magic/control/silhouette-hold-beam-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -77,12 +80,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784491, - "modifiedTime": 1754331063221, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429354517, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "0vdpIn06ifF3xxqZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json b/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json index 23e477a9..f1a0777f 100644 --- a/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json +++ b/src/packs/domains/domainCard_Pick_and_Pull_HdgZUfWd7Hyj7nBW.json @@ -8,19 +8,24 @@ "domain": "midnight", "recallCost": 0, "level": 1, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784492, - "modifiedTime": 1754330601777, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429286495, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HdgZUfWd7Hyj7nBW", "sort": 3400000, @@ -68,7 +73,7 @@ "startRound": null, "startTurn": null }, - "description": "You have advantage on action rolls to pick nonmagical locks, disarm nonmagical traps, or steal items from a target (either through stealth or by force).
", + "description": "You have advantage on action rolls to pick nonmagical locks, disarm nonmagical traps, or steal items from a target (either through stealth or by force).
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json b/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json index 8176850e..665a7af9 100644 --- a/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json +++ b/src/packs/domains/domainCard_Plant_Dominion_9a6xP5pxhVvdugk9.json @@ -57,6 +57,11 @@ "img": "icons/magic/nature/tree-elm-roots-brown.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784493, - "modifiedTime": 1754499238543, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429623471, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9a6xP5pxhVvdugk9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json b/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json index 8a590089..8678a0f8 100644 --- a/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json +++ b/src/packs/domains/domainCard_Premonition_aC43NiFQLpOADyjO.json @@ -19,10 +19,10 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "aC43NiFQLpOADyjO", + "key": "resource", + "itemId": "aC43NiFQLpOADyjO", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -49,6 +49,11 @@ "recovery": "longRest", "max": "1", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -56,12 +61,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784494, - "modifiedTime": 1754253731528, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575616, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "aC43NiFQLpOADyjO", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json b/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json index 2460130f..9240a534 100644 --- a/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json +++ b/src/packs/domains/domainCard_Preservation_Blast_1p1cOmbnRd5CoKBp.json @@ -84,6 +84,11 @@ "img": "icons/magic/air/air-pressure-shield-blue.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784495, - "modifiedTime": 1754253657439, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427971834, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1p1cOmbnRd5CoKBp", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json b/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json index b11bd6f9..f7e72b9f 100644 --- a/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json +++ b/src/packs/domains/domainCard_Rage_Up_GRL0cvs96vrTDckZ.json @@ -14,7 +14,7 @@ "type": "effect", "_id": "LmjwPg03xLnoGTHm", "systemPath": "actions", - "description": "", + "description": "You can mark a Stress to gain a bonus to your damage roll equal to twice your Strength.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -22,8 +22,7 @@ "scalable": false, "key": "stress", "value": 1, - "step": 1, - "keyIsID": false, + "step": null, "consumeOnSuccess": false } ], @@ -40,18 +39,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Mark 1 Stress", "img": "icons/magic/control/silhouette-aura-energy.webp", - "range": "" + "range": "self" }, "fKY9NcYBwCFwMsgV": { "type": "effect", "_id": "fKY9NcYBwCFwMsgV", "systemPath": "actions", - "description": "", + "description": "You can mark a Stress to gain a bonus to your damage roll equal to twice your Strength.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -59,7 +58,6 @@ "scalable": false, "key": "stress", "value": 2, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -77,13 +75,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Mark 2 Stress", "img": "icons/magic/control/silhouette-aura-energy.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -91,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784496, - "modifiedTime": 1754445106667, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756037744719, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "GRL0cvs96vrTDckZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json index 7327a44e..0651411a 100644 --- a/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json +++ b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json @@ -14,12 +14,11 @@ "type": "attack", "_id": "WTnjKQs2uI1TuF9r", "systemPath": "actions", - "description": "Spend a Hope to make a Spellcast Roll and conjure throwing blades that strike out at all targets within Very Close range.Β Targets you succeed against take d8+2 magic damage using your Proficiency.
", + "description": "Spend a Hope to make a Spellcast Roll and conjure throwing blades that strike out at all targets within Very Close range.Β Targets you succeed against take d8+2 magic damage using your Proficiency.
@Template[type:emanation|range:vc]
", "chatDisplay": true, "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -140,6 +139,11 @@ "img": "icons/skills/melee/spear-tips-three-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -147,12 +151,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784497, - "modifiedTime": 1754330607042, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038335767, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "Ucenef6JpjQxwXni", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json b/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json index e2f248c7..2f3bb3a0 100644 --- a/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json +++ b/src/packs/domains/domainCard_Rapid_Riposte_tceJDcCUefrMS2Ov.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/skills/melee/maneuver-greatsword-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784497, - "modifiedTime": 1754252487558, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428316589, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "tceJDcCUefrMS2Ov", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json b/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json index 201005a1..df98b899 100644 --- a/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json +++ b/src/packs/domains/domainCard_Reaper_s_Strike_MCgNRlh0s5XUPCfl.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -66,6 +65,11 @@ "img": "icons/skills/melee/strike-axe-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -73,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784498, - "modifiedTime": 1754304768446, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428200348, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "MCgNRlh0s5XUPCfl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json b/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json index 43c17e96..87ec672e 100644 --- a/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json +++ b/src/packs/domains/domainCard_Reassurance_iYNVTB7uAD1FTCZu.json @@ -33,6 +33,11 @@ "img": "icons/sundries/gaming/dice-pair-white-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784499, - "modifiedTime": 1754498645559, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429669557, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "iYNVTB7uAD1FTCZu", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json b/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json index 7e6d927a..3784874b 100644 --- a/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json +++ b/src/packs/domains/domainCard_Reckless_2ooUo2yoilGifY81.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784500, - "modifiedTime": 1754304322191, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428107078, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2ooUo2yoilGifY81", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json b/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json index 8b491d49..963abf97 100644 --- a/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json +++ b/src/packs/domains/domainCard_Recovery_gsiQFT6q3WOgqerJ.json @@ -38,6 +38,11 @@ "img": "icons/magic/life/cross-beam-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -45,12 +50,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784500, - "modifiedTime": 1754252490411, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428322053, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gsiQFT6q3WOgqerJ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json b/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json index 85a952c3..86c765a2 100644 --- a/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json +++ b/src/packs/domains/domainCard_Redirect_faU0XkJCbar69PiN.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/skills/melee/sword-twirl-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784500, - "modifiedTime": 1754252475141, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428292852, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "faU0XkJCbar69PiN", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json b/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json index 4d910604..e4a9a421 100644 --- a/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json +++ b/src/packs/domains/domainCard_Rejuvenation_Barrier_HtWx5IIemCoorMj2.json @@ -82,6 +82,11 @@ "img": "icons/magic/nature/leaf-hand-green.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784502, - "modifiedTime": 1754499308449, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429606994, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HtWx5IIemCoorMj2", "sort": 3400000, @@ -132,7 +137,7 @@ "startRound": null, "startTurn": null }, - "description": "While the barrier is up, the caster and all allies within have resistance to physical damage from outside the barrier. When the caster moves, the barrier follows them.
", + "description": "While the barrier is up, the caster and all allies within have resistance to physical damage from outside the barrier. When the caster moves, the barrier follows them.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json index c75e8ca6..830033c3 100644 --- a/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json +++ b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json @@ -22,16 +22,16 @@ "type": "healing", "_id": "udmHKUtCDClxeB4h", "systemPath": "actions", - "description": "Touch a creature and spend any number of tokens to clear 2 Hit Points or 2 Stress for each token spent.
", + "description": "Touch a creature and spend any number of tokens to clear 2 Hit Points or 2 Stress for each token spent.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": true, - "key": "wUQFsRtww18naYaq", + "key": "resource", + "itemId": "wUQFsRtww18naYaq", "value": 1, + "scalable": true, "step": null, - "keyIsID": true, "consumeOnSuccess": false } ], @@ -99,16 +99,16 @@ "type": "healing", "_id": "TvF88tS5x3Yof8Q1", "systemPath": "actions", - "description": "Touch a creature and spend any number of tokens to clear 2 Hit Points or 2 Stress for each token spent.
", + "description": "Touch a creature and spend any number of tokens to clear 2 Hit Points or 2 Stress for each token spent.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": true, - "key": "wUQFsRtww18naYaq", + "key": "resource", + "itemId": "wUQFsRtww18naYaq", "value": 1, + "scalable": true, "step": 1, - "keyIsID": true, "consumeOnSuccess": false } ], @@ -181,11 +181,11 @@ "actionType": "action", "cost": [ { - "scalable": true, - "key": "wUQFsRtww18naYaq", + "key": "resource", + "itemId": "wUQFsRtww18naYaq", "value": 1, + "scalable": true, "step": null, - "keyIsID": true, "consumeOnSuccess": false } ], @@ -204,6 +204,11 @@ "img": "icons/magic/light/beam-rays-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -211,12 +216,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784502, - "modifiedTime": 1754498742091, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575854, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "wUQFsRtww18naYaq", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json index 7d580ff9..7b44c5dd 100644 --- a/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json +++ b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "znSDInMjOlFZn7Vp", "systemPath": "actions", - "description": "Make a Spellcast Roll (20). On a success, restore one creature who has been dead no longer than 100 years to full strength.
", + "description": "Make a Spellcast Roll (20). On a success, restore one creature who has been dead no longer than 100 years to full strength.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -61,7 +61,7 @@ "type": "attack", "_id": "NurXUfoPDSVptejR", "systemPath": "actions", - "description": "Then roll a d6. On a result of 5 or lower, place this card in your vault permanently. On a failure, you canβt cast Resurrection again for a week.
", + "description": "Then roll a d6. On a result of 5 or lower, place this card in your vault permanently. On a failure, you canβt cast Resurrection again for a week.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -104,6 +104,11 @@ "img": "icons/sundries/gaming/dice-runed-brown.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -111,12 +116,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784503, - "modifiedTime": 1754270120120, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429807372, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "z30ciOwQI7g3tHla", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json index 476e9534..76313434 100644 --- a/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json +++ b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json @@ -57,6 +57,11 @@ "img": "icons/magic/earth/projectile-stone-bullet-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784503, - "modifiedTime": 1754253784334, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427997569, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "vd5STqX29RpYbGxa", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json index d7c8c618..99f02f13 100644 --- a/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json +++ b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json @@ -77,6 +77,11 @@ "img": "icons/magic/life/heart-cross-strong-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784504, - "modifiedTime": 1754242078238, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429903155, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oDIZoC4l19Nli0Fj", "sort": 3400000, @@ -125,7 +130,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a bonus to your Severe threshold equal to your Proficiency.
", + "description": "Gain a bonus to your Severe threshold equal to your Proficiency.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json b/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json index 47aa96d1..99c411fe 100644 --- a/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json +++ b/src/packs/domains/domainCard_Rousing_Strike_pcbYD33rBBdAo5f9.json @@ -32,6 +32,11 @@ "img": "icons/magic/light/hand-sparks-glow-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -39,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784506, - "modifiedTime": 1754242030472, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429887417, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "pcbYD33rBBdAo5f9", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json b/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json index ea33cfcb..f84e035b 100644 --- a/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json +++ b/src/packs/domains/domainCard_Rune_Ward_GEhBUmv9Bj7oJfHk.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -47,7 +46,7 @@ "bonus": null, "advState": "neutral", "diceRolling": { - "multiplier": "prof", + "multiplier": "flat", "flatMultiplier": 1, "dice": "d8", "compare": null, @@ -64,6 +63,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-pink-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -71,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.2", "createdTime": 1753922784506, - "modifiedTime": 1754253212120, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1761502476899, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_id": "GEhBUmv9Bj7oJfHk", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json index 3f84099c..7f542794 100644 --- a/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json +++ b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -45,6 +44,11 @@ "img": "icons/environment/settlement/watchtower-moonlit-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784506, - "modifiedTime": 1754233292265, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429092085, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "lmBLMPuR8qLbuzNf", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json b/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json index 3f172c21..520f98e1 100644 --- a/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json +++ b/src/packs/domains/domainCard_Sage_Touched_VOSFaQHZbmhMyXwi.json @@ -19,11 +19,12 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "VOSFaQHZbmhMyXwi", + "key": "resource", + "itemId": "VOSFaQHZbmhMyXwi", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -54,11 +55,12 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "VOSFaQHZbmhMyXwi", + "key": "resource", + "itemId": "VOSFaQHZbmhMyXwi", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -87,6 +89,11 @@ "max": "1", "icon": "", "recovery": "shortRest" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -94,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784507, - "modifiedTime": 1754339963905, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575562, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "VOSFaQHZbmhMyXwi", "sort": 3400000, @@ -135,7 +142,7 @@ "startRound": null, "startTurn": null }, - "description": "While youβre in a natural environment, you gain a +2 bonus to your Spellcast Rolls.
", + "description": "While youβre in a natural environment, you gain a +2 bonus to your Spellcast Rolls.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -239,7 +246,7 @@ "startRound": null, "startTurn": null }, - "description": "Once per rest, you can double your Agility or Instinct when making a roll that uses that trait. You must choose to do this before you roll.
", + "description": "Once per rest, you can double your Agility or Instinct when making a roll that uses that trait. You must choose to do this before you roll.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json b/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json index 0d799f82..7009df65 100644 --- a/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json +++ b/src/packs/domains/domainCard_Salvation_Beam_4uAFGp3LxiC07woC.json @@ -14,7 +14,7 @@ "type": "healing", "_id": "dmnB4ZMSk8lsB8Lg", "systemPath": "actions", - "description": "Make a Spellcast Roll (16). On a success, mark any number of Stress to target a line of allies within Far range. You can clear Hit Points on the targets equal to the number of Stress marked, divided among them however youβd like.
", + "description": "Make a Spellcast Roll (16). On a success, mark any number of Stress to target a line of allies within Far range. You can clear Hit Points on the targets equal to the number of Stress marked, divided among them however youβd like.
@Template[type:ray|range:f]
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -23,8 +23,7 @@ "scalable": true, "key": "stress", "value": 1, - "step": null, - "keyIsID": false + "step": null } ], "uses": { @@ -87,6 +86,11 @@ "img": "icons/magic/light/beams-rays-orange-purple-large.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -94,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784508, - "modifiedTime": 1754270031835, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038941872, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "4uAFGp3LxiC07woC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json b/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json index 5ca6fc07..77b1b0c8 100644 --- a/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json +++ b/src/packs/domains/domainCard_Scramble_5bBU9jWHOuOY12lR.json @@ -33,6 +33,11 @@ "img": "icons/skills/movement/feet-winged-boots-brown.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784509, - "modifiedTime": 1754304188850, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428115458, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "5bBU9jWHOuOY12lR", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json b/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json index 07b037d6..671ffcfb 100644 --- a/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json +++ b/src/packs/domains/domainCard_Second_Wind_ffPbSEvLuFrFsMxl.json @@ -19,10 +19,10 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "ffPbSEvLuFrFsMxl", + "key": "resource", + "itemId": "ffPbSEvLuFrFsMxl", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -96,10 +96,10 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "ffPbSEvLuFrFsMxl", + "key": "resource", + "itemId": "ffPbSEvLuFrFsMxl", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -171,6 +171,11 @@ "recovery": "shortRest", "max": "1", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -178,12 +183,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784509, - "modifiedTime": 1754269533170, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575706, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "ffPbSEvLuFrFsMxl", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json b/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json index 227ab463..9e0e7f67 100644 --- a/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json +++ b/src/packs/domains/domainCard_Sensory_Projection_gZOMzskSOfeiXn54.json @@ -57,6 +57,11 @@ "img": "icons/magic/control/debuff-energy-hold-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784511, - "modifiedTime": 1754254316744, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428050507, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gZOMzskSOfeiXn54", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json b/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json index 000a1b1f..25277259 100644 --- a/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json +++ b/src/packs/domains/domainCard_Shadowbind_kguhWlidhxe2GbT0.json @@ -61,6 +61,11 @@ "img": "icons/magic/control/debuff-energy-snare-blue.webp", "range": "veryClose" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784512, - "modifiedTime": 1754499502570, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429312498, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kguhWlidhxe2GbT0", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json b/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json index 1b1639fd..b943486d 100644 --- a/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json +++ b/src/packs/domains/domainCard_Shadowhunter_A0XzD6MmBXYdk7Ps.json @@ -9,19 +9,24 @@ "recallCost": 2, "level": 8, "type": "ability", - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784513, - "modifiedTime": 1754331190370, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429396600, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "A0XzD6MmBXYdk7Ps", "sort": 3400000, @@ -50,7 +55,7 @@ "startRound": null, "startTurn": null }, - "description": "While youβre shrouded in low light or darkness, you gain a +1 bonus to your Evasion and make attack rolls with advantage.
", + "description": "While youβre shrouded in low light or darkness, you gain a +1 bonus to your Evasion and make attack rolls with advantage.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json b/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json index c4eb21a0..e3b3569c 100644 --- a/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json +++ b/src/packs/domains/domainCard_Shape_Material_db4xV3YErHRslbVE.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -42,6 +41,11 @@ "img": "icons/commodities/stone/geode-raw-white.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784514, - "modifiedTime": 1754269669897, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429726392, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "db4xV3YErHRslbVE", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json b/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json index 62c4de86..202a4e58 100644 --- a/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json +++ b/src/packs/domains/domainCard_Share_the_Burden_8nRle10pw1HO8QVu.json @@ -33,6 +33,11 @@ "img": "systems/daggerheart/assets/icons/domains/domain-card/grace.png", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -40,12 +45,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784515, - "modifiedTime": 1754499760780, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429220432, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "8nRle10pw1HO8QVu", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json b/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json index ea63ca5a..0aa37f29 100644 --- a/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json +++ b/src/packs/domains/domainCard_Shield_Aura_rfIv6lln40Fh6EIl.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -47,6 +46,11 @@ "img": "icons/magic/defensive/shield-barrier-flaming-diamond-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784516, - "modifiedTime": 1754269891393, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429770054, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "rfIv6lln40Fh6EIl", "sort": 3400000, @@ -97,7 +101,7 @@ "startRound": null, "startTurn": null }, - "description": "When the target marks an Armor Slot, they reduce the severity of the attack by an additional threshold. If this spell causes a creature who would be damaged to instead mark no Hit Points, the effect ends.
", + "description": "When the target marks an Armor Slot, they reduce the severity of the attack by an additional threshold. If this spell causes a creature who would be damaged to instead mark no Hit Points, the effect ends.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json index 2b7ccf04..cded950d 100644 --- a/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json +++ b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json @@ -23,7 +23,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -65,6 +64,11 @@ "img": "icons/magic/defensive/shield-barrier-deflect-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -72,12 +76,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784516, - "modifiedTime": 1754242112465, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429912530, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JwfhtgmmuRxg4zhI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json b/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json index cd3e81b3..edb6588b 100644 --- a/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json +++ b/src/packs/domains/domainCard_Sigil_of_Retribution_RiuN0lMlfoTAhLJz.json @@ -44,6 +44,11 @@ "img": "icons/magic/symbols/triangle-glow-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -51,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784517, - "modifiedTime": 1754232249140, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429062367, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "RiuN0lMlfoTAhLJz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json b/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json index 29ab1f5c..b429259a 100644 --- a/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json +++ b/src/packs/domains/domainCard_Signature_Move_LWRkhNY968Cu2Zl5.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 5, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784518, - "modifiedTime": 1754252482524, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428307837, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "LWRkhNY968Cu2Zl5", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json b/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json index 939fff19..1b707341 100644 --- a/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json +++ b/src/packs/domains/domainCard_Smite_U1uWJE94HZVudujz.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 3, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -40,13 +39,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Charge Smite", "img": "icons/skills/melee/sword-winged-holy-orange.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784519, - "modifiedTime": 1754498725946, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756038851464, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "U1uWJE94HZVudujz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json b/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json index 73bef395..f7520c6c 100644 --- a/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json +++ b/src/packs/domains/domainCard_Soothing_Speech_QED2PDYePOSTbLtC.json @@ -144,6 +144,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -151,12 +156,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784519, - "modifiedTime": 1754341467905, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429180273, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QED2PDYePOSTbLtC", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json b/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json index a5ba7cae..ed7ae5db 100644 --- a/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json +++ b/src/packs/domains/domainCard_Specter_of_the_Dark_iQhgqmLwhcSTYnvr.json @@ -14,7 +14,7 @@ "type": "effect", "_id": "K91pB8O1ak8fikUj", "systemPath": "actions", - "description": "Mark a Stress to become Spectral until you make an action roll targeting another creature. While Spectral, youβre immune to physical damage and can float and pass through solid objects. Other creatures can still see you while youβre in this form.
", + "description": "Mark a Stress to become Spectral until you make an action roll targeting another creature. While Spectral, youβre immune to physical damage and can float and pass through solid objects. Other creatures can still see you while youβre in this form.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -38,13 +37,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Become Spectral", "img": "icons/magic/unholy/silhouette-light-fire-blue.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784520, - "modifiedTime": 1754331335651, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038467712, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "iQhgqmLwhcSTYnvr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json b/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json index 651fe897..674316ac 100644 --- a/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json +++ b/src/packs/domains/domainCard_Spellcharge_ewhIzXQ2h9fS9I8c.json @@ -20,16 +20,17 @@ "type": "effect", "_id": "jCgZ0yCoIhSAVEw3", "systemPath": "actions", - "description": "When you make a successful attack against a target, you can spend any number of tokens to add a d6 for each token spent to your damage roll.
", + "description": "When you make a successful attack against a target, you can spend any number of tokens to add a d6 for each token spent to your damage roll.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": true, - "key": "ewhIzXQ2h9fS9I8c", + "key": "resource", + "itemId": "ewhIzXQ2h9fS9I8c", "value": 1, - "keyIsID": true, - "step": null + "scalable": true, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -46,6 +47,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -53,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784521, - "modifiedTime": 1754331207737, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575684, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "ewhIzXQ2h9fS9I8c", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json b/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json index 0772f92b..03d39a92 100644 --- a/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json +++ b/src/packs/domains/domainCard_Splendor_Touched_JT5dM3gVL6chDBYU.json @@ -8,19 +8,24 @@ "domain": "splendor", "recallCost": 2, "level": 7, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784522, - "modifiedTime": 1754268980895, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429762596, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JT5dM3gVL6chDBYU", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json b/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json index ed3d5f4c..24a0433f 100644 --- a/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json +++ b/src/packs/domains/domainCard_Splintering_Strike_TYKfM3H9vBXyWiH4.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -66,6 +65,11 @@ "img": "icons/skills/melee/strike-sword-steel-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -73,12 +77,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784522, - "modifiedTime": 1754501075258, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428367184, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "TYKfM3H9vBXyWiH4", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json b/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json index a19143c9..bb2d4eaa 100644 --- a/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json +++ b/src/packs/domains/domainCard_Stealth_Expertise_NIUhmuQGwbb3UClZ.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -40,6 +39,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -47,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784523, - "modifiedTime": 1754330848539, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429340856, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "NIUhmuQGwbb3UClZ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json b/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json index ae4ab09d..697f29cd 100644 --- a/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json +++ b/src/packs/domains/domainCard_Strategic_Approach_5b1awkgTmMp3FVrm.json @@ -27,10 +27,10 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "5b1awkgTmMp3FVrm", + "key": "resource", + "itemId": "5b1awkgTmMp3FVrm", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -50,6 +50,11 @@ "img": "icons/skills/targeting/crosshair-arrowhead-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" } }, "flags": {}, @@ -57,12 +62,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784523, - "modifiedTime": 1754501630846, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575271, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "5b1awkgTmMp3FVrm", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json b/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json index b601a08d..39fd5f6c 100644 --- a/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json +++ b/src/packs/domains/domainCard_Stunning_Sunlight_lRHo6ZkK1zybeEoG.json @@ -23,8 +23,7 @@ "scalable": true, "key": "hope", "value": 1, - "step": null, - "keyIsID": false + "step": null } ], "uses": { @@ -152,6 +151,11 @@ "img": "icons/magic/light/beam-strike-village-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" } }, "flags": {}, @@ -159,12 +163,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784524, - "modifiedTime": 1754269929319, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429776475, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "lRHo6ZkK1zybeEoG", "sort": 3400000, @@ -195,7 +199,7 @@ "startRound": null, "startTurn": null }, - "description": "Temporarily Stunned. While Stunned, they canβt use reactions and canβt take any other actions until they clear this condition.
", + "description": "Temporarily Stunned. While Stunned, they canβt use reactions and canβt take any other actions until they clear this condition.
", "tint": "#ffffff", "statuses": [ "stun" diff --git a/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json b/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json index 04c3c64c..7e0dcf37 100644 --- a/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json +++ b/src/packs/domains/domainCard_Support_Tank_stId5syX7YpP2JGz.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -40,6 +39,11 @@ "img": "icons/magic/holy/barrier-shield-winged-blue.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -47,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784525, - "modifiedTime": 1754241759840, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429875110, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "stId5syX7YpP2JGz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json b/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json index 0dc8c2c9..cc2a4a10 100644 --- a/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json +++ b/src/packs/domains/domainCard_Swift_Step_H6TqCJBaa1eWEQ1z.json @@ -146,6 +146,11 @@ "img": "icons/magic/life/cross-beam-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -153,12 +158,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784526, - "modifiedTime": 1754252518993, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428380396, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "H6TqCJBaa1eWEQ1z", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json b/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json index bcd56d25..eb3546f1 100644 --- a/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json +++ b/src/packs/domains/domainCard_Tactician_WChWEH36lUpXAC0K.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 3, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784526, - "modifiedTime": 1754249669078, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428277274, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "WChWEH36lUpXAC0K", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json b/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json index 22a7d347..cffac839 100644 --- a/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json +++ b/src/packs/domains/domainCard_Telekinesis_FgzBppvLjXr0UbUI.json @@ -131,6 +131,11 @@ "img": "icons/magic/control/energy-stream-link-spiral-blue.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 120, + "artist": "" } }, "flags": {}, @@ -138,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784527, - "modifiedTime": 1754253886885, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755428003177, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "FgzBppvLjXr0UbUI", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json b/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json index e1569b1a..9e4e39ec 100644 --- a/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json +++ b/src/packs/domains/domainCard_Teleport_HnPwVrWblYa9hwSt.json @@ -56,6 +56,11 @@ "img": "icons/magic/movement/pinwheel-turning-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 125, + "artist": "" } }, "flags": {}, @@ -63,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784528, - "modifiedTime": 1754231629691, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429045982, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HnPwVrWblYa9hwSt", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json index f25819c7..a3ceb370 100644 --- a/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json +++ b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json @@ -82,6 +82,11 @@ "img": "icons/magic/control/voodoo-doll-pain-damage-red.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -89,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784529, - "modifiedTime": 1754341185897, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429155562, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HTv9QEPS466WsstP", "sort": 3400000, @@ -123,7 +128,7 @@ "startRound": null, "startTurn": null }, - "description": "Canβt lie to you while they remain within Close range, but they are not compelled to speak. If you ask them a question and they refuse to answer, they must mark a Stress and the effect ends. The target is typically unaware this spell has been cast on them until it causes them to utter the truth.
", + "description": "Canβt lie to you while they remain within Close range, but they are not compelled to speak. If you ask them a question and they refuse to answer, they must mark a Stress and the effect ends. The target is typically unaware this spell has been cast on them until it causes them to utter the truth.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json b/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json index 71d1dc6a..b2ca4f09 100644 --- a/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json +++ b/src/packs/domains/domainCard_Tempest_X7YaZgFieBlqaPdZ.json @@ -244,6 +244,11 @@ "img": "icons/magic/air/air-wave-gust-smoke-yellow.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" } }, "flags": {}, @@ -251,12 +256,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784530, - "modifiedTime": 1754340540933, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429646639, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "X7YaZgFieBlqaPdZ", "sort": 3400000, @@ -333,7 +338,7 @@ "startRound": null, "startTurn": null }, - "description": "Targets canβt move against the wind.
", + "description": "Targets canβt move against the wind.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -377,7 +382,7 @@ "startRound": null, "startTurn": null }, - "description": "Attacks made from beyond Melee range have disadvantage.
", + "description": "Attacks made from beyond Melee range have disadvantage.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json b/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json index 6aca1471..eba9736d 100644 --- a/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json +++ b/src/packs/domains/domainCard_Thorn_Skin_oUipGK84E2KjoKqh.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -33,12 +32,12 @@ }, "effects": [], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Spend Hope", "img": "icons/magic/nature/thorns-hand-glow-green.webp", - "range": "" + "range": "self" }, "IVAyyVf8gqFWB7bP": { "type": "effect", @@ -49,11 +48,12 @@ "actionType": "action", "cost": [ { - "scalable": true, - "key": "oUipGK84E2KjoKqh", + "key": "resource", + "itemId": "oUipGK84E2KjoKqh", "value": 1, + "scalable": true, "step": 1, - "keyIsID": true + "consumeOnSuccess": false } ], "uses": { @@ -78,6 +78,11 @@ "max": "@cast", "icon": "", "dieFaces": "d6" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784531, - "modifiedTime": 1754338832102, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575772, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "oUipGK84E2KjoKqh", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json index 3717b810..0f3932d2 100644 --- a/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json +++ b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -49,7 +48,7 @@ "type": "attack", "_id": "nuYCkANsYDtZJO6f", "systemPath": "actions", - "description": "Make a Spellcast Roll against the target to delve for deeper, more hidden thoughts. On a roll with Fear, the target might, at the GMβs discretion, become aware that youβre reading their thoughts.
", + "description": "Make a Spellcast Roll against the target to delve for deeper, more hidden thoughts. On a roll with Fear, the target might, at the GMβs discretion, become aware that youβre reading their thoughts.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -91,6 +90,11 @@ "img": "icons/magic/control/fear-fright-shadow-monster-purple.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -98,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784532, - "modifiedTime": 1754341613759, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429199741, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "B4choj481tqajWb9", "sort": 3400000, @@ -134,7 +138,7 @@ "startRound": null, "startTurn": null }, - "description": "Read the vague surface thoughts of a target within Far range. Make a Spellcast Roll against the target to delve for deeper, more hidden thoughts.
", + "description": "Read the vague surface thoughts of a target within Far range. Make a Spellcast Roll against the target to delve for deeper, more hidden thoughts.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json b/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json index 4c3d2611..db7be009 100644 --- a/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json +++ b/src/packs/domains/domainCard_Through_Your_Eyes_7b0mzV5QMPjVPT4o.json @@ -37,6 +37,11 @@ "img": "icons/magic/perception/eye-slit-pink.webp", "range": "veryFar" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -44,12 +49,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784533, - "modifiedTime": 1754341493606, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429187901, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "7b0mzV5QMPjVPT4o", "sort": 3400000, @@ -80,7 +85,7 @@ "startRound": null, "startTurn": null }, - "description": "Can see through their eyes and hear through their ears.
", + "description": "Can see through their eyes and hear through their ears.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json b/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json index 124144a8..3b5a5f97 100644 --- a/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json +++ b/src/packs/domains/domainCard_Towering_Stalk_n0P3VS1WfxvmXbB6.json @@ -19,18 +19,20 @@ "actionType": "action", "cost": [ { - "scalable": false, "key": "stress", + "itemId": null, "value": 1, - "keyIsID": false, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false }, { - "scalable": false, - "key": "n0P3VS1WfxvmXbB6", + "key": "resource", + "itemId": "n0P3VS1WfxvmXbB6", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -110,7 +112,6 @@ "scalable": false, "key": "hitPoints", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -130,19 +131,24 @@ "range": "" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784534, - "modifiedTime": 1754499113867, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575741, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "n0P3VS1WfxvmXbB6", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json b/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json index 10ef5d47..ecee943e 100644 --- a/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json +++ b/src/packs/domains/domainCard_Transcendent_Union_kVkoCLBXLAIifqpz.json @@ -22,7 +22,6 @@ "scalable": false, "key": "hope", "value": 5, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -47,6 +46,11 @@ "img": "icons/magic/light/explosion-beam-impact-silhouette.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784534, - "modifiedTime": 1754240901607, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429121503, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "kVkoCLBXLAIifqpz", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json b/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json index 5bcd3482..9d8e3db8 100644 --- a/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json +++ b/src/packs/domains/domainCard_Troublemaker_JrdZedm1BFKeV7Yb.json @@ -83,6 +83,11 @@ "img": "icons/magic/control/fear-fright-monster-purple-blue.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 126, + "artist": "" } }, "flags": {}, @@ -90,12 +95,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784535, - "modifiedTime": 1754341260325, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429160838, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "JrdZedm1BFKeV7Yb", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json b/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json index c4c06be8..845d2f11 100644 --- a/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json +++ b/src/packs/domains/domainCard_Twilight_Toll_SDjjV61TC1NceV1m.json @@ -21,16 +21,17 @@ "type": "damage", "_id": "hdMFgH17KyxENDAJ", "systemPath": "actions", - "description": "When you deal damage to this target, spend any number of tokens to add a d12 for each token spent to your damage roll. You can only hold Twilight Toll on one creature at a time.When you choose a new target or take a rest, clear all unspent tokens.
", + "description": "When you deal damage to this target, spend any number of tokens to add a d12 for each token spent to your damage roll. You can only hold Twilight Toll on one creature at a time.When you choose a new target or take a rest, clear all unspent tokens.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": true, - "key": "SDjjV61TC1NceV1m", + "key": "resource", + "itemId": "SDjjV61TC1NceV1m", "value": 1, + "scalable": true, "step": 1, - "keyIsID": true + "consumeOnSuccess": false } ], "uses": { @@ -76,6 +77,11 @@ "img": "icons/commodities/gems/gem-faceted-diamond-blue.webp", "range": "far" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -83,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784535, - "modifiedTime": 1754331253303, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575478, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "SDjjV61TC1NceV1m", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json index 3d06e736..d79fa2a7 100644 --- a/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json +++ b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json @@ -56,6 +56,11 @@ "img": "icons/magic/life/heart-cross-strong-flame-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" } }, "flags": {}, @@ -63,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784536, - "modifiedTime": 1754242513278, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429961365, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "CUIQmrPjf9VCHmwJ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json b/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json index a90187c0..da019723 100644 --- a/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json +++ b/src/packs/domains/domainCard_Uncanny_Disguise_TV56wSysbU5xAlOa.json @@ -14,7 +14,7 @@ "type": "damage", "_id": "Rncq6VD6B9ugC0AO", "systemPath": "actions", - "description": "When you have a few minutes to prepare, you can mark a Stress to don the facade of any humanoid you can picture clearly in your mind. While disguised, you have advantage on Presence Rolls to avoid scrutiny.
", + "description": "When you have a few minutes to prepare, you can mark a Stress to don the facade of any humanoid you can picture clearly in your mind. While disguised, you have advantage on Presence Rolls to avoid scrutiny.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -28,7 +28,7 @@ "includeBase": false }, "target": { - "type": "any", + "type": "self", "amount": null }, "effects": [ @@ -39,7 +39,7 @@ ], "name": "Don Facade", "img": "icons/magic/control/debuff-energy-hold-pink.webp", - "range": "" + "range": "self" }, "OoNND7VcWoBQdtFK": { "type": "effect", @@ -50,11 +50,12 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "TV56wSysbU5xAlOa", + "key": "resource", + "itemId": "TV56wSysbU5xAlOa", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -77,6 +78,11 @@ "value": 0, "max": "@cast", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -84,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784537, - "modifiedTime": 1754330615594, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575516, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "TV56wSysbU5xAlOa", "sort": 3400000, @@ -127,7 +133,7 @@ "startRound": null, "startTurn": null }, - "description": "Don the facade of any humanoid you can picture clearly in your mind. While disguised, you have advantage on Presence Rolls to avoid scrutiny.
", + "description": "Don the facade of any humanoid you can picture clearly in your mind. While disguised, you have advantage on Presence Rolls to avoid scrutiny.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json index 17f934d6..32682c1e 100644 --- a/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json +++ b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json @@ -22,16 +22,16 @@ "type": "attack", "_id": "MWvrKuwejWcQm7N1", "systemPath": "actions", - "description": "Make a Spellcast Roll against a target within Far range and spend any number of tokens to channel raw energy from within yourself to unleash against them. On a success, roll a number of d10s equal to the tokens you spent and deal that much magic damage to the target.
", + "description": "Make a Spellcast Roll against a target within Far range and spend any number of tokens to channel raw energy from within yourself to unleash against them. On a success, roll a number of d10s equal to the tokens you spent and deal that much magic damage to the target.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": true, - "key": "o62i0QdbUDIiAhSq", + "key": "resource", + "itemId": "o62i0QdbUDIiAhSq", "value": 1, + "scalable": true, "step": 1, - "keyIsID": true, "consumeOnSuccess": false } ], @@ -113,7 +113,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -126,13 +125,18 @@ }, "effects": [], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Replenish Tokens", "img": "icons/commodities/gems/gem-faceted-diamond-blue.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -140,12 +144,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753922784537, - "modifiedTime": 1754501257508, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575757, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_id": "o62i0QdbUDIiAhSq", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json index 89b4cbee..548f9eee 100644 --- a/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json +++ b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json @@ -8,19 +8,24 @@ "domain": "bone", "recallCost": 1, "level": 1, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 122, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784538, - "modifiedTime": 1754249654207, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428252550, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9QElncQUDSakuSdR", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json b/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json index a5b3ed83..2c991d8d 100644 --- a/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json +++ b/src/packs/domains/domainCard_Unyielding_Armor_s3zRsOMeUkuDwgd8.json @@ -8,19 +8,24 @@ "domain": "valor", "recallCost": 1, "level": 10, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 135, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784538, - "modifiedTime": 1754242525301, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429967098, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "s3zRsOMeUkuDwgd8", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json b/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json index ec66bbd6..8ff2e41a 100644 --- a/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json +++ b/src/packs/domains/domainCard_Valor_Touched_k1AtYd3lSchIymBr.json @@ -77,6 +77,11 @@ "img": "icons/equipment/chest/breastplate-collared-steel-grey.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 134, + "artist": "" } }, "flags": {}, @@ -84,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784539, - "modifiedTime": 1754242143242, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429918794, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "k1AtYd3lSchIymBr", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json b/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json index 1d9e2108..2e2cb5a0 100644 --- a/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json +++ b/src/packs/domains/domainCard_Vanishing_Dodge_GBMIElIpk4cvk1Bd.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -38,13 +37,18 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Vanish", "img": "icons/magic/perception/shadow-stealth-eyes-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 129, + "artist": "" } }, "flags": {}, @@ -52,12 +56,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784539, - "modifiedTime": 1754331169719, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038425727, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "GBMIElIpk4cvk1Bd", "sort": 3400000, @@ -88,7 +92,7 @@ "startRound": null, "startTurn": null }, - "description": "Envelop yourself in shadow, becoming Hidden and teleporting to a point within Close range of the attacker. You remain Hidden until the next time you make an action roll.
", + "description": "Envelop yourself in shadow, becoming Hidden and teleporting to a point within Close range of the attacker. You remain Hidden until the next time you make an action roll.
", "tint": "#ffffff", "statuses": [ "hidden" diff --git a/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json b/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json index 917c2e93..9c34b557 100644 --- a/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json +++ b/src/packs/domains/domainCard_Veil_of_Night_gV4L5ZZmfPrEbIDh.json @@ -14,7 +14,7 @@ "type": "attack", "_id": "br6UQ0toK4ZYpP2s", "systemPath": "actions", - "description": "Make a Spellcast Roll (13). On a success, you can create a temporary curtain of darkness between two points within Far range. Only you can see through this darkness. Youβre considered Hidden to adversaries on the other side of the veil, and you have advantage on attacks you make through the darkness. The veil remains until you cast another spell.
", + "description": "Make a Spellcast Roll (13). On a success, you can create a temporary curtain of darkness between two points within Far range. Only you can see through this darkness. Youβre considered Hidden to adversaries on the other side of the veil, and you have advantage on attacks you make through the darkness. The veil remains until you cast another spell.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -28,7 +28,7 @@ "includeBase": false }, "target": { - "type": "any", + "type": "self", "amount": null }, "effects": [ @@ -59,8 +59,13 @@ }, "name": "Cast", "img": "icons/magic/unholy/barrier-shield-glowing-pink.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 128, + "artist": "" } }, "flags": {}, @@ -68,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753922784541, - "modifiedTime": 1754173368653, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756038378309, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_id": "gV4L5ZZmfPrEbIDh", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json b/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json index c8134c0c..21f92663 100644 --- a/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json +++ b/src/packs/domains/domainCard_Versatile_Fighter_wQ53ImDswEHv5SGQ.json @@ -22,7 +22,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,6 +41,11 @@ "img": "icons/magic/control/silhouette-aura-energy.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784541, - "modifiedTime": 1754304293769, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428120598, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "wQ53ImDswEHv5SGQ", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json b/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json index cedcec36..c78bebca 100644 --- a/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json +++ b/src/packs/domains/domainCard_Vicious_Entangle_qvpvTnkAoRn9vYO4.json @@ -97,7 +97,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -123,6 +122,11 @@ "img": "icons/commodities/gems/gem-faceted-octagon-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 130, + "artist": "" } }, "flags": {}, @@ -130,12 +134,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784541, - "modifiedTime": 1754338467256, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429474482, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "qvpvTnkAoRn9vYO4", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json b/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json index 3e41ae1a..bd413bda 100644 --- a/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json +++ b/src/packs/domains/domainCard_Vitality_sWUlSPOJEaXyQLCj.json @@ -46,6 +46,11 @@ "img": "systems/daggerheart/assets/icons/domains/domain-card/blade.png", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -53,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784542, - "modifiedTime": 1754304501280, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428142811, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "sWUlSPOJEaXyQLCj", "sort": 3400000, @@ -80,7 +85,7 @@ }, "changes": [ { - "key": "system.resources.hitPoints", + "key": "system.resources.hitPoints.max", "mode": 2, "value": "1", "priority": null @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754245866724, - "modifiedTime": 1754246004543, - "lastModifiedBy": "l5jB3XmcVXOTQpRZ" + "modifiedTime": 1761502808129, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items.effects!sWUlSPOJEaXyQLCj.1jtgIyFvDpTb0asZ" }, @@ -131,7 +136,7 @@ }, "changes": [ { - "key": "system.resources.stress", + "key": "system.resources.stress.max", "mode": 2, "value": "1", "priority": null @@ -156,12 +161,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754245912530, - "modifiedTime": 1754245972468, - "lastModifiedBy": "l5jB3XmcVXOTQpRZ" + "modifiedTime": 1761502816888, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items.effects!sWUlSPOJEaXyQLCj.vj9rm1tLqqsSFOXF" }, diff --git a/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json b/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json index 481caddf..cea3e78c 100644 --- a/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json +++ b/src/packs/domains/domainCard_Voice_of_Reason_t3RRGH6mMYYJJCcF.json @@ -8,19 +8,24 @@ "domain": "splendor", "recallCost": 1, "level": 3, - "type": "ability" + "type": "ability", + "attribution": { + "source": "Daggerheart SRD", + "page": 132, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784542, - "modifiedTime": 1754268954870, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429699193, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "t3RRGH6mMYYJJCcF", "sort": 3400000, @@ -62,7 +67,7 @@ "startRound": null, "startTurn": null }, - "description": "You have advantage on action rolls to de-escalate violent situations or convince someone to follow your lead.
", + "description": "You have advantage on action rolls to de-escalate violent situations or convince someone to follow your lead.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -113,7 +118,7 @@ "startRound": null, "startTurn": null }, - "description": "When all of your Stress slots are marked, you gain a +1 bonus to your Proficiency for damage rolls.
", + "description": "When all of your Stress slots are marked, you gain a +1 bonus to your Proficiency for damage rolls.
", "origin": null, "tint": "#ffffff", "transfer": true, diff --git a/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json b/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json index e4c48b0e..da6de1a7 100644 --- a/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json +++ b/src/packs/domains/domainCard_Wall_Walk_1ROT08E1UVBwHLAS.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -47,6 +46,11 @@ "img": "icons/creatures/invertebrates/spider-pink-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 119, + "artist": "" } }, "flags": {}, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784543, - "modifiedTime": 1754253399849, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755427927041, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1ROT08E1UVBwHLAS", "sort": 3400000, @@ -90,7 +94,7 @@ "startRound": null, "startTurn": null }, - "description": "Can climb on walls and ceilings as easily as walking on the ground.Β This lasts until the end of the scene or you cast Wall Walk again.
", + "description": "Can climb on walls and ceilings as easily as walking on the ground.Β This lasts until the end of the scene or you cast Wall Walk again.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json b/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json index a6013aa6..14dc5fc9 100644 --- a/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json +++ b/src/packs/domains/domainCard_Whirlwind_anO0arioUy7I5zBg.json @@ -19,7 +19,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -42,6 +41,11 @@ "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 121, + "artist": "" } }, "flags": {}, @@ -49,12 +53,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784545, - "modifiedTime": 1754304354572, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428093764, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "anO0arioUy7I5zBg", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json b/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json index 69bc5bc8..cfe14983 100644 --- a/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json +++ b/src/packs/domains/domainCard_Wild_Fortress_9dFvcM1i3bxG3BSA.json @@ -23,7 +23,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -71,6 +70,11 @@ "value": 0, "max": "3", "icon": "" + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -78,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784546, - "modifiedTime": 1754339127606, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429562599, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9dFvcM1i3bxG3BSA", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json b/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json index 269139cf..11fcf48e 100644 --- a/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json +++ b/src/packs/domains/domainCard_Wild_Surge_DjnKlZQYaWdQGKcK.json @@ -28,7 +28,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -46,6 +45,11 @@ "img": "icons/magic/control/debuff-energy-hold-levitate-green.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 131, + "artist": "" } }, "flags": {}, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784547, - "modifiedTime": 1754499199811, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429591650, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "DjnKlZQYaWdQGKcK", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json index b1e6aaa2..fd0932b7 100644 --- a/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json +++ b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json @@ -87,6 +87,11 @@ "img": "icons/skills/melee/strike-axe-energy-pink.webp", "range": "melee" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 127, + "artist": "" } }, "flags": {}, @@ -94,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784548, - "modifiedTime": 1754341685992, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755429205496, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZjAdi1FSNCDDHI3X", "sort": 3400000, @@ -130,7 +135,7 @@ "startRound": null, "startTurn": null }, - "description": "The target must make an attack against another adversary instead of against you or your allies. Once this attack is over, the target realizes what happened. The next time you cast Words of Discord on them, gain a β5 penalty to the Spellcast Roll.
", + "description": "The target must make an attack against another adversary instead of against you or your allies. Once this attack is over, the target realizes what happened. The next time you cast Words of Discord on them, gain a β5 penalty to the Spellcast Roll.
", "tint": "#ffffff", "statuses": [], "sort": 0, diff --git a/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json index 76b17134..30e8cb4e 100644 --- a/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json +++ b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json @@ -57,6 +57,11 @@ "img": "icons/skills/melee/sword-engraved-glow-purple.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 123, + "artist": "" } }, "flags": {}, @@ -64,12 +69,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784549, - "modifiedTime": 1754252503293, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755428352791, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "9DwSxHoUwl8Kxj3n", "sort": 3400000, diff --git a/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json b/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json index c712284d..2c1c0bfc 100644 --- a/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json +++ b/src/packs/domains/domainCard_Zone_of_Protection_lOZaRb4fCVgQsWB5.json @@ -4,7 +4,7 @@ "type": "domainCard", "folder": "OwsbTSWzKq2WJmQN", "system": { - "description": "Make a Spellcast Roll (16). Once per long rest on a success, choose a point within Far range and create a visible zone of protection there for all allies within Very Close range of that point. When you do, place a d6 on this card with the 1 value facing up. When an ally in this zone takes damage, they reduce it by the dieβs value. You then increase the dieβs value by one. When the dieβs value would exceed 6, this effect ends.
@Template[type:emanation|range:vc]
", + "description": "Make a Spellcast Roll (16). Once per long rest on a success, choose a point within Far range and create a visible zone of protection there for all allies within Very Close range of that point. When you do, place a d6 on this card with the 1 value facing up. When an ally in this zone takes damage, they reduce it by the dieβs value. You then increase the dieβs value by one. When the dieβs value would exceed 6, this effect ends.
@Template[type:emanation|range:vc]
", "domain": "splendor", "recallCost": 2, "level": 6, @@ -58,19 +58,24 @@ "range": "far" } }, - "resource": null + "resource": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 133, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784549, - "modifiedTime": 1754498786877, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755429748542, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "lOZaRb4fCVgQsWB5", "sort": 3400000, diff --git a/src/packs/domains/folders_Splendor_TL1TutmbeCVJ06nR.json b/src/packs/domains/folders_Splendor_TL1TutmbeCVJ06nR.json index c0870ecf..87cc7469 100644 --- a/src/packs/domains/folders_Splendor_TL1TutmbeCVJ06nR.json +++ b/src/packs/domains/folders_Splendor_TL1TutmbeCVJ06nR.json @@ -6,18 +6,18 @@ "sorting": "m", "_id": "TL1TutmbeCVJ06nR", "description": "", - "sort": 800000, + "sort": 900000, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1748717133557, - "modifiedTime": 1752681441081, - "lastModifiedBy": "YNJ4HgHtFrTI89mx" + "modifiedTime": 1756038952388, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!folders!TL1TutmbeCVJ06nR" } diff --git a/src/packs/domains/folders_Valor_yPVeShe47ETIqs9q.json b/src/packs/domains/folders_Valor_yPVeShe47ETIqs9q.json index 0a65d51f..f6361e50 100644 --- a/src/packs/domains/folders_Valor_yPVeShe47ETIqs9q.json +++ b/src/packs/domains/folders_Valor_yPVeShe47ETIqs9q.json @@ -6,18 +6,18 @@ "sorting": "m", "_id": "yPVeShe47ETIqs9q", "description": "", - "sort": 900000, + "sort": 800000, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1748717138700, - "modifiedTime": 1752681443619, - "lastModifiedBy": "YNJ4HgHtFrTI89mx" + "modifiedTime": 1756038952388, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!folders!yPVeShe47ETIqs9q" } diff --git a/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json b/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json index 1f1d5722..9e855978 100644 --- a/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json +++ b/src/packs/environments/environment_Abandoned_Grove_pGEdzdLkqYtBhxnG.json @@ -1,6 +1,6 @@ { "name": "Abandoned Grove", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -27,19 +27,24 @@ "tier": 1, "description": "A former druidic grove lying fallow and fully reclaimed by nature.
", "type": "exploration", - "impulses": "Draw in the curious, echo the past" + "impulses": "Draw in the curious, echo the past", + "attribution": { + "source": "Daggerheart SRD", + "page": 103, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784553, - "modifiedTime": 1754208922163, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890228, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "pGEdzdLkqYtBhxnG", "sort": 3400000, @@ -55,7 +60,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "AbominationVaults.webp", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json index a705fa2d..7135bd42 100644 --- a/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json +++ b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json @@ -1,6 +1,6 @@ { "name": "Ambushed", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -10,19 +10,24 @@ "tier": 1, "description": "An ambush is set to catch an unsuspecting party off-guard.
", "type": "event", - "impulses": "Overwhelm, scatter, surround" + "impulses": "Overwhelm, scatter, surround", + "attribution": { + "source": "Daggerheart SRD", + "page": 103, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784553, - "modifiedTime": 1754211171895, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890231, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uGEdNYERCTJBEjc5", "sort": 3400000, @@ -38,7 +43,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json index 3a8e3092..4efb6b52 100644 --- a/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json +++ b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json @@ -1,6 +1,6 @@ { "name": "Ambushers", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -10,19 +10,24 @@ "tier": 1, "description": "An ambush is set by the PCs to catch unsuspecting adversaries off-guard.
", "type": "event", - "impulses": "Escape, group up, protect the most vulnerable" + "impulses": "Escape, group up, protect the most vulnerable", + "attribution": { + "source": "Daggerheart SRD", + "page": 103, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784554, - "modifiedTime": 1754211550898, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890234, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "uXZpebPR77YQ1oXI", "sort": 3400000, @@ -38,7 +43,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -178,7 +183,6 @@ "scalable": false, "key": "fear", "value": 2, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json b/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json index a1949373..5683f6f5 100644 --- a/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json +++ b/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json @@ -1,6 +1,6 @@ { "name": "Burning Heart of the Woods", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "MfrIkJK12PAEfbPL", "system": { @@ -32,19 +32,24 @@ "tier": 3, "description": "Thick indigo ash fills the air around a towering moss-covered tree that burns eternally with flames a sickly shade of blue.
", "type": "exploration", - "impulses": "Beat out an uncanny rhythm for all to follow, corrupt the woods" + "impulses": "Beat out an uncanny rhythm for all to follow, corrupt the woods", + "attribution": { + "source": "Daggerheart SRD", + "page": 108, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784554, - "modifiedTime": 1754218065764, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890258, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "oY69NN4rYxoRE4hl", "sort": 3400000, @@ -60,7 +65,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json index f68ad8fd..11b458c1 100644 --- a/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json +++ b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json @@ -1,6 +1,6 @@ { "name": "Bustling Marketplace", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -25,19 +25,24 @@ "tier": 1, "description": "The economic heart of the settlement, with local artisans, traveling merchants, and patrons across social classes.
", "type": "social", - "impulses": "Buy low, and sell high, tempt and tantalize with wares from near and far" + "impulses": "Buy low, and sell high, tempt and tantalize with wares from near and far", + "attribution": { + "source": "Daggerheart SRD", + "page": 104, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784554, - "modifiedTime": 1754212085334, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890236, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "HZKA7hkej7JJY503", "sort": 3400000, @@ -53,7 +58,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json index 1739e6bd..88d9096e 100644 --- a/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json +++ b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json @@ -1,6 +1,6 @@ { "name": "Castle Siege", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "MfrIkJK12PAEfbPL", "system": { @@ -29,19 +29,24 @@ "tier": 3, "description": "An active siege with an attacking force fighting to gain entry to a fortified castle.
", "type": "event", - "impulses": "Bleed out the will to fi ght, breach the walls, build tension" + "impulses": "Bleed out the will to fi ght, breach the walls, build tension", + "attribution": { + "source": "Daggerheart SRD", + "page": 109, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784555, - "modifiedTime": 1754218654354, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890261, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "1eZ32Esq7rfZOjlu", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json index fe3f3349..a2947aa3 100644 --- a/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json +++ b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json @@ -1,6 +1,6 @@ { "name": "Chaos Realm", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -19,19 +19,24 @@ "tier": 4, "description": "An otherworldly space where the laws of reality are unstable and dangerous.
", "type": "traversal", - "impulses": "Annihilate certainty, consume power, defy logic" + "impulses": "Annihilate certainty, consume power, defy logic", + "attribution": { + "source": "Daggerheart SRD", + "page": 110, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784556, - "modifiedTime": 1754219630584, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890266, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "2Z1mKc65LxNk2PqR", "sort": 3400000, @@ -47,7 +52,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -146,7 +151,7 @@ "type": "damage", "_id": "hli84bleKqYoU7YL", "systemPath": "actions", - "description": "On a failure, a PC must mark a Stress in addition to the rollβs other consequences.
", + "description": "On a failure, a PC must mark a Stress in addition to the rollβs other consequences.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -366,7 +371,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], @@ -481,7 +485,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json index 67a6e7ea..ab8daf7d 100644 --- a/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json +++ b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json @@ -1,6 +1,6 @@ { "name": "Cliffside Ascent", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -20,19 +20,24 @@ "tier": 1, "description": "A steep, rocky cliffside tall enough to make traversal dangerous.
", "type": "traversal", - "impulses": "Cast the unready down to a rocky doom, draw people in with promise of what lies at the top" + "impulses": "Cast the unready down to a rocky doom, draw people in with promise of what lies at the top", + "attribution": { + "source": "Daggerheart SRD", + "page": 104, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784557, - "modifiedTime": 1754212638870, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890238, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "LPpfdlNKqiZIl04w", "sort": 3400000, @@ -48,7 +53,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -450,7 +455,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json index a1d1ed38..ded1d14f 100644 --- a/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json +++ b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json @@ -1,6 +1,6 @@ { "name": "Cult Ritual", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -20,19 +20,24 @@ "tier": 2, "description": "A Fallen cult assembles around a sigil of the defeated gods and a bonfire that burns a sickly shade of green.
", "type": "event", - "impulses": "Profane the land, unite the Mortal Realm with the Circles Below" + "impulses": "Profane the land, unite the Mortal Realm with the Circles Below", + "attribution": { + "source": "Daggerheart SRD", + "page": 106, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784557, - "modifiedTime": 1754215595854, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890248, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "QAXXiOKBDmCTauHD", "sort": 3400000, @@ -48,7 +53,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json index c0b9e8e8..38821a59 100644 --- a/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json +++ b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json @@ -1,6 +1,6 @@ { "name": "Divine Usurpation", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -21,19 +21,24 @@ "tier": 4, "description": "A massive ritual designed to breach the gates of the Hallows Above and unseat the New Gods themselves.
", "type": "event", - "impulses": "Collect power, overawe, silence dissent" + "impulses": "Collect power, overawe, silence dissent", + "attribution": { + "source": "Daggerheart SRD", + "page": 110, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784558, - "modifiedTime": 1754220432059, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890271, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "4DLYez7VbMCFDAuZ", "sort": 3400000, @@ -49,7 +54,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -267,7 +272,6 @@ "scalable": false, "key": "fear", "value": 2, - "keyIsID": false, "step": null } ], @@ -331,7 +335,6 @@ "scalable": false, "key": "fear", "value": 3, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json index 745414dc..8ae4134d 100644 --- a/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json +++ b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json @@ -1,6 +1,6 @@ { "name": "Hallowed Temple", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -19,19 +19,24 @@ "tier": 2, "description": "A bustling but well-kept temple that provides healing and hosts regular services, overseen by a priest or seraph.
", "type": "social", - "impulses": "Connect the Mortal Realm with the Hallows Above, display the power of the divine, provide aid and succor to the faithful" + "impulses": "Connect the Mortal Realm with the Hallows Above, display the power of the divine, provide aid and succor to the faithful", + "attribution": { + "source": "Daggerheart SRD", + "page": 107, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784558, - "modifiedTime": 1754216032747, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890251, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "dsA6j69AnaJhUyqH", "sort": 3400000, @@ -47,7 +52,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -374,7 +379,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json index 11c98e66..0653ae50 100644 --- a/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json +++ b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json @@ -1,6 +1,6 @@ { "name": "Haunted City", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -19,19 +19,24 @@ "tier": 2, "description": "An abandoned city populated by the restless spirits of eras past.
", "type": "exploration", - "impulses": "Misdirect and disorient, replay apocalypses both public and personal" + "impulses": "Misdirect and disorient, replay apocalypses both public and personal", + "attribution": { + "source": "Daggerheart SRD", + "page": 107, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784559, - "modifiedTime": 1754216926766, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890253, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "OzYbizKraK92FDiI", "sort": 3400000, @@ -47,7 +52,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json index ab2c1ef8..bbf23666 100644 --- a/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json +++ b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json @@ -1,6 +1,6 @@ { "name": "Imperial Court", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "IKumu5HTLqONLYqb", "system": { @@ -21,19 +21,24 @@ "tier": 4, "description": "The majestic domain of a powerful empire, lavishly appointed with stolen treasures.
", "type": "social", - "impulses": "Justify and perpetuate imperial rule, seduce rivals with promises of power and comfort" + "impulses": "Justify and perpetuate imperial rule, seduce rivals with promises of power and comfort", + "attribution": { + "source": "Daggerheart SRD", + "page": 111, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784559, - "modifiedTime": 1754220962410, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890268, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "jr1xAoXzVwVblzxI", "sort": 3400000, @@ -49,7 +54,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -222,7 +227,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], @@ -415,7 +419,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json index cb440aab..1bc1c17f 100644 --- a/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json +++ b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json @@ -1,6 +1,6 @@ { "name": "Local Tavern", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -33,19 +33,24 @@ "tier": 1, "description": "A lively tavern that serves as the social hub for its town.
", "type": "social", - "impulses": "Provide opportunities for adventurers, nurture community" + "impulses": "Provide opportunities for adventurers, nurture community", + "attribution": { + "source": "Daggerheart SRD", + "page": 105, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784561, - "modifiedTime": 1754213299544, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890240, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "cM4X81DOyvxNIi52", "sort": 3400000, @@ -61,7 +66,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, diff --git a/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json index e2a31c41..bb538c95 100644 --- a/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json +++ b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json @@ -1,6 +1,6 @@ { "name": "Mountain Pass", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "XMeecO3IRvu5ck6F", "system": { @@ -27,19 +27,24 @@ "tier": 2, "description": "Stony peaks that pierce the clouds, with a twisting path winding its way up and over through many switchbacks.
", "type": "traversal", - "impulses": "Exact a chilling toll in supplies and stamina, reveal magical tampering, slow down travel" + "impulses": "Exact a chilling toll in supplies and stamina, reveal magical tampering, slow down travel", + "attribution": { + "source": "Daggerheart SRD", + "page": 108, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784562, - "modifiedTime": 1754217303533, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890256, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "acMu9wJrMZZzLSTJ", "sort": 3400000, @@ -55,7 +60,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -177,7 +182,7 @@ "_key": "!actors.items!acMu9wJrMZZzLSTJ.cIAMenvMXHPTpOFn" }, { - "name": "Avalance", + "name": "Avalanche", "type": "feature", "system": { "description": "Spend a Fear to carve the mountain with an icy torrent, causing an avalanche. All PCs in its path must succeed on an Agility or Strength Reaction Roll or be bowled over and carried down the mountain. A PC using rope, pitons, or other climbing gear gains advantage on this roll. Targets who fail are knocked down the mountain to Far range, take 2d20 physical damage, and must mark a Stress. Targets who succeed must mark a Stress.
How do the PCs try to weather the avalanche? What approach do the characters take to fi nd one another when their companions go hurtling down the mountainside?
A dusty crypt with a library, twisting corridors, and abundant sarcophagi, spattered with the blood of ill-fated invaders.
", "type": "exploration", - "impulses": "Confound intruders, delve into secrets best left buried, manifest unlife, unleash a tide of undead" + "impulses": "Confound intruders, delve into secrets best left buried, manifest unlife, unleash a tide of undead", + "attribution": { + "source": "Daggerheart SRD", + "page": 111, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784563, - "modifiedTime": 1754221404218, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890275, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "h3KyRL7AshhLAmcH", "sort": 3400000, @@ -46,7 +51,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -457,7 +462,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json index 8e58b6a8..82bf42e3 100644 --- a/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json +++ b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json @@ -1,6 +1,6 @@ { "name": "Outpost Town", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -29,19 +29,24 @@ "tier": 1, "description": "A small town on the outskirts of a nation or region, close to a dungeon, tombs, or other adventuring destinations.
", "type": "social", - "impulses": "Drive the desperate to certain doom, profi t off of ragged hope" + "impulses": "Drive the desperate to certain doom, profi t off of ragged hope", + "attribution": { + "source": "Daggerheart SRD", + "page": 105, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784564, - "modifiedTime": 1754213845896, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890243, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "YezryR32uo39xRxW", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -296,7 +301,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json index 3db3d3b6..9c86d63d 100644 --- a/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json +++ b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json @@ -1,6 +1,6 @@ { "name": "Pitched Battle", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "MfrIkJK12PAEfbPL", "system": { @@ -29,19 +29,24 @@ "tier": 3, "description": "A massive combat between two large groups of armed combatants.
", "type": "event", - "impulses": "Seize people, land, and wealth, spill blood for greed and glory" + "impulses": "Seize people, land, and wealth, spill blood for greed and glory", + "attribution": { + "source": "Daggerheart SRD", + "page": 109, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784565, - "modifiedTime": 1754219040722, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890264, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "EWD3ZsLoK6VMVOf7", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -230,7 +235,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json index 211c619a..79c89611 100644 --- a/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json +++ b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json @@ -1,6 +1,6 @@ { "name": "Raging River", - "img": "icons/svg/mystery-man.svg", + "img": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "type": "environment", "folder": "GQ0VnOLrKBIHR6Us", "system": { @@ -29,19 +29,24 @@ "tier": 1, "description": "A swift-moving river without a bridge crossing, deep enough to sweep away most people.
", "type": "traversal", - "impulses": "Bar crossing, carry away the unready, divide the land" + "impulses": "Bar crossing, carry away the unready, divide the land", + "attribution": { + "source": "Daggerheart SRD", + "page": 106, + "artist": "" + } }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753922784565, - "modifiedTime": 1754214189395, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755389890245, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "t4cdqTfzcqP3H1vJ", "sort": 3400000, @@ -57,7 +62,7 @@ "width": 1, "height": 1, "texture": { - "src": "icons/svg/mystery-man.svg", + "src": "systems/daggerheart/assets/icons/documents/actors/forest.svg", "anchorX": 0.5, "anchorY": 0.5, "offsetX": 0, @@ -220,7 +225,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], @@ -387,7 +391,6 @@ "scalable": false, "key": "fear", "value": 1, - "keyIsID": false, "step": null } ], diff --git a/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json index 96a2edd7..c5155cb4 100644 --- a/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json +++ b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 13, "severe": 31 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807810859, - "modifiedTime": 1753807844642, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431740693, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LzLOJ9EVaHWAjoq9" } diff --git a/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json index 4d97b8bb..4946d733 100644 --- a/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json +++ b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 15, "severe": 35 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809204693, - "modifiedTime": 1753809243349, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431745995, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!crIbCb9NZ4K0VpoU" } diff --git a/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json index 032ebe6d..74ea9cf7 100644 --- a/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json +++ b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 9, "severe": 23 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807704469, - "modifiedTime": 1753807740230, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431751044, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!epkAmlZVk7HOfUUT" } diff --git a/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json index ef9d64f9..2c2699a6 100644 --- a/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json +++ b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 11, "severe": 27 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807744573, - "modifiedTime": 1753807795515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431757894, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!itSOp2GCyem0f7oM" } diff --git a/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json index fb4bad0e..a3d805ed 100644 --- a/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json +++ b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 11, "severe": 27 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807855787, - "modifiedTime": 1753807887685, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431768795, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WuoVwZA53XRAIt6d" } diff --git a/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json index 60521ffc..2c4d0b5b 100644 --- a/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json +++ b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 16, "severe": 39 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808752024, - "modifiedTime": 1753808787752, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431763662, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mNN6pvcsS10ChrWF" } diff --git a/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json index f7d07f32..2c2df8c9 100644 --- a/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json +++ b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 7, "severe": 15 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805286605, - "modifiedTime": 1753805329039, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431648072, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!haULhuEg37zUUvhb" } diff --git a/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json index 3d795985..efae1b77 100644 --- a/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json +++ b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809433880, - "modifiedTime": 1753809460722, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431807296, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vMJxEWz1srfwMsoj" } diff --git a/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json index 52002171..1e690af7 100644 --- a/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json +++ b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json @@ -23,7 +23,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -56,6 +55,11 @@ "baseThresholds": { "major": 11, "severe": 27 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -69,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807902750, - "modifiedTime": 1753809495490, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431776878, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mdQ69eFHyAQUDmE7" } diff --git a/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json index 9a6b1baa..c90ff961 100644 --- a/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json +++ b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json @@ -16,11 +16,12 @@ "img": "icons/magic/time/hourglass-brown-orange.webp", "cost": [ { - "key": "armorSlot", + "key": "resource", + "itemId": "armorSlot", "value": 1, - "keyIsID": false, "scalable": false, - "step": null + "step": null, + "consumeOnSuccess": false } ], "roll": { @@ -80,6 +81,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -93,12 +99,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753809264956, - "modifiedTime": 1753809422818, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1756325575974, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_key": "!items!hAY6UgdGT7dj22Pr" } diff --git a/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json index 0825a7a1..8a395b4a 100644 --- a/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json +++ b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 9, "severe": 21 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805557786, - "modifiedTime": 1753805605453, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431672675, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Q6LxmtFetDDkoZVZ" } diff --git a/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json index 3c471a93..2dfb8b29 100644 --- a/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json +++ b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json @@ -79,6 +79,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -94,10 +99,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753809470138, - "modifiedTime": 1754853048367, - "lastModifiedBy": "7zAk0CoP90J7ebn0" + "modifiedTime": 1755431817865, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bcQUh4QG3qFX0Vx6" } diff --git a/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json index 73ecfc96..7b2820b4 100644 --- a/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json +++ b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 15, "severe": 40 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809653710, - "modifiedTime": 1753809691935, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431822964, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7emTSt6nhZuTlvt5" } diff --git a/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json index 4b45cf7e..14d9257d 100644 --- a/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json +++ b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 8, "severe": 17 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805338471, - "modifiedTime": 1753805365355, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431655405, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!UdUJNa31WxFW2noa" } diff --git a/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json index c51838e0..c02ddd6f 100644 --- a/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json +++ b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 5, "severe": 11 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753804995685, - "modifiedTime": 1753805399875, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431660555, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yJFp1bfpecDcStVK" } diff --git a/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json index 85dd7864..efb272fe 100644 --- a/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json +++ b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json @@ -72,6 +72,11 @@ "baseThresholds": { "major": 9, "severe": 21 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -85,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805616349, - "modifiedTime": 1753807254838, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431677692, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dvyQeUVRLc9y6rnt" } diff --git a/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json index 62648557..e39f7ebf 100644 --- a/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json +++ b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 11, "severe": 24 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805490635, - "modifiedTime": 1753805512828, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431684575, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!K5WkjS0NGqHYmhU3" } diff --git a/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json index 7e5e36df..3d2355fc 100644 --- a/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json +++ b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 13, "severe": 28 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805522506, - "modifiedTime": 1753805544375, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431689873, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9f7RozpPTqrzJS1m" } diff --git a/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json index 8c6a8f2c..b16a0219 100644 --- a/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json +++ b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 7, "severe": 16 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805377869, - "modifiedTime": 1753805418921, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431695440, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jphnMZjnS2FkOH3s" } diff --git a/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json index 4d225093..9794cf70 100644 --- a/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json +++ b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 9, "severe": 20 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805428821, - "modifiedTime": 1753805482906, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431701475, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!t91M61pSCMKStTNt" } diff --git a/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json index 71ad95a9..4fa628b4 100644 --- a/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json +++ b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 9, "severe": 20 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [ @@ -90,12 +95,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807283589, - "modifiedTime": 1753807455497, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431706974, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tzZntboNtHL5C6VM" } diff --git a/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json index 1d87a030..32e577c0 100644 --- a/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json +++ b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 6, "severe": 13 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753805219679, - "modifiedTime": 1753805275427, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431666089, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nibfdNtp2PtxvbVz" } diff --git a/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json index 1192b4d5..b61b613c 100644 --- a/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json +++ b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 15, "severe": 40 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809118507, - "modifiedTime": 1753809151454, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431827865, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EsIN5OLKe9ZYFNXZ" } diff --git a/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json index 5b2d4a97..1459709a 100644 --- a/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json +++ b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 17, "severe": 44 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809163051, - "modifiedTime": 1753809225793, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431832881, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SXWjUR2aUR6bYvdl" } diff --git a/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json index e05e5f32..7b425421 100644 --- a/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json +++ b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 11, "severe": 32 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809031184, - "modifiedTime": 1753809064934, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431838049, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!c6tMXz4rPf9ioQrf" } diff --git a/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json index 9dc82529..c456bc79 100644 --- a/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json +++ b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json @@ -18,6 +18,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -31,12 +36,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809078323, - "modifiedTime": 1753809106203, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431845786, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Tptgl5WOj76TyFn7" } diff --git a/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json index 0cc3415d..ed64499f 100644 --- a/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json +++ b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 16, "severe": 39 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808797896, - "modifiedTime": 1753808820623, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431781312, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AQzU2RsqS5V5bd1v" } diff --git a/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json index a0cb99f1..48eb7fde 100644 --- a/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json +++ b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json @@ -48,6 +48,11 @@ "baseThresholds": { "major": 11, "severe": 23 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -61,12 +66,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807654078, - "modifiedTime": 1753807692793, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431712574, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tN8kAeBvNKM3EBFo" } diff --git a/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json index 33fef2f5..0de3a7f9 100644 --- a/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json +++ b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -56,6 +55,11 @@ "baseThresholds": { "major": 17, "severe": 43 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -69,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808832397, - "modifiedTime": 1753809018449, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431788295, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!P4qAEDJUoNLgVRsA" } diff --git a/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json index df5cb28f..52aa1978 100644 --- a/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json +++ b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -56,6 +55,11 @@ "baseThresholds": { "major": 9, "severe": 20 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -69,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807528637, - "modifiedTime": 1753808232404, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431718527, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tHlBUDQC24YMZqd6" } diff --git a/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json index 4d8ccfa6..78689fcf 100644 --- a/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json +++ b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 18, "severe": 48 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -108,12 +113,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809733405, - "modifiedTime": 1753809762536, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431850849, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8X16lJQ3xltTwynm" } diff --git a/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json index 07536704..c744b0b1 100644 --- a/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json +++ b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json @@ -26,6 +26,11 @@ "baseThresholds": { "major": 10, "severe": 25 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [ @@ -83,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753808464678, - "modifiedTime": 1753808691813, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431794279, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QjwsIhXKqnlvRBMv" } diff --git a/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json index ae9c849b..60da770c 100644 --- a/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json +++ b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json @@ -48,6 +48,11 @@ "baseThresholds": { "major": 8, "severe": 18 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 56, + "artist": "" } }, "effects": [], @@ -61,12 +66,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753807607742, - "modifiedTime": 1753807646156, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431725559, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PSW3BxCGmtLeWOxM" } diff --git a/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json index 44f644b0..829c3e40 100644 --- a/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json +++ b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json @@ -48,6 +48,11 @@ "baseThresholds": { "major": 13, "severe": 36 + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 57, + "artist": "" } }, "effects": [], @@ -61,12 +66,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753809706360, - "modifiedTime": 1753809725217, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431856135, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OvzgUTYy2RCN85vV" } diff --git a/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json b/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json index 78da26af..9bbca941 100644 --- a/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json +++ b/src/packs/items/consumables/consumable_Acidpaste_cfVFmS8vT9dbq9s1.json @@ -14,7 +14,16 @@ "description": "This paste eats away walls and other surfaces in bright flashes.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "cfVFmS8vT9dbq9s1", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590344700, - "modifiedTime": 1754394373835, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336051101, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!cfVFmS8vT9dbq9s1" } diff --git a/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json b/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json index 20aeeb50..b06f1634 100644 --- a/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json +++ b/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json @@ -20,7 +20,16 @@ "key": "hope", "value": 1, "step": 1, - "keyIsID": false + "itemId": null, + "consumeOnSuccess": false + }, + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "VlbsCjvvLNfTzNXb", + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -30,15 +39,21 @@ }, "effects": [], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Stitch", "img": "icons/skills/trades/textiles-stitching-leather-brown.webp", - "range": "" + "range": "self" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -52,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588973384, - "modifiedTime": 1754394381368, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336337676, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!VlbsCjvvLNfTzNXb" } diff --git a/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json b/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json index 39f74078..ad6dea85 100644 --- a/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json +++ b/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your next Instinct Roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "JGD3M9hBHtVAA8XP", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -32,10 +41,16 @@ }, "name": "Drink", "img": "icons/consumables/potions/bottle-conical-corked-purple.webp", - "range": "" + "range": "self" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587033468, - "modifiedTime": 1754394388974, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336352911, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!JGD3M9hBHtVAA8XP" } diff --git a/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json b/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json index 0913fb6d..5b58324d 100644 --- a/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json +++ b/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json @@ -14,7 +14,16 @@ "description": "You can activate this orb to create a flash of bright light. All targets within Close range become Vulnerable until they mark HP.
@Template[type:emanation|range:c]
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "eAXHdzA5qNPldOpn", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "close" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -57,7 +72,7 @@ "startRound": null, "startTurn": null }, - "description": "You are Vulnerable until you mark a Hit Point.
", + "description": "You are Vulnerable until you mark a Hit Point.
", "tint": "#ffffff", "statuses": [ "vulnerable" @@ -89,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592512731, - "modifiedTime": 1754394410769, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336362549, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!eAXHdzA5qNPldOpn" } diff --git a/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json b/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json index 103b102f..545ce424 100644 --- a/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json +++ b/src/packs/items/consumables/consumable_Blood_of_the_Yorgi_pDGzmczoTlKGmKgd.json @@ -14,7 +14,16 @@ "description": "You can drink this blood to disappear from where you are and immediately reappear at a point you can see within Very Far range.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "pDGzmczoTlKGmKgd", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -22,15 +31,21 @@ }, "effects": [], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Drink", "img": "icons/consumables/potions/potion-tube-corked-bat-gold-red.webp", - "range": "" + "range": "veryFar" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589954973, - "modifiedTime": 1754394423870, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336370750, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!pDGzmczoTlKGmKgd" } diff --git a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json index 0c33a50e..56bd6696 100644 --- a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json +++ b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your next Strength Roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "FOPQNqXbiVO0ilYL", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -32,10 +41,16 @@ }, "name": "Drink", "img": "icons/consumables/potions/potion-vial-tube-yellow.webp", - "range": "" + "range": "self" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753586850134, - "modifiedTime": 1754394431654, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336378610, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!FOPQNqXbiVO0ilYL" } diff --git a/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json b/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json index 61b0fb2f..73dcfc1f 100644 --- a/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json +++ b/src/packs/items/consumables/consumable_Bonding_Honey_PfQvqopXgvroBklL.json @@ -14,7 +14,16 @@ "description": "This honey can be used to glue two objects together permanently.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "PfQvqopXgvroBklL", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592033119, - "modifiedTime": 1754394442471, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336387437, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!PfQvqopXgvroBklL" } diff --git a/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json b/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json index a03ba6fe..777adc08 100644 --- a/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json +++ b/src/packs/items/consumables/consumable_Bridge_Seed_RrIasiMCt6mqVTps.json @@ -14,7 +14,16 @@ "description": "Thick vines grow from your location to a point of your choice within Far range, allowing you to climb up or across them. The vines dissipate on your next short rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "RrIasiMCt6mqVTps", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591685990, - "modifiedTime": 1754394450971, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336396404, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!RrIasiMCt6mqVTps" } diff --git a/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json b/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json index c93bb512..85e8ed29 100644 --- a/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json +++ b/src/packs/items/consumables/consumable_Channelstone_IKMVQ6VwtapwoUim.json @@ -14,7 +14,16 @@ "description": "You can use this stone to take a spell or grimoire from your vault, use it once, and return it to your vault.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "IKMVQ6VwtapwoUim", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590192533, - "modifiedTime": 1754394463123, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336406347, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!IKMVQ6VwtapwoUim" } diff --git a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json index 26e03cb2..ae60104a 100644 --- a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json +++ b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your next Presence Roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "CVBbFfOY75YwyQsp", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587097370, - "modifiedTime": 1754394471027, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336420032, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!CVBbFfOY75YwyQsp" } diff --git a/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json b/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json index cdbae661..a6ca40ba 100644 --- a/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json +++ b/src/packs/items/consumables/consumable_Circle_of_the_Void_elsyP6VhHw1JjGSl.json @@ -17,10 +17,11 @@ "cost": [ { "scalable": false, - "key": "stress", + "key": "quantity", "value": 1, - "keyIsID": false, - "step": null + "itemId": "elsyP6VhHw1JjGSl", + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -38,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -52,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590692159, - "modifiedTime": 1754394477728, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336427253, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!elsyP6VhHw1JjGSl" } diff --git a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json index f158628e..3c58799a 100644 --- a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json +++ b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your next Finesse Roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "eeBhZSGLjuNZuJuI", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753586944889, - "modifiedTime": 1754394484407, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336435661, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!eeBhZSGLjuNZuJuI" } diff --git a/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json b/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json index b7d636bc..c7a9a76d 100644 --- a/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json +++ b/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json @@ -14,7 +14,16 @@ "description": "After you drink this tea, you instantly kill your target when you critically succeed on an attack. If you donβt critically succeed on an attack before your next long rest, you die.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "xDnJeF1grkmKck8Q", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -27,15 +36,21 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Drink", "img": "icons/consumables/drinks/wine-amphora-clay-gray.webp", - "range": "" + "range": "self" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -64,7 +79,7 @@ "startRound": null, "startTurn": null }, - "description": "After you drink this tea, you instantly kill your target when you critically succeed on an attack. If you donβt critically succeed on an attack before your next long rest, you die.
", + "description": "After you drink this tea, you instantly kill your target when you critically succeed on an attack. If you donβt critically succeed on an attack before your next long rest, you die.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592717630, - "modifiedTime": 1754394494474, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336445925, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!xDnJeF1grkmKck8Q" } diff --git a/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json b/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json index da89cf7a..3bb5766f 100644 --- a/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json +++ b/src/packs/items/consumables/consumable_Dragonbloom_Tea_wM18PWWW2Ami4fBG.json @@ -11,13 +11,22 @@ "type": "attack", "_id": "rcHEz3ImUDwo6lPC", "systemPath": "actions", - "description": "", + "description": "You can drink this tea to unleash a fiery breath attack. Make an Instinct Roll against all adversaries in front of you within Close range. Targets you succeed against take d20 physical damage using your Proficiency.
@Template[type:emanation|range:c]
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "consumeOnSuccess": false, + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "wM18PWWW2Ami4fBG", + "step": null + } + ], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "damage": { @@ -79,7 +88,13 @@ "range": "close" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -93,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591525829, - "modifiedTime": 1753591674720, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1756336455635, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!wM18PWWW2Ami4fBG" } diff --git a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json index fa9da4cf..73f1b3c2 100644 --- a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json +++ b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json @@ -14,7 +14,16 @@ "description": "A creature who consumes this poison takes 8d10 direct magic damage.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "eU8VpbWB2NHIL47n", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -61,7 +70,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -75,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590938047, - "modifiedTime": 1754394503675, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336465398, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!eU8VpbWB2NHIL47n" } diff --git a/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json b/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json index 08ba032e..dc8260d0 100644 --- a/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json +++ b/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your next Knowledge Roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "aWHSO2AqDufi7nL4", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587185754, - "modifiedTime": 1754394512375, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336472979, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!aWHSO2AqDufi7nL4" } diff --git a/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json b/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json index 79a7a676..4b4c8236 100644 --- a/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json +++ b/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json @@ -14,7 +14,16 @@ "description": "You can eat this meal to clear all HP and Stress and gain 1d4 Hope.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "aX6NyxkNzu0LcJpt", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -124,7 +133,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -138,12 +153,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591925502, - "modifiedTime": 1754394521825, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336480162, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!aX6NyxkNzu0LcJpt" } diff --git a/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json b/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json index 7b4816a5..023edb88 100644 --- a/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json +++ b/src/packs/items/consumables/consumable_Featherbone_DpxEMpwfasEBpORU.json @@ -14,25 +14,90 @@ "description": "You can use this bone to control your falling speed for a number of minutes equal to your level.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "DpxEMpwfasEBpORU", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "VfJIJBW96e45xQHY", + "onSave": false + } + ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Use", "img": "icons/commodities/bones/bones-stack-worn-brown.webp", - "range": "" + "range": "self" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, - "effects": [], + "effects": [ + { + "name": "Featherbone", + "img": "icons/commodities/bones/bones-stack-worn-brown.webp", + "origin": "Compendium.daggerheart.consumables.Item.DpxEMpwfasEBpORU", + "transfer": false, + "_id": "VfJIJBW96e45xQHY", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You can use this bone to control your falling speed for a number of minutes equal to your level.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.347", + "systemId": "daggerheart", + "systemVersion": "1.1.0", + "createdTime": 1756041997551, + "modifiedTime": 1756042000517, + "lastModifiedBy": "vUIbuan0U50nfKBE" + }, + "_key": "!items.effects!DpxEMpwfasEBpORU.VfJIJBW96e45xQHY" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590624634, - "modifiedTime": 1754394529842, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336487822, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!DpxEMpwfasEBpORU" } diff --git a/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json b/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json index 33130fd2..b76ff1f9 100644 --- a/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json +++ b/src/packs/items/consumables/consumable_Gill_Salve_Nvbb9mze6o5D0AEg.json @@ -14,25 +14,90 @@ "description": "You can apply this salve to your neck to breathe underwater for a number of minutes equal to your level.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "Nvbb9mze6o5D0AEg", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "5rL9CY5GO9SJcEZq", + "onSave": false + } + ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Apply", "img": "icons/commodities/materials/bowl-powder-blue.webp", - "range": "" + "range": "self" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, - "effects": [], + "effects": [ + { + "name": "Gill Salve", + "img": "icons/commodities/materials/bowl-powder-blue.webp", + "origin": "Compendium.daggerheart.consumables.Item.Nvbb9mze6o5D0AEg", + "transfer": false, + "_id": "5rL9CY5GO9SJcEZq", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You can apply this salve to your neck to breathe underwater for a number of minutes equal to your level.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.347", + "systemId": "daggerheart", + "systemVersion": "1.1.0", + "createdTime": 1756041968799, + "modifiedTime": 1756041978849, + "lastModifiedBy": "vUIbuan0U50nfKBE" + }, + "_key": "!items.effects!Nvbb9mze6o5D0AEg.5rL9CY5GO9SJcEZq" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589241094, - "modifiedTime": 1754394537845, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336496390, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!Nvbb9mze6o5D0AEg" } diff --git a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json index ba7fd727..18dad17f 100644 --- a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json +++ b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json @@ -14,7 +14,16 @@ "description": "You can apply this venom to a weapon that deals physical damage to add a d6 to your next damage roll with that weapon.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "8WkhvSzeOmLdnoLJ", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -71,7 +86,7 @@ "startRound": null, "startTurn": null }, - "description": "You deal 1d6 additionalΒ physical damageΒ on your next damage roll with the weapon the venom was applied to.
", + "description": "You deal 1d6 additionalΒ physical damageΒ on your next damage roll with the weapon the venom was applied to.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -101,12 +116,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587386639, - "modifiedTime": 1754394547827, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336506199, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!8WkhvSzeOmLdnoLJ" } diff --git a/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json b/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json index ad36fe3e..5563b561 100644 --- a/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json +++ b/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json @@ -14,7 +14,16 @@ "description": "You can drink this potion to double your size until you choose to drop this form or your next rest. While in this form, you have a +2 bonus to Strength and a +1 bonus to your Proficiency.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "fl2f3ees8RFMze9t", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -100,12 +115,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592174440, - "modifiedTime": 1754394557196, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336513568, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!fl2f3ees8RFMze9t" } diff --git a/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json b/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json index 4279f73c..c600d102 100644 --- a/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json +++ b/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json @@ -14,7 +14,16 @@ "description": "Clear 1d4+1 HP.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "Aruc2NLutWuVIjP1", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -74,7 +83,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588839527, - "modifiedTime": 1754394566378, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336520901, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!Aruc2NLutWuVIjP1" } diff --git a/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json b/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json index 7aa146d4..87463773 100644 --- a/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json +++ b/src/packs/items/consumables/consumable_Homet_s_Secret_Potion_VSwa1LpQ9PjZKsWF.json @@ -14,7 +14,16 @@ "description": "After drinking this potion, the next successful attack you make critically succeeds.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "VSwa1LpQ9PjZKsWF", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -64,7 +79,7 @@ "startRound": null, "startTurn": null }, - "description": "The next successful attack you make critically succeeds.
", + "description": "The next successful attack you make critically succeeds.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589998065, - "modifiedTime": 1754394576928, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336528677, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!VSwa1LpQ9PjZKsWF" } diff --git a/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json b/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json index 9747d8d2..6cb963a8 100644 --- a/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json +++ b/src/packs/items/consumables/consumable_Hopehold_Flare_EhaQCPJ8oiqpRIwB.json @@ -14,7 +14,16 @@ "description": "When you use this flare, allies within Close range roll a d6 when they spend a Hope. On a result of 6, they gain the effect of that Hope without spending it. The flare lasts until the end of the scene.
@Template[type:emanation|range:c]
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "EhaQCPJ8oiqpRIwB", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590388618, - "modifiedTime": 1754394599463, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336535700, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!EhaQCPJ8oiqpRIwB" } diff --git a/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json b/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json index dc86564b..09ba52dc 100644 --- a/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json +++ b/src/packs/items/consumables/consumable_Improved_Arcane_Shard_nQTo6mNoPTEVBtkm.json @@ -14,7 +14,16 @@ "description": "You can make a Finesse Roll to throw this shard at a group of adversaries within Far range. Targets you succeed against take 2d20 magic damage.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "consumeOnSuccess": false, + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "nQTo6mNoPTEVBtkm", + "step": null + } + ], "uses": { "value": null, "max": "", @@ -81,7 +90,13 @@ "range": "far" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -95,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589403341, - "modifiedTime": 1754394607830, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336543336, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!nQTo6mNoPTEVBtkm" } diff --git a/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json b/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json index 9b1ac237..70d515f2 100644 --- a/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json +++ b/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json @@ -14,7 +14,16 @@ "description": "You can apply this venom to a weapon that deals physical damage to add a d8 to your next damage roll with that weapon.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "BqBWXXe9T07AMV4u", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -71,7 +86,7 @@ "startRound": null, "startTurn": null }, - "description": "You deal 1d8 additionalΒ physical damageΒ on your next damage roll with the weapon the venom was applied to.
", + "description": "You deal 1d8 additionalΒ physical damageΒ on your next damage roll with the weapon the venom was applied to.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -101,12 +116,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588170670, - "modifiedTime": 1754394620213, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336563205, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!BqBWXXe9T07AMV4u" } diff --git a/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json b/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json index df45fcf2..7a9a8193 100644 --- a/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json +++ b/src/packs/items/consumables/consumable_Jar_of_Lost_Voices_yUol6M5b8jsbk9za.json @@ -14,7 +14,16 @@ "description": "You can open this jar to release a deafening echo of voices for a number of minutes equal to your Instinct. Creatures within Far range unprepared for the sound take 6d8 magic damage.
@Template[type:emanation|range:f]
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "yUol6M5b8jsbk9za", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -61,7 +70,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -75,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591372075, - "modifiedTime": 1754394648049, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336570894, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!yUol6M5b8jsbk9za" } diff --git a/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json b/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json index bbe9e1a4..9f9939a8 100644 --- a/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json +++ b/src/packs/items/consumables/consumable_Jumping_Root_c2putn9apuurJhWX.json @@ -14,7 +14,16 @@ "description": "Eat this root to leap up to Far range once without needing to roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "c2putn9apuurJhWX", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588566489, - "modifiedTime": 1754394659649, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336580501, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!c2putn9apuurJhWX" } diff --git a/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json b/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json index 02a13b6c..398d12f5 100644 --- a/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json +++ b/src/packs/items/consumables/consumable_Knowledge_Stone_nL9IALzm9BNi5oSt.json @@ -14,7 +14,16 @@ "description": "If you die while holding this stone, an ally can take a card from your loadout to place in their loadout or vault. After they take this knowledge, the stone crumbles.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "nL9IALzm9BNi5oSt", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592240392, - "modifiedTime": 1754394668583, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336587702, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!nL9IALzm9BNi5oSt" } diff --git a/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json b/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json index ff722381..1cc164a2 100644 --- a/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json +++ b/src/packs/items/consumables/consumable_Major_Arcane_Shard_AA7bmiwv00lshPrC.json @@ -14,7 +14,16 @@ "description": "You can make a Finesse Roll to throw this shard at a group of adversaries within Far range. Targets you succeed against take 4d20 magic damage.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "consumeOnSuccess": false, + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "AA7bmiwv00lshPrC", + "step": null + } + ], "uses": { "value": null, "max": "", @@ -79,7 +88,13 @@ "range": "far" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -93,12 +108,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590515261, - "modifiedTime": 1754394676288, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336596900, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!AA7bmiwv00lshPrC" } diff --git a/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json b/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json index 63b3dfbf..05e4fe5d 100644 --- a/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json +++ b/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your Instinct until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "CCPFm5iXXwvyYYwR", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589747286, - "modifiedTime": 1754394684950, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336603508, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!CCPFm5iXXwvyYYwR" } diff --git a/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json b/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json index 58b988f9..12f5bf1d 100644 --- a/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json +++ b/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your Strength until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "mnyQDRtngWWQeRXF", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589623872, - "modifiedTime": 1754394694337, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336610323, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!mnyQDRtngWWQeRXF" } diff --git a/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json b/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json index 65c01549..84a18028 100644 --- a/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json +++ b/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your Presence until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "IJLAUlQymbSjzsri", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589816684, - "modifiedTime": 1754394702935, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336617341, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!IJLAUlQymbSjzsri" } diff --git a/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json b/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json index ff85d8ed..782e543c 100644 --- a/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json +++ b/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your Finesse until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "80s1FLmTLtohZ5GH", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589675185, - "modifiedTime": 1754394710253, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336639693, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!80s1FLmTLtohZ5GH" } diff --git a/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json b/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json index d2b26b03..a827a738 100644 --- a/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json +++ b/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your Knowledge until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "SDdv1G2veMLKrxcJ", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589874661, - "modifiedTime": 1754394718504, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336647833, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!SDdv1G2veMLKrxcJ" } diff --git a/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json b/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json index 454373f8..3e83a73c 100644 --- a/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json +++ b/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json @@ -14,7 +14,16 @@ "description": "Clear 1d4+2 HP.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "cM7pHe8bBAxSZ2xR", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -74,7 +83,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591046168, - "modifiedTime": 1754394726288, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336654766, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!cM7pHe8bBAxSZ2xR" } diff --git a/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json b/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json index 12ce1a3d..a7cd987e 100644 --- a/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json +++ b/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json @@ -14,7 +14,16 @@ "description": "Clear 1d4+2 Stress.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "I4cQ03xbxnc81EGa", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -74,7 +83,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591113317, - "modifiedTime": 1754394330048, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336661213, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!I4cQ03xbxnc81EGa" } diff --git a/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json b/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json index a88a1c48..60cd96b2 100644 --- a/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json +++ b/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your Agility until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "yK6eEDUrsPbZA8G0", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589545730, - "modifiedTime": 1754394734536, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336667559, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!yK6eEDUrsPbZA8G0" } diff --git a/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json b/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json index 8e6ebe0a..5dc8ca28 100644 --- a/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json +++ b/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json @@ -14,7 +14,16 @@ "description": "Clear 1d4 HP.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "tPfKtKRRjv8qdSqy", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -74,7 +83,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587253431, - "modifiedTime": 1754394742922, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336675059, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!tPfKtKRRjv8qdSqy" } diff --git a/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json b/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json index b8944384..81b000f7 100644 --- a/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json +++ b/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json @@ -14,7 +14,16 @@ "description": "Clear 1d4 Stress.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "b6vGSPFWOlzZZDLO", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -74,7 +83,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587324465, - "modifiedTime": 1754394346717, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336685650, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!b6vGSPFWOlzZZDLO" } diff --git a/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json b/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json index caa7a36d..7c80bc78 100644 --- a/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json +++ b/src/packs/items/consumables/consumable_Mirror_of_Marigold_UFQVwgYOUZ88UxcH.json @@ -16,11 +16,12 @@ "actionType": "action", "cost": [ { - "keyIsID": false, - "key": "hope", - "value": 1, "scalable": false, - "step": null + "key": "quantity", + "value": 1, + "itemId": "UFQVwgYOUZ88UxcH", + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -38,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -52,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592792213, - "modifiedTime": 1754394753189, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336692719, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!UFQVwgYOUZ88UxcH" } diff --git a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json index 5c6bfa94..7081d7d7 100644 --- a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json +++ b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json @@ -16,11 +16,12 @@ "actionType": "action", "cost": [ { - "keyIsID": false, - "key": "hope", - "value": 1, "scalable": false, - "step": null + "key": "quantity", + "value": 1, + "itemId": "f1NHVSIHJJCIOaBl", + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -43,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -72,7 +79,7 @@ "startRound": null, "startTurn": null }, - "description": "Your face is unrecognizable until your next rest.
", + "description": "Your face is unrecognizable until your next rest.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -102,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588254032, - "modifiedTime": 1754394761890, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336699132, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!f1NHVSIHJJCIOaBl" } diff --git a/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json b/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json index 1201b838..89952794 100644 --- a/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json +++ b/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json @@ -14,7 +14,16 @@ "description": "You can apply this dust to a weapon that deals magic damage to add a d12 to your next damage roll with that weapon.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "Zsh2AvZr8EkGtLyw", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -71,7 +86,7 @@ "startRound": null, "startTurn": null }, - "description": "You deal 1d12 additionalΒ magical damageΒ on your next damage roll with the weapon the venom was applied to.
", + "description": "You deal 1d12 additionalΒ magical damageΒ on your next damage roll with the weapon the venom was applied to.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -101,12 +116,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590241722, - "modifiedTime": 1754394769155, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336705787, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!Zsh2AvZr8EkGtLyw" } diff --git a/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json b/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json index 2e3f60d4..e66486cf 100644 --- a/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json +++ b/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json @@ -14,7 +14,16 @@ "description": "You can use this musk to prevent anyone from tracking you by mundane or magical means until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "qr1bosjFcUfuwq4B", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -64,7 +79,7 @@ "startRound": null, "startTurn": null }, - "description": "You cannot be tracked by mundane or magical means until your next rest.
", + "description": "You cannot be tracked by mundane or magical means until your next rest.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591168468, - "modifiedTime": 1754394777490, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336713230, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!qr1bosjFcUfuwq4B" } diff --git a/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json b/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json index 990cb6eb..c7fa2bbb 100644 --- a/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json +++ b/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json @@ -14,7 +14,16 @@ "description": "You can drink this potion to choose one additional downtime move.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "dvL8oaxpEF6jKvYN", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -100,12 +115,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588038000, - "modifiedTime": 1754394786974, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336720970, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!dvL8oaxpEF6jKvYN" } diff --git a/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json b/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json index 41408713..d6350da3 100644 --- a/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json +++ b/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json @@ -14,7 +14,16 @@ "description": "You can apply this saliva to a weapon that deals physical damage to add a d12 to your next damage roll with that weapon.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "s2Exl2XFuoOhtIov", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -71,7 +86,7 @@ "startRound": null, "startTurn": null }, - "description": "You deal 1d12 additional physical damageΒ on your next damage roll with the weapon the saliva was applied to.
", + "description": "You deal 1d12 additional physical damageΒ on your next damage roll with the weapon the saliva was applied to.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -101,12 +116,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590061810, - "modifiedTime": 1754394793758, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336727954, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!s2Exl2XFuoOhtIov" } diff --git a/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json b/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json index 8488df22..7e07b702 100644 --- a/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json +++ b/src/packs/items/consumables/consumable_Replication_Parchment_yJkwz4AP6yhGo8Vj.json @@ -14,7 +14,16 @@ "description": "By touching this piece of parchment to another, you can perfectly copy the second parchmentβs contents. Once used, this parchment becomes mundane paper.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "yJkwz4AP6yhGo8Vj", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753589306667, - "modifiedTime": 1754394802909, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336734771, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!yJkwz4AP6yhGo8Vj" } diff --git a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json index 95e84b30..08af29cc 100644 --- a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json +++ b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json @@ -14,7 +14,16 @@ "description": "You can drink this potion to halve your size until you choose to drop this form or your next rest. While in this form, you have a +2 bonus to Agility and a β1 penalty to your Proficiency.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "HGixKenQwhyRAYNk", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [ { @@ -100,12 +115,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592077792, - "modifiedTime": 1754394810891, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336741086, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!HGixKenQwhyRAYNk" } diff --git a/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json b/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json index 9ac76466..b627695a 100644 --- a/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json +++ b/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json @@ -14,7 +14,16 @@ "description": "You can drink this potion to fall asleep for a full nightβs rest. You clear all Stress upon waking.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "XZavUVlHEvE2srEt", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -75,7 +84,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -89,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591837472, - "modifiedTime": 1754394819077, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336748248, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!XZavUVlHEvE2srEt" } diff --git a/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json b/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json index 5edcef3d..cdc760ff 100644 --- a/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json +++ b/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json @@ -17,10 +17,11 @@ "cost": [ { "scalable": false, - "key": "stress", + "key": "quantity", "value": 1, - "keyIsID": false, - "step": null + "itemId": "cg6VtQ0eVZjDdcK0", + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -83,7 +84,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -97,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588752841, - "modifiedTime": 1754394825942, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336754402, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!cg6VtQ0eVZjDdcK0" } diff --git a/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json b/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json index 3fc1c15d..d278c6fe 100644 --- a/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json +++ b/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json @@ -14,7 +14,16 @@ "description": "Clear 1d4+1 Stress.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "hf3k1POoVSooJyN2", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -74,7 +83,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -88,12 +103,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588904835, - "modifiedTime": 1754394357617, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336761163, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!hf3k1POoVSooJyN2" } diff --git a/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json b/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json index cd30d320..b4c16c8d 100644 --- a/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json +++ b/src/packs/items/consumables/consumable_Stardrop_y4c1jrlHrf0wBWOq.json @@ -14,7 +14,16 @@ "description": "You can use this stardrop to summon a hailstorm of comets that deals 8d20 physical damage to all targets within Very Far range.
@Template[type:emanation|range:vf]
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "y4c1jrlHrf0wBWOq", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -61,7 +70,13 @@ "range": "veryFar" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -75,12 +90,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592933782, - "modifiedTime": 1754394853714, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336777144, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!y4c1jrlHrf0wBWOq" } diff --git a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json index b28dd0c7..dd8a354b 100644 --- a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json +++ b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json @@ -14,7 +14,16 @@ "description": "You gain a +1 bonus to your next Agility Roll.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "lNtcrkgFGOJNaroE", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753585993187, - "modifiedTime": 1754394862377, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336784139, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!lNtcrkgFGOJNaroE" } diff --git a/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json b/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json index d9e28567..f79704f4 100644 --- a/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json +++ b/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json @@ -14,7 +14,16 @@ "description": "Consume this sap to roll a [[/r d6]]. On a result of 5β6, clear 2 HP. On a result of 2β4, clear 3 Stress. On a result of 1, see through the veil of death and return changed, gaining one scar.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "consumeOnSuccess": false, + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "kwexUzdM9wm1Qums", + "step": null + } + ], "uses": { "value": null, "max": "", @@ -54,7 +63,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -68,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753590791260, - "modifiedTime": 1754394871161, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336791229, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!kwexUzdM9wm1Qums" } diff --git a/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json b/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json index 25780390..e366ddbe 100644 --- a/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json +++ b/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json @@ -14,7 +14,16 @@ "description": "You can consume this moss during a rest to clear 1d10 HP.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "GrDrRqWgv7gvl9vn", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -80,7 +89,16 @@ "description": "You can consume this moss during a rest to clear 1d10 Stress.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "GrDrRqWgv7gvl9vn", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -140,7 +158,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 62, + "artist": "" + } }, "effects": [], "folder": null, @@ -154,12 +178,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753592391195, - "modifiedTime": 1754394899780, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336804065, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!GrDrRqWgv7gvl9vn" } diff --git a/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json b/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json index 33e77c66..8194d7b2 100644 --- a/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json +++ b/src/packs/items/consumables/consumable_Unstable_Arcane_Shard_mUepnLbkvFk0ha4Z.json @@ -14,7 +14,16 @@ "description": "You can make a Finesse Roll to throw this shard at a group of adversaries within Far range. Targets you succeed against take 1d20 magic damage.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "consumeOnSuccess": false, + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "mUepnLbkvFk0ha4Z", + "step": null + } + ], "uses": { "value": null, "max": "", @@ -81,7 +90,13 @@ "range": "far" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -95,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587732694, - "modifiedTime": 1754394908763, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336811267, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!mUepnLbkvFk0ha4Z" } diff --git a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json index 20d2ddea..cec9395e 100644 --- a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json +++ b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json @@ -14,7 +14,16 @@ "description": "You can eat these paired leaves to immediately gain 2 Hope.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "hvy5BkG3F6iOIXTx", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -75,7 +84,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -89,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587484164, - "modifiedTime": 1754394924546, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336817973, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!hvy5BkG3F6iOIXTx" } diff --git a/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json b/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json index b65c1dec..4959dc10 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json +++ b/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json @@ -14,7 +14,16 @@ "description": "When an adversary attacks you, use this vial and roll a number of d6s equal to your Agility. Add the highest result to your Evasion against the attack.
", "chatDisplay": true, "actionType": "reaction", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "Nwv5ydGf0MWnzq1n", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -30,7 +39,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [], "folder": null, @@ -44,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753588345314, - "modifiedTime": 1754394933247, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336825474, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!Nwv5ydGf0MWnzq1n" } diff --git a/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json b/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json index 3f318842..f6138deb 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json +++ b/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json @@ -14,7 +14,16 @@ "description": "When you drink the contents of this vial, you can see in total darkness until your next rest.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "VqEX5YwK5oL3r1t6", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [ { @@ -64,7 +79,7 @@ "startRound": null, "startTurn": null }, - "description": "You can see in total darkness until your next rest.
", + "description": "You can see in total darkness until your next rest.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753587590537, - "modifiedTime": 1754394940997, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336832961, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!VqEX5YwK5oL3r1t6" } diff --git a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json index f07a6fc9..efab4326 100644 --- a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json +++ b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json @@ -14,7 +14,16 @@ "description": "You gain magic wings that allow you to fly for a number of minutes equal to your level.
", "chatDisplay": true, "actionType": "action", - "cost": [], + "cost": [ + { + "scalable": false, + "key": "quantity", + "value": 1, + "itemId": "n10vozlmosVR6lo4", + "step": null, + "consumeOnSuccess": false + } + ], "uses": { "value": null, "max": "", @@ -35,7 +44,13 @@ "range": "" } }, - "consumeOnUse": true + "consumeOnUse": true, + "destroyOnEmpty": true, + "attribution": { + "source": "Daggerheart SRD", + "page": 61, + "artist": "" + } }, "effects": [ { @@ -64,7 +79,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain magic wings that allow you to fly for a number of minutes equal to your level.
", + "description": "You gain magic wings that allow you to fly for a number of minutes equal to your level.
", "tint": "#ffffff", "statuses": [], "sort": 0, @@ -94,12 +109,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753591283853, - "modifiedTime": 1754394949465, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756336840548, + "lastModifiedBy": "gbAAZWyczKwejDNh" }, "_key": "!items!n10vozlmosVR6lo4" } diff --git a/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json b/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json index fbfe3800..3f368be7 100644 --- a/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json +++ b/src/packs/items/loot/loot_Airblade_Charm_cTYvyaSKBxosM9Y9.json @@ -29,6 +29,11 @@ "img": "icons/equipment/neck/amulet-carved-stone-spiral-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638435202, - "modifiedTime": 1753638500393, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432212303, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cTYvyaSKBxosM9Y9" } diff --git a/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json b/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json index 8e77f2bb..dc8c30e4 100644 --- a/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json +++ b/src/packs/items/loot/loot_Alistair_s_Torch_MeEg57T6MKpw3sme.json @@ -6,7 +6,12 @@ "system": { "description": "You can light this magic torch at will. The flameβs light fills a much larger space than it should, enough to illuminate a cave bright as day.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625181140, - "modifiedTime": 1753625205417, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431934319, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MeEg57T6MKpw3sme" } diff --git a/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json b/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json index c8b3c168..bf0a7352 100644 --- a/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json +++ b/src/packs/items/loot/loot_Arcane_Cloak_4STt98biZwjFoKOe.json @@ -6,7 +6,12 @@ "system": { "description": "A creature with a Spellcast trait wearing this cloak can adjust its color, texture, and size at will.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625371758, - "modifiedTime": 1753625392529, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431960072, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4STt98biZwjFoKOe" } diff --git a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json index b1fa3700..dc3376cb 100644 --- a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json +++ b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json @@ -34,6 +34,11 @@ "img": "icons/commodities/gems/gem-faceted-trillion-blue.webp", "range": "close" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [ @@ -93,12 +98,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626536923, - "modifiedTime": 1753989088942, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432045259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Mn1eo2Mdtu1kzyxB" } diff --git a/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json b/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json index 59909fa7..b7927905 100644 --- a/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json +++ b/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Instinct. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -33,7 +38,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain a +1 bonus to your Instinct.
", + "description": "You gain a +1 bonus to your Instinct.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639587267, - "modifiedTime": 1753639733198, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432312623, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vK6bKyQTT3m8WvMh" } diff --git a/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json b/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json index 767dc8e0..69817496 100644 --- a/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json +++ b/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json @@ -58,6 +58,11 @@ "img": "icons/containers/bags/pouch-cloth-tan.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [ @@ -119,12 +124,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637946114, - "modifiedTime": 1753989248198, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432176800, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!v758j4FwNVAurhYK" } diff --git a/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json b/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json index 717f4024..eaa9def5 100644 --- a/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json +++ b/src/packs/items/loot/loot_Belt_of_Unity_gFzkUGCjkRJtyoe9.json @@ -19,7 +19,6 @@ "scalable": false, "key": "hope", "value": 5, - "keyIsID": false, "step": null } ], @@ -37,6 +36,11 @@ "img": "icons/equipment/waist/belt-buckle-ornate-steel.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" } }, "effects": [], @@ -51,12 +55,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640971116, - "modifiedTime": 1753641065768, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432474549, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!gFzkUGCjkRJtyoe9" } diff --git a/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json b/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json index f5a19dff..52a85f8a 100644 --- a/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json +++ b/src/packs/items/loot/loot_Bloodstone_oMd78vhL2x2NO8Mg.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this stone to a weapon that doesnβt already have a feature. The weapon gains the following feature.
Brutal: When you roll the maximum value on a damage die, roll an additional damage die.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637532005, - "modifiedTime": 1753637570344, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432124214, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oMd78vhL2x2NO8Mg" } diff --git a/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json b/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json index 695b8a1c..7e1cd711 100644 --- a/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json +++ b/src/packs/items/loot/loot_Bolster_Relic_m3EpxlDgxn2tCDDR.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Strength. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -33,7 +38,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain a +1 bonus to your Strength.
", + "description": "You gain a +1 bonus to your Strength.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639461783, - "modifiedTime": 1753639473676, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432292506, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!m3EpxlDgxn2tCDDR" } diff --git a/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json b/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json index 3112c665..ee305349 100644 --- a/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json +++ b/src/packs/items/loot/loot_Box_of_Many_Goods_bZyT7Qw7iafswlTY.json @@ -53,6 +53,11 @@ "img": "icons/containers/boxes/crate-heavy-yellow.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -67,12 +72,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638361357, - "modifiedTime": 1753989365853, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432203301, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bZyT7Qw7iafswlTY" } diff --git a/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json b/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json index 82a1078a..8ba9f0bc 100644 --- a/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json +++ b/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json @@ -53,6 +53,11 @@ "img": "icons/equipment/neck/amulet-round-blue.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -67,12 +72,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637842111, - "modifiedTime": 1753989405747, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432160633, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tgFFMxpuRSiRrrEB" } diff --git a/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json b/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json index 19ef04c7..5bff2a6b 100644 --- a/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json +++ b/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json @@ -6,7 +6,12 @@ "system": { "description": "When you succeed on an attack with an arrow stored in this quiver, gain a bonus to the damage roll equal to your current tier.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [ { @@ -78,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625025089, - "modifiedTime": 1753989432098, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431911218, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!gsUDP90d4SRtLEUn" } diff --git a/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json b/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json index a1c80a2b..a56dfc73 100644 --- a/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json +++ b/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Presence. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -33,7 +38,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain a +1 bonus to your Presence.
", + "description": "You gain a +1 bonus to your Presence.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639686831, - "modifiedTime": 1753639719586, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432321075, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9P9jqGSlxVCbTdLe" } diff --git a/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json b/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json index d60c928c..e45c91b0 100644 --- a/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json +++ b/src/packs/items/loot/loot_Clay_Companion_lGIk9vBNz0jvskXD.json @@ -6,7 +6,12 @@ "system": { "description": "When you sculpt this ball of clay into a clay animal companion, it behaves as that animal. For example, a clay spider can spin clay webs, while a clay bird can fly. The clay companion retains memory and identity across different shapes, but they can adopt new mannerisms with each form.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640057300, - "modifiedTime": 1753640276057, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432384479, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lGIk9vBNz0jvskXD" } diff --git a/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json b/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json index 65854d4c..94b37cc8 100644 --- a/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json +++ b/src/packs/items/loot/loot_Companion_Case_V25uXkAQvK3hUta4.json @@ -6,7 +6,12 @@ "system": { "description": "This case can fit a small animal companion. While the companion is inside, the animal and case are immune to all damage and harmful effects.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625898190, - "modifiedTime": 1753625935379, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432012809, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!V25uXkAQvK3hUta4" } diff --git a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json index 9245934b..961e07c0 100644 --- a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json +++ b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Finesse. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -33,7 +38,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain a +1 bonus to your Finesse.
", + "description": "You gain a +1 bonus to your Finesse.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639492071, - "modifiedTime": 1753639541446, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432304157, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QPGBDItjrRhXU6iJ" } diff --git a/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json b/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json index 4a1a0848..9519e392 100644 --- a/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json +++ b/src/packs/items/loot/loot_Corrector_Sprite_G0RktbmtnuAlKCRH.json @@ -29,6 +29,11 @@ "img": "icons/magic/light/orbs-smoke-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637155361, - "modifiedTime": 1753637366036, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432083881, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G0RktbmtnuAlKCRH" } diff --git a/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json b/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json index f99220c9..3d6ab8be 100644 --- a/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json +++ b/src/packs/items/loot/loot_Dual_Flask_HCvcAu3sdHCspGMP.json @@ -6,7 +6,12 @@ "system": { "description": "This flask can hold two different liquids. You can swap between them by flipping a small switch on the flaskβs side.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637893309, - "modifiedTime": 1753637932763, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432168119, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HCvcAu3sdHCspGMP" } diff --git a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json index 6b007a29..68c9bc46 100644 --- a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json +++ b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json @@ -34,6 +34,11 @@ "img": "icons/equipment/neck/pendant-rough-silver-purple.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [ @@ -56,7 +61,7 @@ "startRound": null, "startTurn": null }, - "description": "You are Hidden until you move. While Hidden in this way, you remain unseen even if an adversary moves to where they would normally see you.
", + "description": "You are Hidden until you move. While Hidden in this way, you remain unseen even if an adversary moves to where they would normally see you.
", "tint": "#ffffff", "statuses": [ "hidden" @@ -88,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638931971, - "modifiedTime": 1753989758225, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432243222, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PkmTZXRMZL022O75" } diff --git a/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json b/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json index bb6ca519..ea8649d3 100644 --- a/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json +++ b/src/packs/items/loot/loot_Empty_Chest_p2yy61uKsyIsl8cU.json @@ -6,7 +6,12 @@ "system": { "description": "This magical chest appears empty. When you speak a specific trigger word or action and open the chest, you can see the items stored within it.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625859659, - "modifiedTime": 1753625887033, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432002874, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!p2yy61uKsyIsl8cU" } diff --git a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json index 0f992ddf..8973ffa6 100644 --- a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json +++ b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Knowledge. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -33,7 +38,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain a +1 bonus to your Knowledge.
", + "description": "You gain a +1 bonus to your Knowledge.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639753586, - "modifiedTime": 1753639789835, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432328609, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vSGx1f9SYUiA29L3" } diff --git a/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json b/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json index bcdda979..be48c507 100644 --- a/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json +++ b/src/packs/items/loot/loot_Fire_Jar_X6RMkIt89wf7qX2E.json @@ -29,6 +29,11 @@ "img": "icons/containers/kitchenware/jug-wrapped-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -43,12 +48,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625575791, - "modifiedTime": 1753625617382, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431975757, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!X6RMkIt89wf7qX2E" } diff --git a/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json b/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json index bb7f8495..4f87a4d2 100644 --- a/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json +++ b/src/packs/items/loot/loot_Flickerfly_Pendant_9VKYSBQxN9XFWlAm.json @@ -6,7 +6,12 @@ "system": { "description": "While you carry this pendant, your weapons with a Melee range that deal physical damage have a gossamer sheen and can attack targets within Very Close range.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639935227, - "modifiedTime": 1753639964153, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432355676, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9VKYSBQxN9XFWlAm" } diff --git a/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json b/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json index 3dbdae76..578eb7c5 100644 --- a/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json +++ b/src/packs/items/loot/loot_Gecko_Gloves_CGzjBpHJRG8KSt5Y.json @@ -6,7 +6,12 @@ "system": { "description": "You can climb up vertical surfaces and across ceilings.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637390470, - "modifiedTime": 1753637455936, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432092979, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CGzjBpHJRG8KSt5Y" } diff --git a/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json b/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json index 86b17e74..68eef682 100644 --- a/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json +++ b/src/packs/items/loot/loot_Gem_of_Alacrity_zecFwBUSWtB3HW8X.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Agility when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640285473, - "modifiedTime": 1753640317903, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432422196, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zecFwBUSWtB3HW8X" } diff --git a/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json b/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json index 07d44a2c..b592cd2d 100644 --- a/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json +++ b/src/packs/items/loot/loot_Gem_of_Audacity_hMu9It3ThCLCXuCA.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Presence when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640590771, - "modifiedTime": 1753640602606, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432430946, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hMu9It3ThCLCXuCA" } diff --git a/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json b/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json index 03743b23..7f75d412 100644 --- a/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json +++ b/src/packs/items/loot/loot_Gem_of_Insight_TbgeT9ZxKHqFqJSN.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Instinct when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640563344, - "modifiedTime": 1753640580953, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432436597, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TbgeT9ZxKHqFqJSN" } diff --git a/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json b/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json index 8395388f..19d6f2c4 100644 --- a/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json +++ b/src/packs/items/loot/loot_Gem_of_Might_rtSInNPc4B3ChBUZ.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Strength when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640512721, - "modifiedTime": 1753640527143, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432442699, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!rtSInNPc4B3ChBUZ" } diff --git a/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json b/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json index 6dc57398..0d10ff19 100644 --- a/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json +++ b/src/packs/items/loot/loot_Gem_of_Precision_CrvJ7vb4s40YgEcy.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Finesse when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640535939, - "modifiedTime": 1753640553552, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432448347, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CrvJ7vb4s40YgEcy" } diff --git a/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json b/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json index 4128007b..cb3de994 100644 --- a/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json +++ b/src/packs/items/loot/loot_Gem_of_Sagacity_ua351S7CsH22X1x2.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this gem to a weapon, allowing you to use your Knowledge when making an attack with that weapon.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640610217, - "modifiedTime": 1753640623916, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432454597, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ua351S7CsH22X1x2" } diff --git a/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json b/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json index dacc4376..98714741 100644 --- a/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json +++ b/src/packs/items/loot/loot_Glamour_Stone_Pj17cvdJ1XG1jv6I.json @@ -11,12 +11,11 @@ "type": "effect", "_id": "ATQgH12mufTOQLKs", "systemPath": "actions", - "description": "", + "description": "Activate this pebble-sized stone to memorize the appearance of someone you can see. Spend a Hope to magically recreate this guise on yourself as an illusion.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -25,21 +24,76 @@ ], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "K5SB6tfuDkdVaQYe", + "onSave": false + } + ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Create Illusion", "img": "icons/commodities/treasure/token-engraved-purple-glowing.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, - "effects": [], + "effects": [ + { + "name": "Glamour Stone", + "img": "icons/commodities/treasure/token-engraved-purple-glowing.webp", + "origin": "Compendium.daggerheart.loot.Item.Pj17cvdJ1XG1jv6I", + "transfer": false, + "_id": "K5SB6tfuDkdVaQYe", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Activate this pebble-sized stone to memorize the appearance of someone you can see. Spend a Hope to magically recreate this guise on yourself as an illusion.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.347", + "systemId": "daggerheart", + "systemVersion": "1.1.0", + "createdTime": 1756042876194, + "modifiedTime": 1756042884422, + "lastModifiedBy": "vUIbuan0U50nfKBE" + }, + "_key": "!items.effects!Pj17cvdJ1XG1jv6I.K5SB6tfuDkdVaQYe" + } + ], "folder": null, "sort": 0, "ownership": { @@ -51,12 +105,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753625773657, - "modifiedTime": 1753625847459, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1756042876216, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!Pj17cvdJ1XG1jv6I" } diff --git a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json index 799e170f..2dfce26c 100644 --- a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json +++ b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json @@ -19,7 +19,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -37,6 +36,11 @@ "img": "icons/commodities/leather/leather-patch-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -51,12 +55,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637642501, - "modifiedTime": 1753989923053, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432142381, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CiXwelozmBDcPY48" } diff --git a/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json b/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json index e19ac9a6..72d434f9 100644 --- a/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json +++ b/src/packs/items/loot/loot_Greatstone_y7zABzR0Q2fRskTw.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this stone to a weapon that doesnβt already have a feature. The weapon gains the following feature.
Powerful: On a successful attack, roll an additional damage die and discard the lowest result.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637596921, - "modifiedTime": 1753637633941, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432133748, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!y7zABzR0Q2fRskTw" } diff --git a/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json b/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json index be6e9ad5..93bbb201 100644 --- a/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json +++ b/src/packs/items/loot/loot_Homing_Compasses_yrAGYlDyoe4OYl7d.json @@ -6,7 +6,12 @@ "system": { "description": "These two compasses point toward each other no matter how far apart they are.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637089789, - "modifiedTime": 1753637129113, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432074527, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yrAGYlDyoe4OYl7d" } diff --git a/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json b/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json index 4fb5b0de..6bf34bee 100644 --- a/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json +++ b/src/packs/items/loot/loot_Honing_Relic_SAAnEAeXDnhBbLjB.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to an Experience of your choice. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639799902, - "modifiedTime": 1753639815534, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432343825, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SAAnEAeXDnhBbLjB" } diff --git a/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json b/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json index 6899908f..f1eac926 100644 --- a/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json +++ b/src/packs/items/loot/loot_Hopekeeper_Locket_9DcFR75tsnBYIp6Z.json @@ -16,7 +16,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -99,6 +98,11 @@ "img": "icons/equipment/neck/amulet-round-engraved-spiral-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -113,12 +117,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639224510, - "modifiedTime": 1753639329411, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432255622, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9DcFR75tsnBYIp6Z" } diff --git a/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json b/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json index 83044c0f..1a82453c 100644 --- a/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json +++ b/src/packs/items/loot/loot_Infinite_Bag_Iedjw1LVWEozVh0J.json @@ -6,7 +6,12 @@ "system": { "description": "When you store items in this bag, they are kept in a pocket dimension that never runs out of space. You can retrieve an item at any time.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639339762, - "modifiedTime": 1753639361505, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432274021, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Iedjw1LVWEozVh0J" } diff --git a/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json b/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json index b64c2faf..1c5a2c64 100644 --- a/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json +++ b/src/packs/items/loot/loot_Lakestrider_Boots_NgvmrJYKpA2PrRSo.json @@ -6,7 +6,12 @@ "system": { "description": "You can walk on the surface of water as if it were soft ground.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639975496, - "modifiedTime": 1753639999823, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432366912, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!NgvmrJYKpA2PrRSo" } diff --git a/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json b/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json index 8a1fd26e..16bb3186 100644 --- a/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json +++ b/src/packs/items/loot/loot_Lorekeeper_JsPYzrqpITqGj23I.json @@ -6,7 +6,12 @@ "system": { "description": "You can store the name and details of up to three hostile creatures inside this book. You gain a +1 bonus to action rolls against those creatures.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637467427, - "modifiedTime": 1753637489198, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432101012, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JsPYzrqpITqGj23I" } diff --git a/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json b/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json index cbeb9f38..ba762c74 100644 --- a/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json +++ b/src/packs/items/loot/loot_Manacles_GkmATIuemyFtQX1D.json @@ -6,7 +6,12 @@ "system": { "description": "This pair of locking cuffs comes with a key.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625337217, - "modifiedTime": 1753625362038, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431952005, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GkmATIuemyFtQX1D" } diff --git a/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json b/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json index 2d8c286b..a84e783a 100644 --- a/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json +++ b/src/packs/items/loot/loot_Minor_Health_Potion_Recipe_PQxvxAVBbkt0TleC.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can use a vial of blood to craft a Minor Health Potion.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637045921, - "modifiedTime": 1753637071130, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432066493, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PQxvxAVBbkt0TleC" } diff --git a/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json b/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json index d963d82d..8069ae69 100644 --- a/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json +++ b/src/packs/items/loot/loot_Minor_Stamina_Potion_Recipe_1TLpFsp3PLDsqoTw.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can use the bone of a creature to craft a Minor Stamina Potion.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626639554, - "modifiedTime": 1753626666369, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432058259, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1TLpFsp3PLDsqoTw" } diff --git a/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json b/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json index 2325a405..dfc1916d 100644 --- a/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json +++ b/src/packs/items/loot/loot_Mythic_Dust_Recipe_5YZls8XH3MB7twNa.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can use a handful of fine gold dust to craft Mythic Dust.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640163566, - "modifiedTime": 1753640190943, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432395196, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5YZls8XH3MB7twNa" } diff --git a/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json b/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json index f62b7895..59260e5d 100644 --- a/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json +++ b/src/packs/items/loot/loot_Paragon_s_Chain_F4hoRfvVdZq5bhhI.json @@ -16,7 +16,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -37,6 +36,11 @@ "img": "icons/equipment/neck/choker-chain-thin-gold.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [], @@ -51,12 +55,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638721391, - "modifiedTime": 1753638917868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432230353, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!F4hoRfvVdZq5bhhI" } diff --git a/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json b/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json index a51d206b..2cd09252 100644 --- a/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json +++ b/src/packs/items/loot/loot_Phoenix_Feather_QNtzJSVENww63THa.json @@ -6,7 +6,12 @@ "system": { "description": "If you have at least one Phoenix Feather on you when you fall unconscious, you gain a +1 bonus to the roll you make to determine whether you gain a scar.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638285123, - "modifiedTime": 1753638336982, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432194183, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QNtzJSVENww63THa" } diff --git a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json index a3789138..483d0262 100644 --- a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json +++ b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json @@ -11,7 +11,7 @@ "type": "effect", "_id": "DW5AqEM0F8XaUqpn", "systemPath": "actions", - "description": "", + "description": "Three times per rest when you succeed on an attack with one of these arrows, you can add your Proficiency to the damage roll.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -29,6 +29,11 @@ "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [ @@ -69,7 +74,7 @@ "startRound": null, "startTurn": null }, - "description": "Add your Proficiency to the damage roll of this attack.
", + "description": "Add your Proficiency to the damage roll of this attack.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -101,12 +106,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753625947079, - "modifiedTime": 1753990194353, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756042964027, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!I63LTFD6GXHgyGpR" } diff --git a/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json b/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json index b0e2954c..1a059ae1 100644 --- a/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json +++ b/src/packs/items/loot/loot_Piper_Whistle_v4PIoCCEjeE3acys.json @@ -6,7 +6,12 @@ "system": { "description": "This handcrafted whistle has a distinctive sound. When you blow this whistle, its piercing tone can be heard within a 1-mile radius.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753624968366, - "modifiedTime": 1753625011843, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431902952, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!v4PIoCCEjeE3acys" } diff --git a/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json b/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json index 4eb1e0d7..d09850e3 100644 --- a/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json +++ b/src/packs/items/loot/loot_Portal_Seed_eRd5Gk7J7hPCqp11.json @@ -6,7 +6,12 @@ "system": { "description": "You can plant this seed in the ground to grow a portal in that spot. The portal is ready to use in 24 hours. You can use this portal to travel to any other location where you planted a portal seed. A portal can be destroyed by dealing any amount of magic damage to it.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753638512020, - "modifiedTime": 1753638586392, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432221837, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!eRd5Gk7J7hPCqp11" } diff --git a/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json b/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json index 9d90b78b..1a2b7f62 100644 --- a/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json +++ b/src/packs/items/loot/loot_Premium_Bedroll_QGYPNBIufpBguwjC.json @@ -17,11 +17,11 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "target": { - "type": "any", + "type": "self", "amount": null }, "effects": [], @@ -68,6 +68,11 @@ "img": "icons/sundries/survival/bedroll-blue-red.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -82,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753624827945, - "modifiedTime": 1753624908866, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1756042976231, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!QGYPNBIufpBguwjC" } diff --git a/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json b/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json index f241cf1f..1fa60198 100644 --- a/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json +++ b/src/packs/items/loot/loot_Ring_of_Resistance_aUqRifqR5JXXa1dN.json @@ -11,7 +11,7 @@ "type": "effect", "_id": "4swwe8SZeh2KyPtl", "systemPath": "actions", - "description": "", + "description": "Once per long rest, you can activate this ring after a successful attack against you to halve the damage.
", "chatDisplay": true, "actionType": "action", "cost": [], @@ -20,18 +20,86 @@ "max": 1, "recovery": "longRest" }, - "effects": [], + "effects": [ + { + "_id": "Sj7uGf560T7u4rlX", + "onSave": false + } + ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Activate", "img": "icons/equipment/finger/ring-shield-silver.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, - "effects": [], + "effects": [ + { + "name": "Ring of Resistance", + "img": "icons/equipment/finger/ring-shield-silver.webp", + "origin": "Compendium.daggerheart.loot.Item.aUqRifqR5JXXa1dN", + "transfer": false, + "_id": "Sj7uGf560T7u4rlX", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resistance.magical.resistance", + "mode": 5, + "value": "1", + "priority": null + }, + { + "key": "system.resistance.physical.resistance", + "mode": 5, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Once per long rest, you can activate this ring after a successful attack against you to halve the damage.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.347", + "systemId": "daggerheart", + "systemVersion": "1.1.0", + "createdTime": 1756043003002, + "modifiedTime": 1756043032046, + "lastModifiedBy": "vUIbuan0U50nfKBE" + }, + "_key": "!items.effects!aUqRifqR5JXXa1dN.Sj7uGf560T7u4rlX" + } + ], "folder": null, "sort": 0, "ownership": { @@ -43,12 +111,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753638222884, - "modifiedTime": 1753638266245, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1756043010729, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!aUqRifqR5JXXa1dN" } diff --git a/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json b/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json index 502c73b2..d6e15140 100644 --- a/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json +++ b/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json @@ -11,12 +11,11 @@ "type": "effect", "_id": "Y4mvuJ4tncrKhyjY", "systemPath": "actions", - "description": "", + "description": "Spend a Hope to activate this ring. Your footsteps are silent until your next rest.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -28,23 +27,35 @@ "max": 1, "recovery": "shortRest" }, - "effects": [], + "effects": [ + { + "_id": "9JSLRu7amQ4iuIO7", + "onSave": false + } + ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Activate", "img": "icons/equipment/finger/ring-ball-purple.webp", - "range": "" + "range": "self" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" } }, "effects": [ { "name": "Ring of Silence", - "type": "base", - "_id": "aCt3QjdeTREZAlEa", "img": "icons/equipment/finger/ring-ball-purple.webp", + "origin": "Compendium.daggerheart.loot.Item.K1ysGnTpNyxPu5Au", + "transfer": false, + "_id": "9JSLRu7amQ4iuIO7", + "type": "base", "system": { "rangeDependence": { "enabled": false, @@ -54,7 +65,7 @@ } }, "changes": [], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -64,10 +75,8 @@ "startRound": null, "startTurn": null }, - "description": "Your footsteps are silent until your next rest.
", - "origin": null, + "description": "Your footsteps are silent until your next rest.
", "tint": "#ffffff", - "transfer": true, "statuses": [], "sort": 0, "flags": {}, @@ -75,14 +84,14 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753990311274, - "modifiedTime": 1753990345889, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "systemVersion": "1.1.0", + "createdTime": 1756043091753, + "modifiedTime": 1756043101742, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, - "_key": "!items.effects!K1ysGnTpNyxPu5Au.aCt3QjdeTREZAlEa" + "_key": "!items.effects!K1ysGnTpNyxPu5Au.9JSLRu7amQ4iuIO7" } ], "folder": null, @@ -96,12 +105,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1753637775628, - "modifiedTime": 1753637832657, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1756043091776, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!K1ysGnTpNyxPu5Au" } diff --git a/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json b/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json index 94f8bdec..99f856da 100644 --- a/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json +++ b/src/packs/items/loot/loot_Ring_of_Unbreakable_Resolve_kn71qCQY0DnjmQBJ.json @@ -19,7 +19,6 @@ "scalable": false, "key": "hope", "value": 4, - "keyIsID": false, "step": null } ], @@ -37,6 +36,11 @@ "img": "icons/equipment/finger/ring-faceted-gold-teal.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" } }, "effects": [], @@ -51,12 +55,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640632212, - "modifiedTime": 1753640958684, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432465536, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!kn71qCQY0DnjmQBJ" } diff --git a/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json b/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json index 46beee5a..efc12e63 100644 --- a/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json +++ b/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json @@ -19,7 +19,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -37,6 +36,11 @@ "img": "icons/commodities/gems/gem-rough-navette-purple-pink.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 60, + "artist": "" } }, "effects": [], @@ -51,12 +55,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753640199098, - "modifiedTime": 1753990369010, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755432405079, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2ULPgNyqCrxea0v0" } diff --git a/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json b/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json index 4b480459..d05a0de4 100644 --- a/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json +++ b/src/packs/items/loot/loot_Skeleton_Key_edkNgwy4xghZreBa.json @@ -53,6 +53,11 @@ "img": "icons/sundries/misc/key-ornate-iron-black.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [], @@ -67,12 +72,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626370278, - "modifiedTime": 1753626508104, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432037375, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!edkNgwy4xghZreBa" } diff --git a/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json b/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json index 1239b6ab..af9fc42c 100644 --- a/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json +++ b/src/packs/items/loot/loot_Speaking_Orbs_LZrG6CFiSjpLA2F1.json @@ -6,7 +6,12 @@ "system": { "description": "This pair of orbs allows any creatures holding them to communicate with each other across any distance.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625222662, - "modifiedTime": 1753625327080, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431943587, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LZrG6CFiSjpLA2F1" } diff --git a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json index 9f169207..d5fe0fd1 100644 --- a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json +++ b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json @@ -6,7 +6,12 @@ "system": { "description": "You gain a +1 bonus to your Agility. You can only carry one relic.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [ { @@ -33,7 +38,7 @@ "startRound": null, "startTurn": null }, - "description": "You gain a +1 bonus to your Agility.
", + "description": "You gain a +1 bonus to your Agility.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -65,12 +70,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753639376996, - "modifiedTime": 1753639432017, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432282538, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FfJISMzYATaPQPLc" } diff --git a/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json b/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json index 83ca772a..7932eb77 100644 --- a/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json +++ b/src/packs/items/loot/loot_Suspended_Rod_nnj12RiFanq7s5zv.json @@ -6,7 +6,12 @@ "system": { "description": "This flat rod is inscribed with runes. When you activate the rod, it is immediately suspended in place. Until the rod is deactivated, it canβt move, doesnβt abide by the rules of gravity, and remains in place.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625627433, - "modifiedTime": 1753625765676, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431985810, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nnj12RiFanq7s5zv" } diff --git a/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json b/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json index 6970a396..39cb89d7 100644 --- a/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json +++ b/src/packs/items/loot/loot_Valorstone_7yywua9TmQ4WP5WH.json @@ -6,7 +6,12 @@ "system": { "description": "You can attach this stone to armor that doesnβt already have a feature. The armor gains the following feature.
Resilient: Before you mark your last Armor Slot, roll a d6. On a result of 6, reduce the severity by one threshold without marking an Armor Slot.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753626167593, - "modifiedTime": 1753626237350, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432029408, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7yywua9TmQ4WP5WH" } diff --git a/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json b/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json index d9ad7e17..29bb21fc 100644 --- a/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json +++ b/src/packs/items/loot/loot_Vial_of_Darksmoke_Recipe_MhCo8i0cRXzdnXbA.json @@ -6,7 +6,12 @@ "system": { "description": "As a downtime move, you can mark a Stress to craft a Vial of Darksmoke.
", "quantity": 1, - "actions": {} + "actions": {}, + "attribution": { + "source": "Daggerheart SRD", + "page": 59, + "artist": "" + } }, "effects": [], "folder": null, @@ -20,12 +25,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753637508452, - "modifiedTime": 1753637524868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755432114401, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MhCo8i0cRXzdnXbA" } diff --git a/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json b/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json index 3013f603..32fa6c6b 100644 --- a/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json +++ b/src/packs/items/loot/loot_Woven_Net_ARuv48PWUGJGBC4n.json @@ -58,6 +58,11 @@ "img": "icons/tools/fishing/net-tan.webp", "range": "" } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 58, + "artist": "" } }, "effects": [ @@ -144,12 +149,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753625403538, - "modifiedTime": 1753625550934, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1755431968372, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ARuv48PWUGJGBC4n" } diff --git a/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json b/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json deleted file mode 100644 index a51a5c14..00000000 --- a/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "folder": "OKJC8cHvPuseBHWq", - "name": "Black Powder Revolver", - "type": "loot", - "_id": "NUbvkPLS71XO073r", - "img": "icons/weapons/guns/gun-pistol-brass.webp", - "system": { - "description": "", - "quantity": 1, - "actions": {} - }, - "effects": [], - "sort": 0, - "ownership": { - "default": 0, - "FecEtPuoQh6MpjQ0": 3 - }, - "flags": {}, - "_stats": { - "compendiumSource": null, - "duplicateSource": null, - "exportSource": null, - "coreVersion": "13.346", - "systemId": "daggerheart", - "systemVersion": "0.0.1", - "createdTime": 1753832431607, - "modifiedTime": 1753832439003, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" - }, - "_key": "!items!NUbvkPLS71XO073r" -} diff --git a/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json b/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json index 0dc1f068..03472e33 100644 --- a/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json +++ b/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753835285790, - "modifiedTime": 1754815224721, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431272519, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ijodu5yNBoMxpkHV" } diff --git a/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json b/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json index 0abfe057..db39bfcf 100644 --- a/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json +++ b/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -159,10 +164,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836715885, - "modifiedTime": 1754845968271, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430195943, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "la3sAWgnvadc4NvP", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json b/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json index 7e06132f..5e75aae7 100644 --- a/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json +++ b/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833079329, - "modifiedTime": 1753833112531, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431151799, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hXR56fTKwZ6s1obs" } diff --git a/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json b/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json index b99dee62..ad176f61 100644 --- a/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json +++ b/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831668041, - "modifiedTime": 1753831689481, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430983569, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FcbvY1ydbNVMjKvk" } diff --git a/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json b/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json index 19a6d9bf..927b0310 100644 --- a/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json +++ b/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753831599435, - "modifiedTime": 1754814950120, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430988859, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WtQAGz0TUgz8Xg70" } diff --git a/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json b/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json index cd64eb4b..017002b4 100644 --- a/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json +++ b/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832024062, - "modifiedTime": 1753832046861, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430993878, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3HGs0AgVrdIBTaKG" } diff --git a/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json b/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json index f2dd3e0f..2c00a2cf 100644 --- a/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json +++ b/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831881396, - "modifiedTime": 1753831904535, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430999379, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bw9WO9lxkM9bWZxQ" } diff --git a/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json b/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json index 17aa209b..9fd77076 100644 --- a/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json +++ b/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831785214, - "modifiedTime": 1753831814649, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431005188, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mrioysDjNQEIE8hN" } diff --git a/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json b/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json index dc665696..eed619c5 100644 --- a/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json +++ b/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833383897, - "modifiedTime": 1753833411958, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431162464, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!X5x3sC7v2f3L9sjL" } diff --git a/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json b/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json index c647f3da..338ddc71 100644 --- a/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json +++ b/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833176806, - "modifiedTime": 1753833243855, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431169037, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!InQoh8mZPnwarQkX" } diff --git a/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json b/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json index ffb6bb44..4477b871 100644 --- a/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json +++ b/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753795033661, - "modifiedTime": 1753795079243, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430411064, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7vvhVl4TDJHtjpFK" } diff --git a/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json b/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json index cbd63dd5..dd768c28 100644 --- a/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json +++ b/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833576312, - "modifiedTime": 1753833602381, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431174265, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4UzxqfkwF8gDSdu7" } diff --git a/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json b/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json index 81d05554..d1dff9f7 100644 --- a/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json +++ b/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831701352, - "modifiedTime": 1753831723203, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431010340, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MAC6YWTo4lzSotQc" } diff --git a/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json b/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json index d314f604..cc9dddea 100644 --- a/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json +++ b/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831933214, - "modifiedTime": 1753831956886, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431016287, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!C8gQn7onAc9wsrCs" } diff --git a/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json b/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json index 52840548..48b52862 100644 --- a/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json +++ b/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833120834, - "modifiedTime": 1753833164907, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431179762, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BiyXKX2Mo1TQbKgk" } diff --git a/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json b/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json index ef1eb127..4dd79561 100644 --- a/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json +++ b/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json @@ -43,12 +43,13 @@ "parts": [ { "value": { - "dice": "d4", + "dice": "d6", "bonus": 5, "multiplier": "prof", "flatMultiplier": 1, "custom": { - "enabled": false + "enabled": false, + "formula": "" } }, "type": [ @@ -62,7 +63,8 @@ "dice": "d6", "bonus": null, "custom": { - "enabled": false + "enabled": false, + "formula": "" } }, "base": false @@ -92,6 +94,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -105,12 +112,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.2", "createdTime": 1753795089792, - "modifiedTime": 1753795117775, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1761503058944, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items!Lsvocst8aGqkBj7g" } diff --git a/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json b/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json index 9f78b140..2ecb02ce 100644 --- a/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json +++ b/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833253569, - "modifiedTime": 1753833282989, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431184599, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PQACczSghZIVTdgZ" } diff --git a/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json b/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json index f8257028..9b7f4816 100644 --- a/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json +++ b/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -150,10 +155,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836675558, - "modifiedTime": 1754845996869, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430171326, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "eT2Qwb0RdrLX2hH1", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json b/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json index 324af2b1..03b69488 100644 --- a/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json +++ b/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json @@ -17,7 +17,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -129,6 +128,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -143,10 +147,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836614032, - "modifiedTime": 1754846020904, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430232313, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "BuMfupnCzHbziQ8o", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json b/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json index 0ebb1d08..237d30c2 100644 --- a/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json +++ b/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832060079, - "modifiedTime": 1753832086913, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431035842, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!M5CywMAyPKGgebsJ" } diff --git a/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json b/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json index 8b44c759..e7977c92 100644 --- a/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json +++ b/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831635467, - "modifiedTime": 1753831658646, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431029688, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!9xkB3MWXahrsVP4N" } diff --git a/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json b/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json index 770a061c..1dd1f447 100644 --- a/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json +++ b/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831730528, - "modifiedTime": 1753831747562, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431024022, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WreMYiH5uhVDaoVw" } diff --git a/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json b/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json index e9a2ff48..60d059ef 100644 --- a/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json +++ b/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831826360, - "modifiedTime": 1753831868734, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431045472, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zJtm2f9ZFKZRtCRg" } diff --git a/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json b/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json index e108d48f..7e7226d2 100644 --- a/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json +++ b/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831909596, - "modifiedTime": 1753831926420, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431050992, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!KxFne76d7cak15dO" } diff --git a/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json b/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json index e549ce09..04a8537c 100644 --- a/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json +++ b/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833291783, - "modifiedTime": 1753833332963, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431189871, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!sIGXA4KMeYBUjcEO" } diff --git a/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json b/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json index 9240fbaf..1ea38b75 100644 --- a/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json +++ b/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json @@ -100,18 +100,24 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ { "name": "Protective", - "description": "Add your character's Tier to your Armor Score", + "description": "Add the item's Tier to your Armor Score
", "img": "icons/skills/melee/shield-block-gray-orange.webp", "changes": [ { "key": "system.armorScore", "mode": 2, - "value": "ITEM.@system.tier" + "value": "ITEM.@system.tier", + "priority": null } ], "_id": "i5HfkF5aKQuUCTEG", @@ -120,7 +126,12 @@ "disabled": false, "duration": { "startTime": null, - "combat": null + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null }, "origin": null, "tint": "#ffffff", @@ -132,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753794875150, - "modifiedTime": 1753794875150, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1761503813916, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items.effects!hiEOGF2reabGLUoi.i5HfkF5aKQuUCTEG" } @@ -152,12 +163,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794853303, - "modifiedTime": 1753794890718, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430422255, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hiEOGF2reabGLUoi" } diff --git a/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json b/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json index 0f24c888..8410acba 100644 --- a/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json +++ b/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833421806, - "modifiedTime": 1753835888435, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431194696, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2Khzuj768yoWN9QK" } diff --git a/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json b/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json index e54b4eea..c6cf9e45 100644 --- a/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json +++ b/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831998635, - "modifiedTime": 1753832018423, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431055980, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JpSlJvDR0X8VFDns" } diff --git a/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json b/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json index b09613da..b9f8abd7 100644 --- a/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json +++ b/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833341389, - "modifiedTime": 1753833375298, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431199497, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!T5exRCqOXhrjSYnI" } diff --git a/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json b/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json index a7b33030..3602de12 100644 --- a/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json +++ b/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753794821174, - "modifiedTime": 1755268343096, + "modifiedTime": 1755430427239, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!p3nz5CaGUoyuGVg0" diff --git a/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json b/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json index 958bda92..aec66a76 100644 --- a/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json +++ b/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753794938643, - "modifiedTime": 1755268350050, + "modifiedTime": 1755430432441, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0thN0BpN05KT8Avx" diff --git a/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json index 0bfb4a8f..af308099 100644 --- a/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json +++ b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json @@ -92,48 +92,14 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, - "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" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, @@ -144,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831962536, - "modifiedTime": 1753831987004, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431061358, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!pK6dsNABKKp1CIGN" } diff --git a/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json b/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json index 33d9f577..47982de2 100644 --- a/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json +++ b/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794904892, - "modifiedTime": 1753794929241, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430438607, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OfOzQbs4hg6QbfTG" } diff --git a/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json b/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json index 65bd9fc3..4e427132 100644 --- a/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json +++ b/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833518519, - "modifiedTime": 1753833553163, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431205397, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jU9jWIardjtdAQcs" } diff --git a/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json b/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json index 56eb31fc..7d3276c6 100644 --- a/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json +++ b/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831754451, - "modifiedTime": 1753831777547, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431066673, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8Lipw3RRKDgBVP0p" } diff --git a/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json index b9c4242d..dfbb4906 100644 --- a/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json +++ b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753795001576, - "modifiedTime": 1753808405822, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430443629, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!01izMUSJcAUo79IX" } diff --git a/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json b/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json index 3dd7d463..ca0b07d7 100644 --- a/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json +++ b/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836689082, - "modifiedTime": 1754845945327, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430185213, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XRChepscgr75Uug7" } diff --git a/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json b/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json index abef59b7..9eb20491 100644 --- a/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json +++ b/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828194643, - "modifiedTime": 1753828233213, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430636989, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PC5EyEIq7NWBV0n5" } diff --git a/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json b/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json index ae0f0398..f7f748ae 100644 --- a/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json +++ b/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833614959, - "modifiedTime": 1753833653403, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431211441, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YcS1rHgfnSlla8Xf" } diff --git a/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json b/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json index 00034072..63ed7753 100644 --- a/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json +++ b/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827787429, - "modifiedTime": 1753827801986, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430553429, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fbDYUja3ll9vCtrB" } diff --git a/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json b/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json index 916958c9..699b06ae 100644 --- a/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json +++ b/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832483435, - "modifiedTime": 1753832502167, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431071691, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!AokqTusPzn0hghkE" } diff --git a/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json b/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json index 9e188b9f..dba962aa 100644 --- a/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json +++ b/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829680830, - "modifiedTime": 1753829701111, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430702556, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!5faflfNz20cFW1EM" } diff --git a/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json b/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json index f4d8d52a..83ef5820 100644 --- a/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json +++ b/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json @@ -168,6 +168,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -181,12 +186,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833663905, - "modifiedTime": 1754406631151, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431216258, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!n1oPTk5czTIGTkVj" } diff --git a/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json b/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json index abd09941..fb41b73f 100644 --- a/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json +++ b/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836256052, - "modifiedTime": 1753836294025, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431424609, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IoMVDz92WVvfGGdc" } diff --git a/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json b/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json index 7d211d92..e6fefe1c 100644 --- a/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json +++ b/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829780930, - "modifiedTime": 1753829802107, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430707621, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SLFrK0WmldPo0shz" } diff --git a/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json b/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json index 6b9af93d..920985fa 100644 --- a/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json +++ b/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797203355, - "modifiedTime": 1753797247008, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430470813, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QEvgVoz9xKBSKsGi" } diff --git a/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json b/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json index b5d7559f..29ccef77 100644 --- a/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json +++ b/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832142373, - "modifiedTime": 1753832160787, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431087258, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QZrWAkprA2tL2MOI" } diff --git a/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json b/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json index 959a8547..10bbaf8c 100644 --- a/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json +++ b/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753827734892, - "modifiedTime": 1754814769821, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430559304, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1cwWNt4sqlgA8gCT" } diff --git a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json index 852a213f..2a7e0db6 100644 --- a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json +++ b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json @@ -20,11 +20,12 @@ }, "cost": [ { - "key": "armorSlot", + "key": "resource", + "itemId": "armorSlot", "value": 1, - "keyIsID": false, "scalable": false, - "step": null + "step": null, + "consumeOnSuccess": false } ], "effects": [ @@ -137,6 +138,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -189,12 +195,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1753795181779, - "modifiedTime": 1753808413753, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1756325575921, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_key": "!items!EmFTp9wzT6MHSaNz" } diff --git a/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json b/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json index 6394645b..45924203 100644 --- a/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json +++ b/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json @@ -164,6 +164,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -177,12 +182,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831124348, - "modifiedTime": 1753831194254, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430854985, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2Fbf2cxLfbdGkU4I" } diff --git a/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json b/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json index ac1fdb6a..b0915863 100644 --- a/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json +++ b/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828109370, - "modifiedTime": 1753828127762, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430563597, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cw7HG1Z7hp7OOLD0" } diff --git a/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json b/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json index c3c4b5d6..0ce2a676 100644 --- a/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json +++ b/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835098261, - "modifiedTime": 1753835125696, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431277893, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Fk69R40svV0kanZD" } diff --git a/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json b/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json index 42839516..601ac04e 100644 --- a/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json +++ b/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827943490, - "modifiedTime": 1753827960371, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430570250, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CWrbnethuILXrEpA" } diff --git a/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json b/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json index fe6e34bb..74b81e48 100644 --- a/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json +++ b/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827894955, - "modifiedTime": 1753827907060, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430575107, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iStO0BbeMTTR0rQi" } diff --git a/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json b/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json index 153220f1..8a97fe05 100644 --- a/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json +++ b/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831203997, - "modifiedTime": 1753831225429, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430861829, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!C5wSGglR8e0euQnY" } diff --git a/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json b/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json index 2a3a6095..86145c0f 100644 --- a/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json +++ b/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832332785, - "modifiedTime": 1753832367770, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431095042, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xm1yU7k58fMgXxRR" } diff --git a/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json b/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json index 4463cef4..9b43770c 100644 --- a/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json +++ b/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834935521, - "modifiedTime": 1753835006406, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431282742, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nXjuBa215H1sTUK3" } diff --git a/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json b/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json index 35cf3dd6..44487b58 100644 --- a/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json +++ b/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828411828, - "modifiedTime": 1753828446546, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430641953, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!j8cdNeIUYxxzFVji" } diff --git a/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json b/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json index 2d54aa50..82f90f23 100644 --- a/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json +++ b/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831084805, - "modifiedTime": 1753831108928, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430867175, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G7rH31KQ5eEZXcv0" } diff --git a/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json b/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json index f9637a9e..7441238b 100644 --- a/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json +++ b/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831304971, - "modifiedTime": 1753831327540, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430872430, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!JdWcn9W1edhAEInL" } diff --git a/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json b/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json index 65b0a657..0c28d943 100644 --- a/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json +++ b/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835136460, - "modifiedTime": 1753835169098, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431287604, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fJHKMxZokVP34MCi" } diff --git a/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json b/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json index 5dba19c9..d4c8bb5b 100644 --- a/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json +++ b/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829844531, - "modifiedTime": 1753829859088, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430717775, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ykF3jouxHZ6YR8Bg" } diff --git a/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json b/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json index f71b63b2..e10f1fd7 100644 --- a/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json +++ b/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833915734, - "modifiedTime": 1753834249920, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431221418, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BtCm2RhWEfs00g38" } diff --git a/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json b/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json index 6696a3fb..d37f7142 100644 --- a/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json +++ b/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832095587, - "modifiedTime": 1753832129589, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431100825, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xLJ5RRpUoTRmAC3G" } diff --git a/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json b/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json index 48087189..16237fff 100644 --- a/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json +++ b/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836170763, - "modifiedTime": 1753836240655, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431431739, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3vti3xfo0wJND7ew" } diff --git a/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json b/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json index e8e14abb..ac039ece 100644 --- a/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json +++ b/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836449043, - "modifiedTime": 1753836485751, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431436926, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uK1RhtYAsDeoPNGx" } diff --git a/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json b/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json index a5d39bea..2a3853ea 100644 --- a/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json +++ b/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json @@ -93,6 +93,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -106,12 +111,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833724570, - "modifiedTime": 1753833788108, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431226770, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6gFvOFTE97QZ74Zr" } diff --git a/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json b/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json index bf6423c5..ff8d606b 100644 --- a/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json +++ b/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833878513, - "modifiedTime": 1753833907298, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431231849, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ctTgFfMbM3YtmsYU" } diff --git a/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json b/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json index e9372819..f92fa49f 100644 --- a/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json +++ b/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829584359, - "modifiedTime": 1753829600720, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430712705, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!VwcOgqnzjf9LBj2S" } diff --git a/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json b/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json index d1b43470..b0a515e1 100644 --- a/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json +++ b/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828268892, - "modifiedTime": 1753828300354, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430650322, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wG9f5NpCwSbaLy8t" } diff --git a/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json b/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json index 760cd787..585473ad 100644 --- a/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json +++ b/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744418464, - "modifiedTime": 1753794424526, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430265968, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iEzPscUc18GuFoB6" } diff --git a/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json b/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json index 40092016..64800e1b 100644 --- a/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json +++ b/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829810496, - "modifiedTime": 1753829836266, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430723754, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MXBpbqQsZFln4rZk" } diff --git a/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json b/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json index 91ab35c3..24a37b60 100644 --- a/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json +++ b/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828546209, - "modifiedTime": 1753828572366, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430656056, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Yk8pTEmyLLi4095S" } diff --git a/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json b/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json index 88d68120..c3cfc91a 100644 --- a/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json +++ b/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827812456, - "modifiedTime": 1753827837860, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430580231, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!70ysaFJDREwTgvZa" } diff --git a/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json b/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json index 76ef57d5..5ddc4cf0 100644 --- a/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json +++ b/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828005240, - "modifiedTime": 1753828027571, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430586032, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!qT7FfmauAumOjJoq" } diff --git a/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json index dfb94b82..1a6d341f 100644 --- a/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json +++ b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json @@ -25,7 +25,7 @@ "amount": 1 }, "roll": { - "trait": "agility", + "trait": "strength", "type": "attack", "difficulty": null, "bonus": null, @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.6", "createdTime": 1753828229603, - "modifiedTime": 1753828259599, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755633052433, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Vayg7CnRTFBrunjM" } diff --git a/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json b/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json index 79b179e2..0c00da28 100644 --- a/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json +++ b/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831233943, - "modifiedTime": 1753831254600, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430877137, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0lAkBEUvbM9Osmqb" } diff --git a/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json b/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json index 0733bc22..bf29dc34 100644 --- a/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json +++ b/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832169515, - "modifiedTime": 1753832195344, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431106242, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1R4uzOpWD8bkYRUm" } diff --git a/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json b/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json index 9dfce730..20370546 100644 --- a/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json +++ b/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835328057, - "modifiedTime": 1753835363359, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431292435, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MyGz8nd5sieRQ7zl" } diff --git a/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json b/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json index 7cbbeaec..61ce4d99 100644 --- a/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json +++ b/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744526958, - "modifiedTime": 1753794520954, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430274014, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zxKt6qXe7uZB6ljm" } diff --git a/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json b/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json index b16488ce..18da1680 100644 --- a/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json +++ b/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828308338, - "modifiedTime": 1753828333546, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430667859, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3whiedn0jBMNRdIb" } diff --git a/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json b/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json index 39a16ddb..42d6b73e 100644 --- a/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json +++ b/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json @@ -164,6 +164,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -177,12 +182,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753796778752, - "modifiedTime": 1753796892053, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430455807, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!RAIaoMi6iO1PKIlK" } diff --git a/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json b/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json index b4c48925..a3aad851 100644 --- a/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json +++ b/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -154,10 +159,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836652314, - "modifiedTime": 1754845988869, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430156096, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XjPQjhRCH08VUIbr" } diff --git a/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json b/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json index 5d2ad638..51bb46e8 100644 --- a/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json +++ b/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834324778, - "modifiedTime": 1753834352088, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431237332, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TMrUzVC3KvcHmdt8" } diff --git a/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json b/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json index 5dd794d9..ca842d59 100644 --- a/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json +++ b/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json @@ -22,7 +22,6 @@ { "key": "hope", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835022121, - "modifiedTime": 1753835056093, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431297704, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Zg6IutksQVOqAg8K" } diff --git a/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json b/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json index 69744aab..2fa3de9b 100644 --- a/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json +++ b/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -159,10 +164,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836714712, - "modifiedTime": 1754845960700, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430190586, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "N9P695V5KKlJbAY5", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json b/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json index ace2d7f5..4fc65837 100644 --- a/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json +++ b/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830663702, - "modifiedTime": 1753830688044, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430881797, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!kENTDpa1hr5LDhIT" } diff --git a/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json b/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json index 78a1d9ce..32ef07e2 100644 --- a/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json +++ b/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829159520, - "modifiedTime": 1753829179084, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430728755, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nxGUpuHLmuKdKsDC" } diff --git a/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json b/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json index 69e46858..9828108d 100644 --- a/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json +++ b/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753829098118, - "modifiedTime": 1754814935815, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430733489, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OcKeLJxvmdT81VBc" } diff --git a/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json b/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json index 4ebf336e..9607f5dd 100644 --- a/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json +++ b/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829524850, - "modifiedTime": 1753829540618, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430738916, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!55NwHIIZHUeKSE3M" } diff --git a/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json b/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json index 57ead715..f72fd026 100644 --- a/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json +++ b/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829336088, - "modifiedTime": 1753829379988, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430744857, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ddRjXnp2vbohu7rJ" } diff --git a/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json b/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json index 09e93778..509be257 100644 --- a/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json +++ b/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829275876, - "modifiedTime": 1753829295031, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430751928, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ScjTkb9qrndhlk9S" } diff --git a/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json b/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json index a55aedd0..e6227e27 100644 --- a/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json +++ b/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830887023, - "modifiedTime": 1753830918763, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430886600, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!f7hhHlZ5nL3AhYEM" } diff --git a/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json b/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json index 1ee640bb..09fc7d78 100644 --- a/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json +++ b/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830729041, - "modifiedTime": 1753830753601, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430892102, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!N5amhkxR1xn3B7r2" } diff --git a/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json b/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json index d8b91be7..b10eb764 100644 --- a/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json +++ b/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794386984, - "modifiedTime": 1753795053642, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430314424, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!3T3o9zfe61t22L1H" } diff --git a/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json b/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json index 9b239f60..ab3f7d21 100644 --- a/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json +++ b/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831031130, - "modifiedTime": 1753831074766, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430897181, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LCuTrYXi4lhg6LqW" } diff --git a/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json b/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json index 28cad987..eae9543b 100644 --- a/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json +++ b/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829188168, - "modifiedTime": 1753829211950, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430760464, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FPX4ouDrxXiQ5MDf" } diff --git a/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json b/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json index bc88174b..ac5197ed 100644 --- a/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json +++ b/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829414070, - "modifiedTime": 1753829436559, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430766141, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!F9PETfCQGwczBPif" } diff --git a/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json b/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json index 818c0f55..d9bc2a64 100644 --- a/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json +++ b/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830697026, - "modifiedTime": 1753830717920, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430905049, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wFOXMN2uiX4j6Gd9" } diff --git a/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json b/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json index 63e7f363..8227c35d 100644 --- a/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json +++ b/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794476404, - "modifiedTime": 1753794517681, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430322922, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XEDRkuw3BhMoVBn9" } diff --git a/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json b/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json index 246a4dff..05f8955c 100644 --- a/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json +++ b/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830762576, - "modifiedTime": 1753830786247, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430910158, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jMEukC3VpNDz5AOD" } diff --git a/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json b/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json index 70531b7c..c22323d0 100644 --- a/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json +++ b/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -150,10 +155,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836674233, - "modifiedTime": 1754845992757, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430164612, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "L5KeCtrs768PmYWW", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json b/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json index 737e2c55..8922d621 100644 --- a/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json +++ b/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json @@ -17,7 +17,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -129,6 +128,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -143,10 +147,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836612291, - "modifiedTime": 1754846018260, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430225855, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "ZJsetdHKV77ygtCE", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json b/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json index 18b98cc0..f23b203e 100644 --- a/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json +++ b/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829548741, - "modifiedTime": 1753829574677, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430771841, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!NacNonjbzyoVMNhI" } diff --git a/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json b/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json index b064b1c2..c6e71c36 100644 --- a/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json +++ b/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829133179, - "modifiedTime": 1753829150848, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430779350, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QyBZ5NxM8F9nCL9s" } diff --git a/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json b/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json index 3c079674..a4c469e3 100644 --- a/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json +++ b/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829219204, - "modifiedTime": 1753829233784, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430785076, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zSLx52U4Yltqx8F1" } diff --git a/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json b/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json index 54b220a5..03975811 100644 --- a/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json +++ b/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829305566, - "modifiedTime": 1753829326219, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430790792, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BEmAR60PM3ZaiNXa" } diff --git a/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json b/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json index 27808573..229d1682 100644 --- a/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json +++ b/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829388946, - "modifiedTime": 1753829406872, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430796102, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!LFPH8nD2f4Blv3AM" } diff --git a/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json b/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json index 64404db7..1bc01015 100644 --- a/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json +++ b/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830798994, - "modifiedTime": 1753830839524, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430915852, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SKNwkW23eVQjN4Zy" } diff --git a/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json b/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json index 49be7813..6d76129a 100644 --- a/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json +++ b/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json @@ -100,18 +100,24 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ { "name": "Protective", - "description": "Add your character's Tier to your Armor Score", + "description": "Add the item's Tier to your Armor Score
", "img": "icons/skills/melee/shield-block-gray-orange.webp", "changes": [ { "key": "system.armorScore", "mode": 2, - "value": "ITEM.@system.tier" + "value": "ITEM.@system.tier", + "priority": null } ], "_id": "cXWSV50apzaNQkdA", @@ -120,7 +126,12 @@ "disabled": false, "duration": { "startTime": null, - "combat": null + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null }, "origin": null, "tint": "#ffffff", @@ -132,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753794098464, - "modifiedTime": 1753794098464, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1761503800669, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items.effects!DlinEBGZfIlvreO3.cXWSV50apzaNQkdA" } @@ -152,12 +163,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744776245, - "modifiedTime": 1753794098472, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430336489, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DlinEBGZfIlvreO3" } diff --git a/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json b/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json index a97d7e10..4d61a5aa 100644 --- a/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json +++ b/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830930043, - "modifiedTime": 1753835907269, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430920982, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tj26lbNkwy8bORF4" } diff --git a/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json b/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json index ec704881..6ed121f7 100644 --- a/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json +++ b/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829484986, - "modifiedTime": 1753829516515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430802429, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6ZWl6ARfvYBaAMwY" } diff --git a/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json b/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json index 5ff31862..f9c5246e 100644 --- a/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json +++ b/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830852208, - "modifiedTime": 1753830874554, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430927432, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Mn8ja5Oi1sXvvPSk" } diff --git a/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json b/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json index c2704b4d..adae8915 100644 --- a/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json +++ b/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753744566951, - "modifiedTime": 1755268322555, + "modifiedTime": 1755430345968, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!rSyBNRwemBVuTo3H" diff --git a/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json b/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json index 5685ac71..2b85fbb5 100644 --- a/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json +++ b/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753794291887, - "modifiedTime": 1755268329308, + "modifiedTime": 1755430352669, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!nMuF8ZDZ2aXZVTg6" diff --git a/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json index 367f80ad..32c080ff 100644 --- a/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json +++ b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json @@ -92,48 +92,14 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, - "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" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, @@ -144,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829443743, - "modifiedTime": 1753829474262, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430807883, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!j5Pt1thLfcvopBij" } diff --git a/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json b/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json index b612daef..ef768788 100644 --- a/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json +++ b/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794198427, - "modifiedTime": 1753794267315, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430358886, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bxt3NsbMqTSdI5ab" } diff --git a/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json b/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json index 951b4115..54eaac9f 100644 --- a/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json +++ b/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753830985241, - "modifiedTime": 1753831019167, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430932717, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6d9B2b5X2d2U56jt" } diff --git a/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json b/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json index 115195a7..17615b31 100644 --- a/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json +++ b/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829240673, - "modifiedTime": 1753829265352, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430814443, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!pxaN4ZK4eqKrjtWj" } diff --git a/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json index 1035131d..b52bf465 100644 --- a/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json +++ b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794353291, - "modifiedTime": 1753808384267, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430364486, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ftTp8VlsBQ1r4LFD" } diff --git a/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json b/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json index d934731d..46acc280 100644 --- a/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json +++ b/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753831418620, - "modifiedTime": 1754815023493, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430940256, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!q382JqMkqLaaFLIr" } diff --git a/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json b/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json index fafe9bbc..714f3b5d 100644 --- a/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json +++ b/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829611315, - "modifiedTime": 1753829635422, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430819669, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!U8gfyvxoHm024inM" } diff --git a/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json b/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json index f2f53dc7..3cb214bd 100644 --- a/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json +++ b/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json @@ -123,6 +123,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -138,10 +143,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753797258168, - "modifiedTime": 1754814600761, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430475899, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SFqganS8Du4aEKjQ" } diff --git a/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json b/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json index fe91f8a1..051c759a 100644 --- a/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json +++ b/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832206440, - "modifiedTime": 1753832248436, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431111826, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ijWppQzSOqVCb3rE" } diff --git a/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json b/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json index b402692f..9a448ab2 100644 --- a/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json +++ b/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -159,10 +164,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836717240, - "modifiedTime": 1754845972571, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430202136, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "gA2tiET9VHGhwMoO", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json b/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json index ba769375..f9aabadf 100644 --- a/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json +++ b/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835451334, - "modifiedTime": 1753835475492, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431441720, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!umADDPYCaykXDc1v" } diff --git a/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json b/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json index c7376573..3d08b628 100644 --- a/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json +++ b/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834500236, - "modifiedTime": 1753834519405, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431304811, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1nztpLzoHGfbKf5x" } diff --git a/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json b/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json index 32d19734..6375e1b6 100644 --- a/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json +++ b/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753834430378, - "modifiedTime": 1754814961454, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431309986, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!y3hfTPfZhMognyaJ" } diff --git a/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json b/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json index 51bc4ea3..9a66906b 100644 --- a/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json +++ b/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834862922, - "modifiedTime": 1753834882694, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431317436, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1G6xX2QL9O0Rsgz7" } diff --git a/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json b/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json index 99950a86..a04487f0 100644 --- a/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json +++ b/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834710917, - "modifiedTime": 1753834734158, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431326087, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Rpyz0jbFJ1SwqfyD" } diff --git a/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json b/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json index 02b8cdce..322b3b27 100644 --- a/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json +++ b/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834616464, - "modifiedTime": 1753834659439, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431331293, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GmTg3Fdne1UPNs8t" } diff --git a/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json b/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json index 5c7977cc..e3f0f656 100644 --- a/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json +++ b/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835724086, - "modifiedTime": 1753835787515, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431447143, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!o3rsLvImcLAx5TvD" } diff --git a/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json b/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json index 9d55a327..31776620 100644 --- a/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json +++ b/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835522076, - "modifiedTime": 1753835564865, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431453215, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!PReWrfuPjoNQuieo" } diff --git a/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json b/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json index 3a22dde7..adcc5fe1 100644 --- a/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json +++ b/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797131628, - "modifiedTime": 1753797154423, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430482260, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IrtUj0UntBMNn49G" } diff --git a/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json b/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json index a7dbbfc5..b0eb6642 100644 --- a/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json +++ b/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835957503, - "modifiedTime": 1753835997508, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431458779, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jDtvEabkHY1GFgfc" } diff --git a/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json b/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json index cfd0cfc6..654ddaa8 100644 --- a/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json +++ b/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -162,12 +167,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834526945, - "modifiedTime": 1753834554233, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431336357, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zMZ46F9VR7zdTxb9" } diff --git a/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json b/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json index caeb9c2e..38c67ecf 100644 --- a/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json +++ b/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834772989, - "modifiedTime": 1753834797363, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431341765, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1AuMNiJz96Ez9fur" } diff --git a/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json b/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json index 2c56cdaa..563d52fa 100644 --- a/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json +++ b/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835486056, - "modifiedTime": 1753835507874, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431464517, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0HmhnZnv1I6uX69c" } diff --git a/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json b/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json index 35e53a9a..cbb44354 100644 --- a/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json +++ b/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797168339, - "modifiedTime": 1753797192489, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430487677, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!32nYyMaeDWaakSxz" } diff --git a/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json b/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json index 73886272..5459f230 100644 --- a/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json +++ b/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835579627, - "modifiedTime": 1753835606935, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431470561, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DWLkswhluXuMy3bB" } diff --git a/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json b/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json index d337d32f..b5f1b74e 100644 --- a/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json +++ b/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json @@ -99,6 +99,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 55, + "artist": "" } }, "effects": [ @@ -150,10 +155,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836676831, - "modifiedTime": 1754846000470, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430177593, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "S6nB0CNlzdU05o5U", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json b/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json index 622fcf12..a9b35948 100644 --- a/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json +++ b/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json @@ -17,7 +17,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -129,6 +128,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -143,10 +147,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836615437, - "modifiedTime": 1754846023338, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430241189, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_id": "Xt8tVSn5Fu6ly6LF", "sort": 0, diff --git a/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json b/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json index 333632dc..fdcc899a 100644 --- a/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json +++ b/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834890609, - "modifiedTime": 1753834925920, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431350371, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Utt1GpoH1fhaTOtN" } diff --git a/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json b/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json index 636dd7a5..fd755a94 100644 --- a/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json +++ b/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834472085, - "modifiedTime": 1753834491863, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431355505, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!14abPqQcROJfDChR" } diff --git a/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json b/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json index e037c5c8..535bba46 100644 --- a/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json +++ b/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834566762, - "modifiedTime": 1753834581202, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431360506, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!RsDsy7tIhrhaAQQc" } diff --git a/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json b/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json index b4ea03f9..401d6c96 100644 --- a/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json +++ b/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834677366, - "modifiedTime": 1753834698077, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431365622, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1ZciqG7vIKLYpKsP" } diff --git a/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json b/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json index bbdf3ad9..b4df7c8c 100644 --- a/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json +++ b/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834740751, - "modifiedTime": 1753834763060, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431370823, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BakN97v4jTePcXiZ" } diff --git a/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json b/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json index 8081d1ce..da3a5f42 100644 --- a/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json +++ b/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835615004, - "modifiedTime": 1753835665790, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431477112, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mcj3CPkcSSDdAcBB" } diff --git a/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json b/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json index 421df201..696c9650 100644 --- a/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json +++ b/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json @@ -100,18 +100,24 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ { "name": "Protective", - "description": "Add your character's Tier to your Armor Score", + "description": "Add the item's Tier to your Armor Score
", "img": "icons/skills/melee/shield-block-gray-orange.webp", "changes": [ { "key": "system.armorScore", "mode": 2, - "value": "ITEM.@system.tier" + "value": "ITEM.@system.tier", + "priority": null } ], "_id": "Z2p00q5h6x6seXys", @@ -120,7 +126,12 @@ "disabled": false, "duration": { "startTime": null, - "combat": null + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null }, "origin": null, "tint": "#ffffff", @@ -132,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753796983285, - "modifiedTime": 1753796983285, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1761503825366, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items.effects!A28WL9E2lJ3iLZHW.Z2p00q5h6x6seXys" } @@ -152,12 +163,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753796968563, - "modifiedTime": 1753797012196, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430492843, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!A28WL9E2lJ3iLZHW" } diff --git a/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json b/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json index 92d9b49c..afb3ef97 100644 --- a/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json +++ b/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835822353, - "modifiedTime": 1753835867763, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431483750, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!IZ4CWNxfuM46JeCN" } diff --git a/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json b/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json index 0cf8c3de..7e439d04 100644 --- a/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json +++ b/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834834626, - "modifiedTime": 1753834854507, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431376890, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!j7kp36jaetfn5jb3" } diff --git a/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json b/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json index 9a3c1f13..44844553 100644 --- a/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json +++ b/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835676579, - "modifiedTime": 1753835813150, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431489948, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!D3SbNvNJZAFuzfhg" } diff --git a/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json b/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json index 4c1a13a3..4e6ace3f 100644 --- a/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json +++ b/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753796913551, - "modifiedTime": 1755268362375, + "modifiedTime": 1755430497769, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dEumq3BIZBk5xYTk" diff --git a/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json b/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json index 67d58df9..8381111e 100644 --- a/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json +++ b/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753797057472, - "modifiedTime": 1755268370240, + "modifiedTime": 1755430502860, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Px3Rh3kIvAqyISxJ" diff --git a/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json index bfdcd4eb..1f76d2aa 100644 --- a/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json +++ b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json @@ -92,48 +92,14 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, - "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" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, @@ -144,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834806427, - "modifiedTime": 1753834827595, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431384407, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4e5pWxi2qohuGsWh" } diff --git a/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json b/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json index 7e62f1aa..39d7b7c5 100644 --- a/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json +++ b/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797026049, - "modifiedTime": 1753797043015, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430508197, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MaJIROht7A9LxIZx" } diff --git a/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json b/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json index be8b131b..c58aab9e 100644 --- a/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json +++ b/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835923888, - "modifiedTime": 1753835965485, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431495832, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wPjg0LufJH9vUfVM" } diff --git a/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json b/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json index b449fca5..5970022d 100644 --- a/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json +++ b/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834588280, - "modifiedTime": 1753834609113, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431389974, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!W9ymfEDck2icfvla" } diff --git a/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json index b4b8bf02..736db796 100644 --- a/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json +++ b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753797101746, - "modifiedTime": 1753808440137, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430513049, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Wcdbf6yS3LEt7nsg" } diff --git a/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json b/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json index 9bb97d2b..72aa2931 100644 --- a/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json +++ b/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 54, + "artist": "" } }, "effects": [], @@ -145,10 +149,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836579296, - "modifiedTime": 1754846015528, - "lastModifiedBy": "H02dtt2xvVJvYESk" + "modifiedTime": 1755430218981, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iaGnlUkShBgdeMo0" } diff --git a/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json b/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json index e20f9111..39a0582f 100644 --- a/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json +++ b/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828135552, - "modifiedTime": 1753828159427, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430591132, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YfVs6Se903az4Yet" } diff --git a/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json b/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json index c5d9070b..b58eb1d5 100644 --- a/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json +++ b/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827769163, - "modifiedTime": 1753827781183, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430596498, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Iv8BZM1R24QMT72M" } diff --git a/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json b/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json index 529e3874..f074eaba 100644 --- a/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json +++ b/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827843717, - "modifiedTime": 1753827858825, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430601987, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cKQCDyM2UopDL9zF" } diff --git a/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json b/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json index f609e409..27725351 100644 --- a/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json +++ b/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753834259866, - "modifiedTime": 1753834310221, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431242468, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!XKBmBUEoGLdLcuqQ" } diff --git a/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json b/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json index daa68be1..9f46d9be 100644 --- a/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json +++ b/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836385650, - "modifiedTime": 1753836419000, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431501404, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jGykNGQiKm63tCiE" } diff --git a/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json b/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json index e7809a76..d92bc921 100644 --- a/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json +++ b/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832261628, - "modifiedTime": 1753832286780, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431117685, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Gi26Zk9VqlAAgx3E" } diff --git a/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json b/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json index 420f28b8..bd682fac 100644 --- a/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json +++ b/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json @@ -129,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -181,12 +186,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836123608, - "modifiedTime": 1753836160033, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431507969, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!BdLfy5i488VZgkjP" } diff --git a/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json b/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json index c4a796a7..05b1f08b 100644 --- a/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json +++ b/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794685727, - "modifiedTime": 1753794748494, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430370186, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!taAZDkDCpeNgxhnn" } diff --git a/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json index 417fae15..f75537d3 100644 --- a/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json +++ b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json @@ -22,7 +22,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -137,6 +136,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [ @@ -189,12 +193,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753796723376, - "modifiedTime": 1753808423862, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430461362, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!bW3xw5S9DbaLCN3E" } diff --git a/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json b/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json index e3dd3035..d6c5b2cb 100644 --- a/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json +++ b/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json @@ -123,6 +123,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 53, + "artist": "" } }, "effects": [], @@ -138,10 +143,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753797317938, - "modifiedTime": 1754814518028, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430518095, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!SxcblanBvqaest3A" } diff --git a/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json b/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json index 7526e8c1..2f6fcbb9 100644 --- a/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json +++ b/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827915482, - "modifiedTime": 1753827935877, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430606837, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mlIj88p1wcQNjEDG" } diff --git a/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json b/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json index 01e1cbf2..7b6129ce 100644 --- a/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json +++ b/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827969157, - "modifiedTime": 1753827996285, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430611691, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zkAgEW6zMkRZalEm" } diff --git a/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json b/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json index 350d8b4f..fd0b1900 100644 --- a/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json +++ b/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832298659, - "modifiedTime": 1753832323983, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431122548, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!i8CqVTzqoRoCewNe" } diff --git a/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json b/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json index 5fcd1214..5884b401 100644 --- a/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json +++ b/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753794760906, - "modifiedTime": 1753794803866, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430383420, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!FtsQGwOg3r8uUCST" } diff --git a/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json b/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json index e20c840e..1d6d48e9 100644 --- a/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json +++ b/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828345143, - "modifiedTime": 1753828368281, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430673452, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4fQpVfQ3NVwTHStA" } diff --git a/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json b/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json index 9c71aa5c..c00a90b6 100644 --- a/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json +++ b/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json @@ -19,8 +19,7 @@ "key": "stress", "value": 1, "scalable": true, - "step": 1, - "keyIsID": false + "step": 1 } ], "_id": "x9cz8u1utQ6DtoKA", @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835247877, - "modifiedTime": 1753835276839, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431395791, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!E9QDh5o9eQ1Qx0kH" } diff --git a/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json b/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json index c49aa7dd..c0f32445 100644 --- a/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json +++ b/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json @@ -100,18 +100,24 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ { "name": "Protective", - "description": "Add your character's Tier to your Armor Score", + "description": "Add the item's Tier to your Armor Score
", "img": "icons/skills/melee/shield-block-gray-orange.webp", "changes": [ { "key": "system.armorScore", "mode": 2, - "value": "ITEM.@system.tier" + "value": "ITEM.@system.tier", + "priority": null } ], "_id": "M70a81e0Mg66jHRL", @@ -120,7 +126,12 @@ "disabled": false, "duration": { "startTime": null, - "combat": null + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null }, "origin": null, "tint": "#ffffff", @@ -132,12 +143,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753794114980, - "modifiedTime": 1753794114980, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1761503774632, + "lastModifiedBy": "fBcTgyTzoARBvohY" }, "_key": "!items.effects!mxwWKDujgsRcZWPT.M70a81e0Mg66jHRL" } @@ -152,12 +163,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753742068200, - "modifiedTime": 1753794114990, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430279232, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!mxwWKDujgsRcZWPT" } diff --git a/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json b/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json index ce7fe3bc..533f7ca9 100644 --- a/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json +++ b/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833802007, - "modifiedTime": 1753833831195, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431248793, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EG6mZhr3ib56r974" } diff --git a/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json b/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json index c7a686e7..a4393081 100644 --- a/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json +++ b/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json @@ -166,6 +166,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -179,12 +184,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828453134, - "modifiedTime": 1753835916388, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430678619, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!GZh345N8fmuS4Jeh" } diff --git a/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json b/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json index 4348fbee..0c95d62e 100644 --- a/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json +++ b/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831343009, - "modifiedTime": 1753831365565, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430946684, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!acPGwIaUhx3R0mTq" } diff --git a/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json b/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json index 424f762d..70b697e6 100644 --- a/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json +++ b/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828079904, - "modifiedTime": 1753828100575, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430616717, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!p9tdjQr2AZP19RYm" } diff --git a/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json b/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json index ed9f9492..73f7985a 100644 --- a/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json +++ b/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828380553, - "modifiedTime": 1753828404541, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430683436, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vHDHG3STcxTEfYAM" } diff --git a/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json b/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json index 8e1c9d03..05f355eb 100644 --- a/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json +++ b/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -167,9 +172,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753741549716, - "modifiedTime": 1755268286538, + "modifiedTime": 1755430284749, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cjGZpXCoshEqi1FI" diff --git a/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json b/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json index fcadecf6..34159ba9 100644 --- a/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json +++ b/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836075703, - "modifiedTime": 1753836131553, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431513330, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1N1jggda5DfdzdMj" } diff --git a/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json b/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json index b37a1027..ab3945ae 100644 --- a/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json +++ b/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json @@ -155,6 +155,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [ @@ -207,12 +212,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835064119, - "modifiedTime": 1753835089195, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431401912, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!OxsEmffWriiQmqJK" } diff --git a/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json b/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json index 1a11cab5..e824ea75 100644 --- a/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json +++ b/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -161,9 +166,9 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.4", + "systemVersion": "1.0.5", "createdTime": 1753744141625, - "modifiedTime": 1755268300204, + "modifiedTime": 1755430291284, "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!wKklDxs5nkzILNp4" diff --git a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json index 77ba9a93..2432a75b 100644 --- a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json +++ b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json @@ -92,48 +92,14 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, - "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" - } - ], + "effects": [], "sort": 0, "ownership": { "default": 0, @@ -144,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828035153, - "modifiedTime": 1753828072360, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430621466, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TF85tKJetUjLwh54" } diff --git a/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json b/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json index f4f34d63..f3932e9c 100644 --- a/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json +++ b/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json @@ -164,6 +164,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -177,12 +182,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832511150, - "modifiedTime": 1753832558389, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431128203, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!O1w8KPYH85ZS8X64" } diff --git a/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json b/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json index 9b9d691a..29ff25a8 100644 --- a/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json +++ b/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -166,10 +171,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753794535926, - "modifiedTime": 1754814481212, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430389345, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!vzyzFwLUniWZV1rt" } diff --git a/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json b/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json index a7d7cd60..f869f8d2 100644 --- a/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json +++ b/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829710295, - "modifiedTime": 1753829730643, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430825877, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!6bkbw4Ap644KZGvJ" } diff --git a/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json b/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json index 58d4a7c7..141d92c1 100644 --- a/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json +++ b/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json @@ -18,7 +18,6 @@ { "key": "hope", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 50, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753835178086, - "modifiedTime": 1753835227169, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431409725, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1jOJHHKdtk3s2jaY" } diff --git a/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json b/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json index 7985574e..90a857ab 100644 --- a/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json +++ b/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836015665, - "modifiedTime": 1753836060729, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431519254, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TVPCWnSELOVBv6G1" } diff --git a/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json b/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json index fb6c6f98..c3a4c20c 100644 --- a/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json +++ b/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 48, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753832378140, - "modifiedTime": 1753832420169, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431133663, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!jlLtgK468rO5IssR" } diff --git a/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json b/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json index cec5b0d1..5b370f70 100644 --- a/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json +++ b/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753836302436, - "modifiedTime": 1754815251135, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755431525815, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!I1nDGpulg29GpWOW" } diff --git a/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json b/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json index 874dfc5f..850f79a6 100644 --- a/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json +++ b/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [ @@ -157,12 +162,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753742294258, - "modifiedTime": 1753742986604, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430296399, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!C9aWpK1shVMWP4m5" } diff --git a/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json b/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json index b1fad87b..d971f0c5 100644 --- a/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json +++ b/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753829648524, - "modifiedTime": 1753829674190, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430831515, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!zGm6Wa1fGF6cECY5" } diff --git a/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json b/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json index d990e614..e500c15f 100644 --- a/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json +++ b/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json @@ -92,6 +92,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [], @@ -105,12 +110,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753828516647, - "modifiedTime": 1753828537368, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430688603, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ItWisJFNGMNWeaCV" } diff --git a/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json b/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json index 46471b7f..425c9ea1 100644 --- a/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json +++ b/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json @@ -22,7 +22,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -137,6 +136,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [ @@ -189,12 +193,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831377291, - "modifiedTime": 1753831408550, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430952360, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tP6vmnrmTq2h5sj7" } diff --git a/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json b/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json index 76b82f6a..3fbea383 100644 --- a/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json +++ b/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 51, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753836344144, - "modifiedTime": 1753836369996, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431531704, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ZrRGNjGCgZTTfgDG" } diff --git a/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json b/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json index 5d65a310..2db63c9d 100644 --- a/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json +++ b/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 46, + "artist": "" } }, "effects": [ @@ -161,10 +166,10 @@ "exportSource": null, "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "1.0.0", + "systemVersion": "1.0.5", "createdTime": 1753829740082, - "modifiedTime": 1754814992370, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755430838534, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!z6yEdFYQJ5IzgTX3" } diff --git a/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json b/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json index 0804236c..7668ae21 100644 --- a/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json +++ b/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json @@ -100,6 +100,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 45, + "artist": "" } }, "effects": [ @@ -152,12 +157,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753827866228, - "modifiedTime": 1753827888903, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430626466, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!ZXh1GQahBiODfSTC" } diff --git a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json index b354f5f4..36490a5d 100644 --- a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json +++ b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json @@ -18,7 +18,6 @@ { "key": "stress", "value": 1, - "keyIsID": false, "scalable": false, "step": null } @@ -130,6 +129,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 52, + "artist": "" } }, "effects": [], @@ -143,12 +147,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753744226240, - "modifiedTime": 1753808365384, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430301656, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!CmtWqw6DwoePnX7W" } diff --git a/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json b/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json index 743aef06..bc8dea0d 100644 --- a/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json +++ b/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 49, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753833840059, - "modifiedTime": 1753833870464, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755431254653, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8Z5QrThfwkYPXNco" } diff --git a/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json b/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json index f096cbc4..79ec0577 100644 --- a/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json +++ b/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json @@ -122,6 +122,11 @@ "trait": null } } + }, + "attribution": { + "source": "Daggerheart SRD", + "page": 47, + "artist": "" } }, "effects": [], @@ -135,12 +140,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1753831267751, - "modifiedTime": 1753831296579, - "lastModifiedBy": "FecEtPuoQh6MpjQ0" + "modifiedTime": 1755430958208, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!0XpSBYXxtywvBFQi" } diff --git a/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json b/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json index ece610c0..a1bc9f84 100644 --- a/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json +++ b/src/packs/journals/journal_Daggerheart_SRD_uNs7ne9VCbbu5dcG.json @@ -125,7 +125,7 @@ "image": {}, "text": { "format": 1, - "content": "Daggerheart is a conversation. The GM describes fictional scenarios involving the PCs, and the players take turns describing how their characters react. The goal of every person at the table is to build upon everyone elseβs ideas and collaboratively tell a satisfying story. The system facilitates this collaborative process by providing structure to the conversation and mechanics for resolving moments of tension where fate or fortune determine the outcome of events.
To get the most out of Daggerheart, we recommend players keep the following principles and practices in mind throughout each session:
Be a fan of your character and their journey.
Spotlight your friends.
Address the characters and address the players.
Build the world together.
Play to find out what happens.
Hold on gently.
Embrace danger.
Use your resources.
Tell the story.
Discover your character.
For more information, see the Daggerheart Core Rulebook, pages 9 and 108.
The core gameplay loop is the procedure that drives every scene, both in and out of combat:
The GM describes a scenario, establishing the PCsβ surroundings and any dangers, NPCs, or other important details the characters would notice.
The players ask clarifying questions to explore the scene more deeply and gather information that could inform their charactersβ actions. The GM responds to these questions by giving the players information their characters could easily obtain, or by asking questions of their own to the players. The players also respond to any questions the GM poses to them.
In this way, the table builds out the fiction collaboratively.
As the scene develops, the players find opportunities to take actionβproblems to solve, obstacles to overcome, mysteries to investigate, and so on. The players describe how their characters proceed; if their proposed actions carry no chance of failure (or if failure would be boring), they automatically succeed. But if the outcome of their action is unknown, the GM calls for an action roll. Either way, the table works the outcome into the story and moves the fiction forward, narrating how the PCβs actions have changed things.
The process repeats from the beginning, with the GM relaying any updated details or material changes to the players. This process continues until the end of the scene is triggered by a mechanic or arrives organically.
The spotlight is a symbol that represents the tableβs attentionβand therefore the immediate focus of both the narrative and the game mechanics. Any time a character or player becomes the focus of a scene, they βare in the spotlightβ or βhave the spotlight.β
The spotlight moves around the table organically as scenes unfold unless a mechanical trigger determines where the spotlight goes next. For example, when a player fails an action roll, the mechanics prompt the GM to seize the spotlight and make a GM move.
Daggerheartβs turns donβt follow a traditional, rigid format:
there is no explicit initiative mechanic and characters donβt have a set number of actions they can take or things they can do before the spotlight passes to someone else. A player with the spotlight describes what their character does and the spotlight simply swings to whoever:
the fiction would naturally turn it toward
hasnβt had the focus in a while, or
a triggered mechanic puts it on
Optional: Spotlight Tracker Tool
If your group prefers a more traditional action economy, you can use tokens to track how many times a player has had the spotlight: At the start of a session or scene, each player adds a certain number of tokens (we recommend 3) to their character sheet and removes a token each time they take an action. If the spotlight would swing to someone without any tokens, it swings to someone else instead. Once every player has used all their available tokens, players refill their character sheet with the same number of tokens as before, then continue playing.
Any time a character does something to advance the story, such as speaking with another character, interacting with the environment, making an attack, casting a spell, or using a class feature, they are making a move.
Any move where success would be trivial or failure would be boring automatically succeeds, but any move thatβs difficult to accomplish or risky to attempt triggers an action roll.
All action rolls require a pair of d12s called Duality Dice.
These are two visually distinct twelve-sided dice, with one die representing Hope and the other representing Fear.
To make an action roll, you roll the Duality Dice, sum the results, apply any relevant modifiers, and compare the total to a Difficulty number to determine the outcome:
Success with Hope: If your total meets or beats the difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a βSuccess with Hope.β You succeed and gain a Hope.
Success with Fear: If your total meets or beats the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a βSuccess with Fear.β You succeed with a cost or complication, but the GM gains a Fear.
Failure with Hope: If your total is less than the Difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a βFailure with Hope.β You fail with a minor consequence and gain a Hope, then the spotlight swings to the GM.
Failure with Fear: If your total is less than the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a βFailure with Fear.β You fail with a major consequence and the GM gains a Fear, then the spotlight swings to the GM.
Critical Success: If the Duality Dice show matching results, you rolled a βCritical Successβ (βCritβ). You automatically succeed with a bonus, gain a Hope, and clear a Stress. If this was an attack roll, you deal critical damage.
Note: A Critical Success counts as a roll βwith Hope.β
After resolving the action roll, the table works together to weave the outcome into the narrative and play continues.
In Daggerheart, every time you roll the dice, the scene changes in some way. There is no such thing as a roll where βnothing happens,β because the fiction constantly evolves based on the successes and failures of the characters.
The following steps describe in more detail the procedure that all action rolls utilize:
Some actions and effects specify in their description which trait applies to the roll; otherwise, the GM tells the acting player which character trait best applies to the action being attempted. If more than one trait could apply to the roll, the GM chooses or lets the acting player decide.
Some actions and features say in their description what the Difficulty is. Otherwise, the GM determines the Difficulty based on the scenario. The GM can choose whether to share the Difficulty with the table. In either case, the GM should communicate the potential consequences of failure to the acting player.
The acting player decides whether to Utilize an Experience or activate other effects, then, if applicable, adds the appropriate tokens and dice (such as advantage or Rally dice) to their dice pool.
Note: Unless an action, ability, or feature specifically allows for it, a player must declare the use of any Experiences, extra dice, or other modifiers before they roll.
The acting player rolls their entire dice pool and announces the results in the format of β[total result] with [Hope/Fear]ββ or βCritical Success!β in the case of matching Duality Dice.
Example: A player is making an action roll with a +1 in the relevant trait and no other modifiers; they roll the Duality Dice and get a result of 5 on their Hope Die and 7 on their Fear Die, then announce βI rolled a 13 with Fear!β
The active player and the GM work together, along with the suggestions and support of the rest of the table, to resolve the outcome of the action.
GMs also make moves. They should consider making a move when a player does one of the following things:
Rolls with Fear on an action roll.
Fails an action roll.
Does something that would have consequences.
Gives them a golden opportunity.
Looks to them for what happens next.
After the GM turn is done, the spotlight goes back to the PCs.
Many adversaries and environments have Fear Features, especially powerful or consequential moves that the GM must spend Fear to activate.
Note: This Fear is in addition to any Fear the GM has previously spent to seize the spotlight or activate another action or ability.
When play passes to the GM, the GM can make a GM move to spotlight an adversary. A spotlighted adversary can:
Move within Close range and make a standard attack
Move within Close range and use an adversary action
Clear a condition
Sprint within Far or Very Far range on the battlefield
Do anything else the fiction demands or the GM deems appropriate
The GM can spend additional Fear to spotlight additional adversaries. Once the GM has finished, the spotlight swings back to the PCs.
Some rolls have unique specifications or otherwise modify the action roll procedure: trait rolls, Spellcast Rolls, attack rolls, and damage rolls. Unless otherwise noted, you can apply any bonus, modifier, or effect to a special roll as if it were a standard action roll.
An action roll that specifies which character trait applies to it is called a trait roll. In the text of a feature or effect, a trait roll is referenced with the format β[Trait] Roll (Difficulty)β (e.g., βAgility Roll (12)β). If the text of an effect doesnβt specify a trait rollβs Difficulty, the GM sets the Difficulty based on the circumstances.
Features and effects that affect a trait roll also affect any action roll that uses the same trait, including attack rolls, Spellcast rolls, and standard action rolls.
Example: The katariβs ancestry feature βFeline Instincts,β which allows the katari to reroll an Agility Roll, can also be used on a standard action roll using Agility to traverse dangerous terrain or on an attack roll made with a weapon that uses Agility.
Spellcast Rolls are trait rolls that require you to use your Spellcast trait. Your Spellcast trait, if you have one, is determined by your subclass.
Spellcast Rolls are only made when a character uses a feature that requires one. A successful Spellcast Roll activates the effect as described by the feature.
Notes: A Spellcast Roll that can damage a target is also considered an attack roll.
When you cast a spell, the text tells you when the effect ends. The GM can spend a Fear to end a temporary effect. If your spell doesnβt specify when it ends, it ends when you choose or at a natural moment of the story. You can choose to end your spell early.
You can cast and maintain the effects of more than one spell at the same time.
A reaction roll is made in response to an attack or a hazard, representing a characterβs attempt to avoid or withstand an imminent effect.
Reaction rolls work like action rolls, except they donβt generate Hope or Fear, donβt trigger additional GM moves, and other characters canβt aid you with Help an Ally.
If you critically succeed on a reaction roll, you donβt clear a Stress or gain a Hope, but you do ignore any effects that would have impacted you on a success, such as taking damage or marking Stress.
When multiple PCs take action together, the party chooses one PC to lead the action. Each other player then describes how their character collaborates on the task. The leader makes an action roll as usual, while the other players make reaction rolls using whichever traits they and the GM decide fit best.
The lead character gains a +1 bonus to their lead action roll for each of these reaction rolls that succeeded and a β1 penalty for each these reaction rolls that failed.
Each player can, once per session, initiate a Tag Team Roll between their character and another PC by spending 3 Hope. The players work with one another to describe how they combine their actions in a unique and exciting way. Both players make separate action rolls; before resolving the rollβs outcome, choose one of the rolls to apply to both actions. On a roll with Hope, all PCs involved gain a Hope. On a roll with Fear, the GM gains a Fear token for each PC involved.
On a successful Tag Team attack roll, both players roll damage and add the totals together to determine the damage dealt, which is then treated as if it came from a single source. If the attacks deal different types of damage, the players choose which type to deal.
Notes:
A Tag Team Roll counts as a single action roll for the purposes of any countdowns or features that track action rolls.
Though each player may only initiate one Tag Team Roll per session, one PC can be involved in multiple Tag Team Rolls.
Some features and effects let you roll with advantage or disadvantage on an action or reaction roll:
Advantage represents an opportunity that you seize to increase your chances of success. When you roll with advantage, you roll a d6 advantage die with your dice pool and add its result to your total.
Disadvantage represents an additional difficulty, hardship, or challenge you face when attempting an action. When you roll with disadvantage, you roll a d6 disadvantage die with your dice pool and subtract its result from your total.
Advantage or disadvantage can be granted or imposed by mechanical triggers or at the GMβs discretion. When a PC aids you with Help an Ally, they roll their own advantage die and you add it to your total.
Advantage and disadvantage dice cancel each out, one-for-one, when they would be added to the same dice pool, so youβll never roll both at the same time. If you have advantage or disadvantage from other sources that donβt affect your own dice pool, such as another playerβs Help an Ally move, their effects stack with your rolled results.
Hope and Fear are metacurrencies representing the cosmic forces that shape the events of your tableβs story. Hope powers PC abilities and features, while Fear powers the abilities of the GM and the adversaries and environments they control.
Every PC starts with 2 Hope at character creation and gains more throughout play. A PC can have a maximum of 6 Hope at one time, and Hope carries over between sessions.
Players can spend Hope to:
Help an Ally
When you Help an Ally who is making an action roll, describe how you do so and roll an advantage die. Multiple players can spend Hope to help the same acting player, but that player only adds the highest result to their final total.
Utilize an Experience
When you Utilize an Experience on a relevant roll, add its modifier to the result. You can spend multiple Hope to utilize multiple Experiences.
Initiate a Tag Team Roll
Spend 3 Hope to initiate a Tag Team roll, combining the actions of two PCs into one impressive act of synergy. When you make a Tag Team roll, both players roll their action rolls and then choose which set of results to apply to the outcome.
Activate a Hope Feature
A Hope Feature is any effect that allows (or requires) you to spend a specified amount of Hope to activate it. Class Hope features are class-specific features, detailed on your character sheet, that cost 3 Hope to activate
Note: When using a Hope Feature, if you rolled with Hope for that action, the Hope you gain from that roll can be spent on that feature (or toward it, if it requires spending multiple Hope).
The GM gains Fear whenever a player rolls with Fear and can spend Fear at any time to make or enhance a GM move or to use a Fear Feature. The GM can have up to 12 Fear at one time. Fear carries over between sessions.
Though Daggerheart relies on the same flow of collaborative storytelling in and out of combat, physical conflicts rely more heavily on several key mechanics related to attacking, maneuvering, and taking damage.
Evasion represents a characterβs ability to avoid attacks and other unwanted effects. Any roll made against a PC has a Difficulty equal to the targetβs Evasion. A PCβs base Evasion is determined by their class, but can be modified by domain cards, equipment, conditions, and other effects.
Note: attacks rolled against adversaries use the targetβs Difficulty instead of Evasion.
Hit Points (HP) represent a characterβs ability to withstand physical injury. When a character takes damage, they mark 1 to 3 HP, based on their damage thresholds:
If the final damage is at or above the characterβs Severe damage threshold, they mark 3 HP.
If the final damage is at or above the characterβs Major damage threshold but below their Severe damage threshold, they mark 2 HP.
If the final damage is below the characterβs Major damage threshold, they mark 1 HP.
If incoming damage is ever reduced to 0 or less, no HP is marked.
A PCβs damage thresholds are calculated by adding their level to the listed damage thresholds of their equipped armor. A PCβs starting HP is based on their class, but they can gain additional Hit Points through advancements, features, and other effects.
An adversaryβs Damage Thresholds and HP are listed in their stat blocks.
When a character marks their last Hit Point, they fall. If a PC falls, they make a death move.
Characters can clear Hit Points by taking downtime moves (see: Downtime) or by activating relevant special abilities or effects.
Optional Rule: Massive Damage
If a character ever takes damage equal to twice their Severe threshold, they mark 4 HP instead of 3.
Stress represents how much mental, physical, and emotional strain a character can endure. Some special abilities or effects require the character activating them to mark Stress, and the GM can require a PC to mark Stress as a GM move or to represent the cost, complication, or consequence of an action roll.
When a character marks their last Stress, they become Vulnerable (see: Conditions) until they clear at least 1 Stress.
When a character must mark 1 or more Stress but canβt, they mark 1 HP instead. A character canβt use a move that requires them to mark Stress if all of their Stress is marked.
PCs can clear Stress by making downtime moves (see: Downtime). A PCβs maximum Stress is determined by their class, but they can increase it through advancements, abilities, and other effects.
An attack roll is an action roll intended to inflict harm. The trait that applies to an attack roll is specified by the weapon or spell being used. Unarmed attack rolls use either Strength or Finesse (GMβs choice). An attack rollβs Difficulty, unless otherwise noted, is equal to the Difficulty score of its target.
On a successful attack, roll damage. Damage is calculated from the damage roll listed in the attackβs description with the format βxdy+[modifier]β (e.g., for a spell that inflicts β1d8+2β damage, you roll an eight-sided and add 2 to the result; the damage dealt is equal to the total).
Any time an effect says to deal damage using your Spellcast trait, you roll a number of dice equal to your Spellcast trait.
Note: If your Spellcast trait is +0 or lower, you donβt roll anything.
For weapons, the number of damage dice you roll is equal to your Proficiency. Note that your Proficiency multiplies the number of dice you roll, but doesnβt affect the modifier. For example, a PC with Proficiency 2 and wielding a weapon with adamage rating of βd8+2β deals damage equal to β2d8+2β on a successful attack.
Successful unarmed attacks inflict [Proficiency]d4 damage.
When you get a critical success (i.e., you roll matching values on your Duality Dice) on an attack roll, you deal extra damage.
Make the damage roll as usual, but add the maximum possible result of the damage dice to the final total. For instance, if an attack would normally deal 2d8+1 damage, a critical success would deal 2d8+1+16.
There are two damage types: physical damage (phy) and magic damage (mag). Unless stated otherwise, mundane weapons and unarmed attacks deal physical damage, and spells deal magic damage.
If a target has resistance to a damage type, then they reduce incoming damage of that type by half before comparing it to their Hit Point Thresholds. If the target has additional ways of reducing incoming damage, such as marking Armor Slots, they apply the resistance effect first. The effects of multiple resistances to the same damage type do not stack.
If a target has immunity to a damage type, they ignore incoming damage of that type.
If an attack deals both physical and magic damage, a character can only benefit from resistance or immunity if they are resistant or immune to both damage types.
Direct damage is damage that canβt be reduced by marking Armor Slots.
If a spell or ability allows you to target multiple adversaries, make one attack roll and one damage roll, then apply the results to each target individually.
Damage dealt simultaneously from multiple sources is always totaled before itβs compared to its targetβs damage thresholds.
For example, if a PC with orc ancestry makes a successful attack against a target in Melee range and decides to spend a Hope to use their βTusksβ feature (which gives them an extra 1d6 damage on a damage roll), they would roll their normal weapon damage and add a d6 to the result, then deal that total damage to the adversary.
You can play Daggerheart using βtheater of the mindβ or maps and miniatures. The conversions below from abstract ranges to physical measurements assume 1 inch of map represents about 5 feet of fictional space.
Daggerheart uses the following ranges to translate fictional positioning into relative distance for the purposes of targeting, movement, and other game mechanics:
Melee: Close enough to touch, up to a few feet away.
Very Close: Close enough to see fine details, about 5β10 feet away. While in danger, a character can move, as part of their action, from Very Close range into Melee range. On a map: anything within the shortest length of a game card (2-3 inches).
Close: Close enough to see prominent details, about 10β30 feet away. While in danger, a character can move, as part of their action, from Close range into Melee range. On a map: anything within the length of a pencil (5-6 inches).
Far: Close enough to see very little detail, about 30β100 feet away. While in danger, a character must make an Agility Roll to safely move from Far range into Melee range. On a map: anything within the length of the long edge of a piece of copy paper (11β12 inches).
Very Far: Too far to make out any details, about 100β300 feet away. While in danger, a character must make an Agility Roll to safely move from Very Far range into Melee range. On a map: anything beyond Far range, but still within the bounds of the conflict or scene.
Out of Range: Anything beyond a characterβs Very Far range is Out of Range and usually canβt be targeted.
Range is measured from the source of an effect, such as the attacker or spellcaster, to the target or object of an effect.
A weapon, spell, ability, item, or other effectβs stated range is a maximum range; unless otherwise noted, it can be used at closer distances.
Optional Rule: Defined Ranges
If your table would rather operate with more precise range rules, you can use a 1-inch grid battle map during combat.
If you do, use the following guidelines for play:
Melee: 1 square
Very Close: 3 squares
Close: 6 squares
Far: 12 squares
Very Far: 13+ squares
Out of Range: Off the battlemap
When youβre under pressure or in danger and make an action roll, you can move to a location within Close range as part of that action. If youβre not already making an action roll, or if you want to move farther than your Close range, you need to succeed on an Agility Roll to safely reposition yourself.
An adversary can move within Close range for free as part of an action, or within Very Far range as a separate action.
Unless stated otherwise, all the targets of a group effect must be within Very Close range of a single origin point within your effectβs range.
Unless stated otherwise, a ranged attacker must have line of sight to their intended target to make an attack roll. If a partial obstruction lies between the attacker and target, the target has cover. Attacks made through cover are rolled with disadvantage. If the obstruction is total, there is no line of sight.
Conditions are effects that grant specific benefits or drawbacks to the target they are attached to.
Daggerheart has three standard conditions:
While youβre out of sight from all enemies and they donβt otherwise know your location, you gain the Hidden condition. Any rolls against a Hidden creature have disadvantage. After an adversary moves to where they would see you, you move into their line of sight, or you make an attack, you are no longer Hidden.
Restrained characters canβt move, but you can still take actions from their current position.
When a creature is Vulnerable, all rolls targeting them have advantage.
Some features can apply special or unique conditions, which work as described in the feature text.
Unless otherwise noted, the same condition canβt be applied more than once to the same target.
The temporary tag denotes a condition or effect that the affected creature can clear by making a move against it. When an affected PC makes a move to clear a temporary condition or effect, it normally requires a successful action roll using an appropriate trait. When an affected adversary makes a move to clear a temporary condition or effect, the GM puts the spotlight on the adversary and describes how they do it; this doesnβt require a roll but it does use up that adversaryβs spotlight.
Special conditions are only cleared when specific requirements are met, such as completing a certain action or using a particular item. The requirements for clearing these conditions are stated in the text of the effect that applies the condition.
Between conflicts, the party can take a rest to recover expended resources and deepen their bonds. During a rest, each PC can make up to two downtime moves.
When the party rests, they must choose between a short rest and a long rest. If a party takes three short rests in a row, their next rest must be a long rest.
If a short rest is interrupted, such as by an adversary's attack, the characters donβt gain its benefits. If a long rest is interrupted, the characters only gain the benefits of a short rest.
A short rest lasts enough time for the party to catch its breath, about an hour in-world. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):
Tend to Wounds: Clear 1d4+Tier Hit Points for yourself or an ally.
Clear Stress: Clear 1d4+Tier Stress.
Repair Armor: Clear 1d4+Tier Armor Slots from your or an allyβs armor.
Prepare: Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.
At the end of a short rest, any features or effects with a limited number of uses per rest refresh and any features or effects that last until your next rest expire.
A long rest is when the characters make camp and relax or sleep for several in-game hours. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):
Tend to All Wounds: Clear all Hit Points for yourself or an ally.
Clear All Stress: Clear all Stress.
Repair All Armor: Clear all Armor Slots from your or an allyβs armor
Prepare: Describe how you prepare for the next dayβs adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.
Work on a Project: With GM approval, a PC may pursue a long-term project, such as deciphering an ancient text or crafting a new weapon. The first time they start a new project, assign it a countdown. Each time a PC makes the Work on a Project move, they either advance their projectβs countdown automatically or make an action roll to advance it (GMβs choice).
At the end of a long rest, any features or effects with a limited number of uses per rest or per long rest refresh and any features or effects that last until your next rest or until your next long rest expire.
On a short rest, the GM gains 1d4 Fear. On a long rest, they gain Fear equal to 1d4 + the number of PCs, and they can advance a long-term countdown of their choice.
When a PC marks their last Hit Point, they must make a death move by choosing one of the following options:
Blaze of Glory: Your character embraces death and goes out in a blaze of glory. Take one final action. It automatically critically succeeds (with GM approval), and then you cross through the veil of death.
Avoid Death: Your character avoids death and faces the consequences. They temporarily drop unconscious, and then you work with the GM to describe how the situation worsens. While unconscious, your character canβt move or act, and they canβt be targeted by an attack. They return to consciousness when an ally clears 1 or more of their marked Hit Points or when the party finishes a long rest. After your character falls unconscious, roll your Hope Die. If its value is equal to or less than your characterβs level, they gain a scar: permanently cross out a Hope slot and work with the GM to determine its lasting narrative impact and how, if possible, it can be restored. If you ever cross out your last Hope slot, your characterβs journey ends.
Risk It All: Roll your Duality Dice. If the Hope Die is higher, your character stays on their feet and clears a number of Hit Points or Stress equal to the value of the Hope Die (you can divide the Hope Die value between Hit Points and Stress however youβd prefer). If the Fear Die is higher, your character crosses through the veil of death. If the Duality Dice show matching results, your character stays up and clears all Hit Points and Stress.
If your character dies, work with the GM before the next session to create a new character at the current level of the rest of the party.
The following rules apply to many aspects of the game.
This game doesnβt use fractions; if you need to round to a whole number, round up unless otherwise specified. When in doubt, resolve any ambiguity in favor of the PCs.
When a feature allows you to reroll a die, you always take the new result unless the feature specifically says otherwise.
Incoming damage means the total damage from a single attack or source, before Armor Slots are marked.
If the resolution order of multiple effects is unclear, the person in control of the effects (player or GM) decides what order to resolve them in.
Unless stated otherwise, all effects beside conditions and advantage/disadvantage can stack.
If an effect doesnβt have a listed mechanical expiration, it only ends when decided by the controlling player, the GM, or the demands of the fiction.
Unless an effect states otherwise, you canβt spend Hope or mark Stress multiple times on the same feature to increase or repeat its effects on the same roll.
If a feature allows you to affect a roll after the result has been totaled, you can use it after the GM declares whether the roll succeeds or fails, but not after the consequences unfold or another roll is made.
Your party levels up whenever the GM decides youβve reached a narrative milestone (usually about every 3 sessions). All party members level up at the same time.
Daggerheart has 10 PC levels divided into 4 tiers:
β Tier 1 encompasses level 1 only.
β Tier 2 encompasses levels 2β4.
β Tier 3 encompasses levels 5β7.
β Tier 4 encompasses levels 8β10.
Your tier affects your damage thresholds, tier achievements, and access to advancements.
Take any applicable tier achievements
At level 2, you gain a new Experience at +2 and permanently increase your Proficiency by 1.
At level 5, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.
At level 8, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.
Choose any two advancements with at least one unmarked slot from your tier or below. Options with multiple slots can be chosen more than once. When you choose an advancement, mark one of its slots.
When you choose to increase two unmarked character traits and mark them: Choose two unmarked character traits and gain a permanent +1 bonus to them. You canβt increase these stats again until the next tier (when your tier achievement allows you to clear those marks).
When you choose to permanently add 1 or more Hit Point slots: Darken the outline of the next rectangle in the Hit Point section of your character sheet in pen or permanent marker.
When you choose to permanently add 1 or more Stress slots: Darken the outline of the next rectangle in the Stress section of your character sheet in pen or permanent marker.
When you choose to increase your Experience: Choose two Experiences on your character sheet and gain a permanent +1 bonus to both.
When you take an additional domain card: You can choose an additional domain card at or below your level or from your classβs domains. If youβve multiclassed, you can instead select a card at or below half your level from your chosen multiclass domain.
When you choose to increase your Evasion: Gain a permanent +1 bonus to your Evasion.
When you choose to take an upgraded subclass card: Take the next card for your subclass. If you have only the foundation card, take a specialization; if you have a specialization already, take a mastery. Then cross out this tierβs multiclass option.
When you choose to increase your Proficiency: Fill in one of the open circles in the βProficiencyβ section of your character sheet, then increase your weaponβs number of damage dice by 1. The black box around this advancementβs slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.
When you choose to multiclass: Choose an additional class, select one of its domains, and gain its class feature. Add the appropriate multiclass module to your character sheet and take the foundation card from one of its subclasses. Then cross out the βupgraded subclassβ advancement option in this tier and all other βmulticlassβ advancement options on your character sheet. The black box around this advancementβs slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.
Increase all damage thresholds by 1.
Acquire a new domain card at your level or lower from one of your classβs domains and add it to your loadout or vault. If your loadout is already full, you canβt add the new card to it until you move another into your vault. You can also exchange one domain card youβve previously acquired for a different domain card of the same level or lower.
Starting at level 5, you can choose multiclassing as an option when leveling up. When you multiclass, you choose an additional class, gain access to one of its domains, and acquire its class feature. Take the appropriate multiclass module and add it to the right side of your character sheet, then choose a foundation card from one of its subclasses. If your foundation cards specify different Spellcast traits, you can choose which one to apply when making a Spellcast roll.
Whenever you have the option to acquire a new domain card, you can choose from cards at or below half your current level (rounded up) from the domain you chose when you selected the multiclass advancement.
Your equipped weapons and armor are the ones listed in the βActive Weaponsβ and βActive Armorβ sections of your character sheet. Your character can only attack with weapons, benefit from armor, and gain features from items they have equipped. You canβt equip weapons or armor with a higher tier than you.
PCs can carry up to two additional weapons in the βInventory Weaponβ areas of the character sheet.
You can swap an Inventory Weapon with an Active Weapon at no cost during a rest or moment of calm; otherwise, you must mark a Stress to do so.
Your character can only have one Active Armor at a time.
They canβt equip armor while in danger or under pressure; otherwise, they can equip or unequip armor without cost.
Each armor has its own Armor Slots; if your character unequips their armor, track how many of its Armor Slots are marked. You can't carry armor in your inventory. When your character equips or unequips armor, recalculate your damage thresholds.
All weapons have a tier, trait, range, damage die, damage type, and burden. Some weapons also have a feature.
A weaponβs category specifies whether it is a Primary or Secondary weapon. Your character can only equip up to one weapon of each category at a time.
A weaponβs trait specifies which trait to use when making an attack roll with it.
A weaponβs range specifies the maximum distance between the attacker and their target when attacking with it.
A weaponβs damage indicates the size of the damage dice you roll on a successful attack with it; you roll a number of dice equal to your Proficiency. If the damage includes a flat modifier, this number is added to the total damage rolled, but is not altered or affected by Proficiency.
A weaponβs damage type indicates whether it deals physical or magic damage. Weapons that deal magic damage can only be wielded by characters with a Spellcast trait.
A weaponβs burden indicates how many hands it occupies when equipped. Your characterβs maximum burden is 2 hands.
A weaponβs feature is a special rule that stays in effect while the weapon is equipped.
You can throw an equipped weapon at a target within Very Close range, making the attack roll with Finesse. On a success, deal damage as usual for that weapon. Once thrown, the weapon is no longer considered equipped. Until you retrieve and re-equip it, you canβt attack with it or benefit from its features.
By Mark Thompson
The combat wheelchair is a ruleset designed to help you play a wheelchair user in Daggerheart. This section provides mechanics and narrative guidance for you to work from, but feel free to adapt the flavor text to best suit your character. Have fun with your characterβs wheelchair design, and make it as unique or tailored to them as you please.
When describing how your character moves, you can use descriptions such as the following:
βI roll over to the door to see if itβs open.β
βI wheel myself over to the group to ask whatβs going on.β
βI pull my brakes and skid to a halt, turning in my seat to level my bow at the intruder.β
Here are some ways you might describe complications you encounter when your character uses their wheelchair:
βI pull my brakes, but I donβt think to account for the loose gravel on the ground.β
βI hit a patch of ice awkwardly and am sent skidding out past my target.β
βI go to push off in pursuit, but one of my front caster wheels snags on a crack in the pavement, stalling me for a moment.β
GMs should avoid breaking a character's wheelchair or otherwise removing it from play as a consequence, unless everyone at the table, especially the wheelchair userβs player, gives their approval.
Your character is assumed to be skilled in moving their wheelchair and navigating numerous situations in it. As a result, the only wheelchair that gives a penalty to a PC's Evasion is the Heavy Frame model.
All wheelchairs can be maneuvered using one or two hands outside of combat. However, when being used as a weapon, the chair is restricted to requiring one or two hands to perform attacks, depending on the model youβve chosen. If youβre playing a character who has limited to no mobility in their arms, their wheelchair can be attuned to them by magical means. For example, your character might use a psychic link to guide the chair around like a pseudo-electric wheelchair. All the rules presented here can be tailored and adapted to any character's needs.
All combat wheelchairs are equipped as Primary Weapons.
There are three models of wheelchair available: light, heavy, and arcane. Youβre encouraged to consider the type of character youβre playing and the class they belong to, then choose the model that best matches that character concept.
Every armor has a name, base damage thresholds, and a base Armor Score. Some armor also has a feature.
An armorβs base armor score indicates how many Armor Slots it provides its wearer before additional bonuses are added to calculate their total Armor Score. A PCβs Armor Score canβt exceed 12.
An armorβs base thresholds determine its wearerβs major and severe damage thresholds before adding bonuses to calculate their final damage thresholds.
An armorβs feature is a special rule that stays in effect while the armor is equipped.
While unarmored, your characterβs base Armor Score is 0, their Major threshold is equal to their level, and their Severe threshold is equal to twice their level.
When you take damage, you can mark one Armor Slot to reduce the number of Hit Points you would mark by one. If your character has an Armor Score of 0, you canβt mark Armor Slots. If an effect temporarily increases your Armor Score,
it increases your available Armor Slots by the same amount; when the effect ends, so does the availability of these Armor Slots.
Loot comprises any consumables or reusable items the party acquires.
Items can be used until sold, discarded, or lost.
To generate a random item, choose a rarity, roll the designated dice, and match the total to the item in the table:
Common: 1d12 or 2d12
Rare: 3d12 or 4d12
Uncommon: 2d12 or 3d12
Legendary: 4d12 or 5d12
@UUID[RollTable.KKqUrMMXPpm7uhYT]{Loot}
Consumables are loot that can only be used once. You can hold up to five of each consumable at a time. Using a consumable doesnβt require a roll unless required by the GM or the demands of the fiction.
To generate a random consumable, choose a rarity, roll the designated dice, and match the total to the item in the table:
Common: 1d12 or 2d12
Rare: 3d12 or 4d12
Uncommon: 2d12 or 3d12
Legendary: 4d12 or 5d12
@UUID[RollTable.wZXyi343PSVVwWB3]{Consumables}
Gold is an abstract measurement of how much wealth a character has, and is measured in handfuls, bags, and chests, with 10 handfuls to 1 bag, and 10 bags to 1 chest. When you have marked all of the slots in a category and you gain another gold reward in that category, mark a slot in the following category and clear all the slots in the current one.
For example, if you have 9 handfuls and gain another, you instead mark 1 bag and erase all handfuls. If you have 9 bags and gain another, you mark 1 chest and erase all bags.
You canβt have more than 1 chest, so if all your Gold slots are marked, youβll need to spend some of your gold or store it somewhere else before you can acquire more.
Optional Rule: Gold Coins
If your group wants to track gold with more granularity, you can add coins as your lowest denomination. Following the established pattern, 10 coins equal 1 handful.
Daggerheart is a conversation. The GM describes fictional scenarios involving the PCs, and the players take turns describing how their characters react. The goal of every person at the table is to build upon everyone elseβs ideas and collaboratively tell a satisfying story. The system facilitates this collaborative process by providing structure to the conversation and mechanics for resolving moments of tension where fate or fortune determine the outcome of events.
To get the most out of Daggerheart, we recommend players keep the following principles and practices in mind throughout each session:
Be a fan of your character and their journey.
Spotlight your friends.
Address the characters and address the players.
Build the world together.
Play to find out what happens.
Hold on gently.
Embrace danger.
Use your resources.
Tell the story.
Discover your character.
For more information, see the Daggerheart Core Rulebook, pages 9 and 108.
The core gameplay loop is the procedure that drives every scene, both in and out of combat:
The GM describes a scenario, establishing the PCsβ surroundings and any dangers, NPCs, or other important details the characters would notice.
The players ask clarifying questions to explore the scene more deeply and gather information that could inform their charactersβ actions. The GM responds to these questions by giving the players information their characters could easily obtain, or by asking questions of their own to the players. The players also respond to any questions the GM poses to them.
In this way, the table builds out the fiction collaboratively.
As the scene develops, the players find opportunities to take actionβproblems to solve, obstacles to overcome, mysteries to investigate, and so on. The players describe how their characters proceed; if their proposed actions carry no chance of failure (or if failure would be boring), they automatically succeed. But if the outcome of their action is unknown, the GM calls for an action roll. Either way, the table works the outcome into the story and moves the fiction forward, narrating how the PCβs actions have changed things.
The process repeats from the beginning, with the GM relaying any updated details or material changes to the players. This process continues until the end of the scene is triggered by a mechanic or arrives organically.
The spotlight is a symbol that represents the tableβs attentionβand therefore the immediate focus of both the narrative and the game mechanics. Any time a character or player becomes the focus of a scene, they βare in the spotlightβ or βhave the spotlight.β
The spotlight moves around the table organically as scenes unfold unless a mechanical trigger determines where the spotlight goes next. For example, when a player fails an action roll, the mechanics prompt the GM to seize the spotlight and make a GM move.
Daggerheartβs turns donβt follow a traditional, rigid format:
there is no explicit initiative mechanic and characters donβt have a set number of actions they can take or things they can do before the spotlight passes to someone else. A player with the spotlight describes what their character does and the spotlight simply swings to whoever:
the fiction would naturally turn it toward
hasnβt had the focus in a while, or
a triggered mechanic puts it on
Optional: Spotlight Tracker Tool
If your group prefers a more traditional action economy, you can use tokens to track how many times a player has had the spotlight: At the start of a session or scene, each player adds a certain number of tokens (we recommend 3) to their character sheet and removes a token each time they take an action. If the spotlight would swing to someone without any tokens, it swings to someone else instead. Once every player has used all their available tokens, players refill their character sheet with the same number of tokens as before, then continue playing.
Any time a character does something to advance the story, such as speaking with another character, interacting with the environment, making an attack, casting a spell, or using a class feature, they are making a move.
Any move where success would be trivial or failure would be boring automatically succeeds, but any move thatβs difficult to accomplish or risky to attempt triggers an action roll.
All action rolls require a pair of d12s called Duality Dice.
These are two visually distinct twelve-sided dice, with one die representing Hope and the other representing Fear.
To make an action roll, you roll the Duality Dice, sum the results, apply any relevant modifiers, and compare the total to a Difficulty number to determine the outcome:
Success with Hope: If your total meets or beats the difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a βSuccess with Hope.β You succeed and gain a Hope.
Success with Fear: If your total meets or beats the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a βSuccess with Fear.β You succeed with a cost or complication, but the GM gains a Fear.
Failure with Hope: If your total is less than the Difficulty AND your Hope Die shows a higher result than your Fear Die, you rolled a βFailure with Hope.β You fail with a minor consequence and gain a Hope, then the spotlight swings to the GM.
Failure with Fear: If your total is less than the Difficulty AND your Fear Die shows a higher result than your Hope Die, you rolled a βFailure with Fear.β You fail with a major consequence and the GM gains a Fear, then the spotlight swings to the GM.
Critical Success: If the Duality Dice show matching results, you rolled a βCritical Successβ (βCritβ). You automatically succeed with a bonus, gain a Hope, and clear a Stress. If this was an attack roll, you deal critical damage.
Note: A Critical Success counts as a roll βwith Hope.β
After resolving the action roll, the table works together to weave the outcome into the narrative and play continues.
In Daggerheart, every time you roll the dice, the scene changes in some way. There is no such thing as a roll where βnothing happens,β because the fiction constantly evolves based on the successes and failures of the characters.
The following steps describe in more detail the procedure that all action rolls utilize:
Some actions and effects specify in their description which trait applies to the roll; otherwise, the GM tells the acting player which character trait best applies to the action being attempted. If more than one trait could apply to the roll, the GM chooses or lets the acting player decide.
Some actions and features say in their description what the Difficulty is. Otherwise, the GM determines the Difficulty based on the scenario. The GM can choose whether to share the Difficulty with the table. In either case, the GM should communicate the potential consequences of failure to the acting player.
The acting player decides whether to Utilize an Experience or activate other effects, then, if applicable, adds the appropriate tokens and dice (such as advantage or Rally dice) to their dice pool.
Note: Unless an action, ability, or feature specifically allows for it, a player must declare the use of any Experiences, extra dice, or other modifiers before they roll.
The acting player rolls their entire dice pool and announces the results in the format of β[total result] with [Hope/Fear]ββ or βCritical Success!β in the case of matching Duality Dice.
Example: A player is making an action roll with a +1 in the relevant trait and no other modifiers; they roll the Duality Dice and get a result of 5 on their Hope Die and 7 on their Fear Die, then announce βI rolled a 13 with Fear!β
The active player and the GM work together, along with the suggestions and support of the rest of the table, to resolve the outcome of the action.
GMs also make moves. They should consider making a move when a player does one of the following things:
Rolls with Fear on an action roll.
Fails an action roll.
Does something that would have consequences.
Gives them a golden opportunity.
Looks to them for what happens next.
After the GM turn is done, the spotlight goes back to the PCs.
Many adversaries and environments have Fear Features, especially powerful or consequential moves that the GM must spend Fear to activate.
Note: This Fear is in addition to any Fear the GM has previously spent to seize the spotlight or activate another action or ability.
When play passes to the GM, the GM can make a GM move to spotlight an adversary. A spotlighted adversary can:
Move within Close range and make a standard attack
Move within Close range and use an adversary action
Clear a condition
Sprint within Far or Very Far range on the battlefield
Do anything else the fiction demands or the GM deems appropriate
The GM can spend additional Fear to spotlight additional adversaries. Once the GM has finished, the spotlight swings back to the PCs.
Some rolls have unique specifications or otherwise modify the action roll procedure: trait rolls, Spellcast Rolls, attack rolls, and damage rolls. Unless otherwise noted, you can apply any bonus, modifier, or effect to a special roll as if it were a standard action roll.
An action roll that specifies which character trait applies to it is called a trait roll. In the text of a feature or effect, a trait roll is referenced with the format β[Trait] Roll (Difficulty)β (e.g., βAgility Roll (12)β). If the text of an effect doesnβt specify a trait rollβs Difficulty, the GM sets the Difficulty based on the circumstances.
Features and effects that affect a trait roll also affect any action roll that uses the same trait, including attack rolls, Spellcast rolls, and standard action rolls.
Example: The katariβs ancestry feature βFeline Instincts,β which allows the katari to reroll an Agility Roll, can also be used on a standard action roll using Agility to traverse dangerous terrain or on an attack roll made with a weapon that uses Agility.
Spellcast Rolls are trait rolls that require you to use your Spellcast trait. Your Spellcast trait, if you have one, is determined by your subclass.
Spellcast Rolls are only made when a character uses a feature that requires one. A successful Spellcast Roll activates the effect as described by the feature.
Notes: A Spellcast Roll that can damage a target is also considered an attack roll.
When you cast a spell, the text tells you when the effect ends. The GM can spend a Fear to end a temporary effect. If your spell doesnβt specify when it ends, it ends when you choose or at a natural moment of the story. You can choose to end your spell early.
You can cast and maintain the effects of more than one spell at the same time.
A reaction roll is made in response to an attack or a hazard, representing a characterβs attempt to avoid or withstand an imminent effect.
Reaction rolls work like action rolls, except they donβt generate Hope or Fear, donβt trigger additional GM moves, and other characters canβt aid you with Help an Ally.
If you critically succeed on a reaction roll, you donβt clear a Stress or gain a Hope, but you do ignore any effects that would have impacted you on a success, such as taking damage or marking Stress.
When multiple PCs take action together, the party chooses one PC to lead the action. Each other player then describes how their character collaborates on the task. The leader makes an action roll as usual, while the other players make reaction rolls using whichever traits they and the GM decide fit best.
The lead character gains a +1 bonus to their lead action roll for each of these reaction rolls that succeeded and a β1 penalty for each these reaction rolls that failed.
Each player can, once per session, initiate a Tag Team Roll between their character and another PC by spending 3 Hope. The players work with one another to describe how they combine their actions in a unique and exciting way. Both players make separate action rolls; before resolving the rollβs outcome, choose one of the rolls to apply to both actions. On a roll with Hope, all PCs involved gain a Hope. On a roll with Fear, the GM gains a Fear token for each PC involved.
On a successful Tag Team attack roll, both players roll damage and add the totals together to determine the damage dealt, which is then treated as if it came from a single source. If the attacks deal different types of damage, the players choose which type to deal.
Notes:
A Tag Team Roll counts as a single action roll for the purposes of any countdowns or features that track action rolls.
Though each player may only initiate one Tag Team Roll per session, one PC can be involved in multiple Tag Team Rolls.
Some features and effects let you roll with advantage or disadvantage on an action or reaction roll:
Advantage represents an opportunity that you seize to increase your chances of success. When you roll with advantage, you roll a d6 advantage die with your dice pool and add its result to your total.
Disadvantage represents an additional difficulty, hardship, or challenge you face when attempting an action. When you roll with disadvantage, you roll a d6 disadvantage die with your dice pool and subtract its result from your total.
Advantage or disadvantage can be granted or imposed by mechanical triggers or at the GMβs discretion. When a PC aids you with Help an Ally, they roll their own advantage die and you add it to your total.
Advantage and disadvantage dice cancel each out, one-for-one, when they would be added to the same dice pool, so youβll never roll both at the same time. If you have advantage or disadvantage from other sources that donβt affect your own dice pool, such as another playerβs Help an Ally move, their effects stack with your rolled results.
Hope and Fear are metacurrencies representing the cosmic forces that shape the events of your tableβs story. Hope powers PC abilities and features, while Fear powers the abilities of the GM and the adversaries and environments they control.
Every PC starts with 2 Hope at character creation and gains more throughout play. A PC can have a maximum of 6 Hope at one time, and Hope carries over between sessions.
Players can spend Hope to:
Help an Ally
When you Help an Ally who is making an action roll, describe how you do so and roll an advantage die. Multiple players can spend Hope to help the same acting player, but that player only adds the highest result to their final total.
Utilize an Experience
When you Utilize an Experience on a relevant roll, add its modifier to the result. You can spend multiple Hope to utilize multiple Experiences.
Initiate a Tag Team Roll
Spend 3 Hope to initiate a Tag Team roll, combining the actions of two PCs into one impressive act of synergy. When you make a Tag Team roll, both players roll their action rolls and then choose which set of results to apply to the outcome.
Activate a Hope Feature
A Hope Feature is any effect that allows (or requires) you to spend a specified amount of Hope to activate it. Class Hope features are class-specific features, detailed on your character sheet, that cost 3 Hope to activate
Note: When using a Hope Feature, if you rolled with Hope for that action, the Hope you gain from that roll can be spent on that feature (or toward it, if it requires spending multiple Hope).
The GM gains Fear whenever a player rolls with Fear and can spend Fear at any time to make or enhance a GM move or to use a Fear Feature. The GM can have up to 12 Fear at one time. Fear carries over between sessions.
Though Daggerheart relies on the same flow of collaborative storytelling in and out of combat, physical conflicts rely more heavily on several key mechanics related to attacking, maneuvering, and taking damage.
Evasion represents a characterβs ability to avoid attacks and other unwanted effects. Any roll made against a PC has a Difficulty equal to the targetβs Evasion. A PCβs base Evasion is determined by their class, but can be modified by domain cards, equipment, conditions, and other effects.
Note: attacks rolled against adversaries use the targetβs Difficulty instead of Evasion.
Hit Points (HP) represent a characterβs ability to withstand physical injury. When a character takes damage, they mark 1 to 3 HP, based on their damage thresholds:
If the final damage is at or above the characterβs Severe damage threshold, they mark 3 HP.
If the final damage is at or above the characterβs Major damage threshold but below their Severe damage threshold, they mark 2 HP.
If the final damage is below the characterβs Major damage threshold, they mark 1 HP.
If incoming damage is ever reduced to 0 or less, no HP is marked.
A PCβs damage thresholds are calculated by adding their level to the listed damage thresholds of their equipped armor. A PCβs starting HP is based on their class, but they can gain additional Hit Points through advancements, features, and other effects.
An adversaryβs Damage Thresholds and HP are listed in their stat blocks.
When a character marks their last Hit Point, they fall. If a PC falls, they make a death move.
Characters can clear Hit Points by taking downtime moves (see: Downtime) or by activating relevant special abilities or effects.
Optional Rule: Massive Damage
If a character ever takes damage equal to twice their Severe threshold, they mark 4 HP instead of 3.
Stress represents how much mental, physical, and emotional strain a character can endure. Some special abilities or effects require the character activating them to mark Stress, and the GM can require a PC to mark Stress as a GM move or to represent the cost, complication, or consequence of an action roll.
When a character marks their last Stress, they become Vulnerable (see: Conditions) until they clear at least 1 Stress.
When a character must mark 1 or more Stress but canβt, they mark 1 HP instead. A character canβt use a move that requires them to mark Stress if all of their Stress is marked.
PCs can clear Stress by making downtime moves (see: Downtime). A PCβs maximum Stress is determined by their class, but they can increase it through advancements, abilities, and other effects.
An attack roll is an action roll intended to inflict harm. The trait that applies to an attack roll is specified by the weapon or spell being used. Unarmed attack rolls use either Strength or Finesse (GMβs choice). An attack rollβs Difficulty, unless otherwise noted, is equal to the Difficulty score of its target.
On a successful attack, roll damage. Damage is calculated from the damage roll listed in the attackβs description with the format βxdy+[modifier]β (e.g., for a spell that inflicts β1d8+2β damage, you roll an eight-sided and add 2 to the result; the damage dealt is equal to the total).
Any time an effect says to deal damage using your Spellcast trait, you roll a number of dice equal to your Spellcast trait.
Note: If your Spellcast trait is +0 or lower, you donβt roll anything.
For weapons, the number of damage dice you roll is equal to your Proficiency. Note that your Proficiency multiplies the number of dice you roll, but doesnβt affect the modifier. For example, a PC with Proficiency 2 and wielding a weapon with adamage rating of βd8+2β deals damage equal to β2d8+2β on a successful attack.
Successful unarmed attacks inflict [Proficiency]d4 damage.
When you get a critical success (i.e., you roll matching values on your Duality Dice) on an attack roll, you deal extra damage.
Make the damage roll as usual, but add the maximum possible result of the damage dice to the final total. For instance, if an attack would normally deal 2d8+1 damage, a critical success would deal 2d8+1+16.
There are two damage types: physical damage (phy) and magic damage (mag). Unless stated otherwise, mundane weapons and unarmed attacks deal physical damage, and spells deal magic damage.
If a target has resistance to a damage type, then they reduce incoming damage of that type by half before comparing it to their Hit Point Thresholds. If the target has additional ways of reducing incoming damage, such as marking Armor Slots, they apply the resistance effect first. The effects of multiple resistances to the same damage type do not stack.
If a target has immunity to a damage type, they ignore incoming damage of that type.
If an attack deals both physical and magic damage, a character can only benefit from resistance or immunity if they are resistant or immune to both damage types.
Direct damage is damage that canβt be reduced by marking Armor Slots.
If a spell or ability allows you to target multiple adversaries, make one attack roll and one damage roll, then apply the results to each target individually.
Damage dealt simultaneously from multiple sources is always totaled before itβs compared to its targetβs damage thresholds.
For example, if a PC with orc ancestry makes a successful attack against a target in Melee range and decides to spend a Hope to use their βTusksβ feature (which gives them an extra 1d6 damage on a damage roll), they would roll their normal weapon damage and add a d6 to the result, then deal that total damage to the adversary.
You can play Daggerheart using βtheater of the mindβ or maps and miniatures. The conversions below from abstract ranges to physical measurements assume 1 inch of map represents about 5 feet of fictional space.
Daggerheart uses the following ranges to translate fictional positioning into relative distance for the purposes of targeting, movement, and other game mechanics:
Melee: Close enough to touch, up to a few feet away.
Very Close: Close enough to see fine details, about 5β10 feet away. While in danger, a character can move, as part of their action, from Very Close range into Melee range. On a map: anything within the shortest length of a game card (2-3 inches).
Close: Close enough to see prominent details, about 10β30 feet away. While in danger, a character can move, as part of their action, from Close range into Melee range. On a map: anything within the length of a pencil (5-6 inches).
Far: Close enough to see very little detail, about 30β100 feet away. While in danger, a character must make an Agility Roll to safely move from Far range into Melee range. On a map: anything within the length of the long edge of a piece of copy paper (11β12 inches).
Very Far: Too far to make out any details, about 100β300 feet away. While in danger, a character must make an Agility Roll to safely move from Very Far range into Melee range. On a map: anything beyond Far range, but still within the bounds of the conflict or scene.
Out of Range: Anything beyond a characterβs Very Far range is Out of Range and usually canβt be targeted.
Range is measured from the source of an effect, such as the attacker or spellcaster, to the target or object of an effect.
A weapon, spell, ability, item, or other effectβs stated range is a maximum range; unless otherwise noted, it can be used at closer distances.
Optional Rule: Defined Ranges
If your table would rather operate with more precise range rules, you can use a 1-inch grid battle map during combat.
If you do, use the following guidelines for play:
Melee: 1 square
Very Close: 3 squares
Close: 6 squares
Far: 12 squares
Very Far: 13+ squares
Out of Range: Off the battlemap
When youβre under pressure or in danger and make an action roll, you can move to a location within Close range as part of that action. If youβre not already making an action roll, or if you want to move farther than your Close range, you need to succeed on an Agility Roll to safely reposition yourself.
An adversary can move within Close range for free as part of an action, or within Very Far range as a separate action.
Unless stated otherwise, all the targets of a group effect must be within Very Close range of a single origin point within your effectβs range.
Unless stated otherwise, a ranged attacker must have line of sight to their intended target to make an attack roll. If a partial obstruction lies between the attacker and target, the target has cover. Attacks made through cover are rolled with disadvantage. If the obstruction is total, there is no line of sight.
Conditions are effects that grant specific benefits or drawbacks to the target they are attached to.
Daggerheart has three standard conditions:
While youβre out of sight from all enemies and they donβt otherwise know your location, you gain the Hidden condition. Any rolls against a Hidden creature have disadvantage. After an adversary moves to where they would see you, you move into their line of sight, or you make an attack, you are no longer Hidden.
Restrained characters canβt move, but you can still take actions from their current position.
When a creature is Vulnerable, all rolls targeting them have advantage.
Some features can apply special or unique conditions, which work as described in the feature text.
Unless otherwise noted, the same condition canβt be applied more than once to the same target.
The temporary tag denotes a condition or effect that the affected creature can clear by making a move against it. When an affected PC makes a move to clear a temporary condition or effect, it normally requires a successful action roll using an appropriate trait. When an affected adversary makes a move to clear a temporary condition or effect, the GM puts the spotlight on the adversary and describes how they do it; this doesnβt require a roll but it does use up that adversaryβs spotlight.
Special conditions are only cleared when specific requirements are met, such as completing a certain action or using a particular item. The requirements for clearing these conditions are stated in the text of the effect that applies the condition.
Between conflicts, the party can take a rest to recover expended resources and deepen their bonds. During a rest, each PC can make up to two downtime moves.
When the party rests, they must choose between a short rest and a long rest. If a party takes three short rests in a row, their next rest must be a long rest.
If a short rest is interrupted, such as by an adversary's attack, the characters donβt gain its benefits. If a long rest is interrupted, the characters only gain the benefits of a short rest.
A short rest lasts enough time for the party to catch its breath, about an hour in-world. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):
Tend to Wounds: Clear 1d4+Tier Hit Points for yourself or an ally.
Clear Stress: Clear 1d4+Tier Stress.
Repair Armor: Clear 1d4+Tier Armor Slots from your or an allyβs armor.
Prepare: Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.
At the end of a short rest, any features or effects with a limited number of uses per rest refresh and any features or effects that last until your next rest expire.
A long rest is when the characters make camp and relax or sleep for several in-game hours. Each player can move domain cards between their loadout and vault for free, then choose twice from the following list of downtime moves (players can choose the same move twice):
Tend to All Wounds: Clear all Hit Points for yourself or an ally.
Clear All Stress: Clear all Stress.
Repair All Armor: Clear all Armor Slots from your or an allyβs armor
Prepare: Describe how you prepare for the next dayβs adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope.
Work on a Project: With GM approval, a PC may pursue a long-term project, such as deciphering an ancient text or crafting a new weapon. The first time they start a new project, assign it a countdown. Each time a PC makes the Work on a Project move, they either advance their projectβs countdown automatically or make an action roll to advance it (GMβs choice).
At the end of a long rest, any features or effects with a limited number of uses per rest or per long rest refresh and any features or effects that last until your next rest or until your next long rest expire.
On a short rest, the GM gains 1d4 Fear. On a long rest, they gain Fear equal to 1d4 + the number of PCs, and they can advance a long-term countdown of their choice.
When a PC marks their last Hit Point, they must make a death move by choosing one of the following options:
Blaze of Glory: Your character embraces death and goes out in a blaze of glory. Take one final action. It automatically critically succeeds (with GM approval), and then you cross through the veil of death.
Avoid Death: Your character avoids death and faces the consequences. They temporarily drop unconscious, and then you work with the GM to describe how the situation worsens. While unconscious, your character canβt move or act, and they canβt be targeted by an attack. They return to consciousness when an ally clears 1 or more of their marked Hit Points or when the party finishes a long rest. After your character falls unconscious, roll your Hope Die. If its value is equal to or less than your characterβs level, they gain a scar: permanently cross out a Hope slot and work with the GM to determine its lasting narrative impact and how, if possible, it can be restored. If you ever cross out your last Hope slot, your characterβs journey ends.
Risk It All: Roll your Duality Dice. If the Hope Die is higher, your character stays on their feet and clears a number of Hit Points or Stress equal to the value of the Hope Die (you can divide the Hope Die value between Hit Points and Stress however youβd prefer). If the Fear Die is higher, your character crosses through the veil of death. If the Duality Dice show matching results, your character stays up and clears all Hit Points and Stress.
If your character dies, work with the GM before the next session to create a new character at the current level of the rest of the party.
The following rules apply to many aspects of the game.
This game doesnβt use fractions; if you need to round to a whole number, round up unless otherwise specified. When in doubt, resolve any ambiguity in favor of the PCs.
When a feature allows you to reroll a die, you always take the new result unless the feature specifically says otherwise.
Incoming damage means the total damage from a single attack or source, before Armor Slots are marked.
If the resolution order of multiple effects is unclear, the person in control of the effects (player or GM) decides what order to resolve them in.
Unless stated otherwise, all effects beside conditions and advantage/disadvantage can stack.
If an effect doesnβt have a listed mechanical expiration, it only ends when decided by the controlling player, the GM, or the demands of the fiction.
Unless an effect states otherwise, you canβt spend Hope or mark Stress multiple times on the same feature to increase or repeat its effects on the same roll.
If a feature allows you to affect a roll after the result has been totaled, you can use it after the GM declares whether the roll succeeds or fails, but not after the consequences unfold or another roll is made.
Your party levels up whenever the GM decides youβve reached a narrative milestone (usually about every 3 sessions). All party members level up at the same time.
Daggerheart has 10 PC levels divided into 4 tiers:
β Tier 1 encompasses level 1 only.
β Tier 2 encompasses levels 2β4.
β Tier 3 encompasses levels 5β7.
β Tier 4 encompasses levels 8β10.
Your tier affects your damage thresholds, tier achievements, and access to advancements.
Take any applicable tier achievements
At level 2, you gain a new Experience at +2 and permanently increase your Proficiency by 1.
At level 5, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.
At level 8, you gain a new Experience at +2, permanently increase your Proficiency by 1, and clear any marked traits.
Choose any two advancements with at least one unmarked slot from your tier or below. Options with multiple slots can be chosen more than once. When you choose an advancement, mark one of its slots.
When you choose to increase two unmarked character traits and mark them: Choose two unmarked character traits and gain a permanent +1 bonus to them. You canβt increase these stats again until the next tier (when your tier achievement allows you to clear those marks).
When you choose to permanently add 1 or more Hit Point slots: Darken the outline of the next rectangle in the Hit Point section of your character sheet in pen or permanent marker.
When you choose to permanently add 1 or more Stress slots: Darken the outline of the next rectangle in the Stress section of your character sheet in pen or permanent marker.
When you choose to increase your Experience: Choose two Experiences on your character sheet and gain a permanent +1 bonus to both.
When you take an additional domain card: You can choose an additional domain card at or below your level or from your classβs domains. If youβve multiclassed, you can instead select a card at or below half your level from your chosen multiclass domain.
When you choose to increase your Evasion: Gain a permanent +1 bonus to your Evasion.
When you choose to take an upgraded subclass card: Take the next card for your subclass. If you have only the foundation card, take a specialization; if you have a specialization already, take a mastery. Then cross out this tierβs multiclass option.
When you choose to increase your Proficiency: Fill in one of the open circles in the βProficiencyβ section of your character sheet, then increase your weaponβs number of damage dice by 1. The black box around this advancementβs slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.
When you choose to multiclass: Choose an additional class, select one of its domains, and gain its class feature. Add the appropriate multiclass module to your character sheet and take the foundation card from one of its subclasses. Then cross out the βupgraded subclassβ advancement option in this tier and all other βmulticlassβ advancement options on your character sheet. The black box around this advancementβs slots indicates you must spend two advancements and mark both level-up slots in order to take it as an option.
Increase all damage thresholds by 1.
Acquire a new domain card at your level or lower from one of your classβs domains and add it to your loadout or vault. If your loadout is already full, you canβt add the new card to it until you move another into your vault. You can also exchange one domain card youβve previously acquired for a different domain card of the same level or lower.
Starting at level 5, you can choose multiclassing as an option when leveling up. When you multiclass, you choose an additional class, gain access to one of its domains, and acquire its class feature. Take the appropriate multiclass module and add it to the right side of your character sheet, then choose a foundation card from one of its subclasses. If your foundation cards specify different Spellcast traits, you can choose which one to apply when making a Spellcast roll.
Whenever you have the option to acquire a new domain card, you can choose from cards at or below half your current level (rounded up) from the domain you chose when you selected the multiclass advancement.
Your equipped weapons and armor are the ones listed in the βActive Weaponsβ and βActive Armorβ sections of your character sheet. Your character can only attack with weapons, benefit from armor, and gain features from items they have equipped. You canβt equip weapons or armor with a higher tier than you.
PCs can carry up to two additional weapons in the βInventory Weaponβ areas of the character sheet.
You can swap an Inventory Weapon with an Active Weapon at no cost during a rest or moment of calm; otherwise, you must mark a Stress to do so.
Your character can only have one Active Armor at a time.
They canβt equip armor while in danger or under pressure; otherwise, they can equip or unequip armor without cost.
Each armor has its own Armor Slots; if your character unequips their armor, track how many of its Armor Slots are marked. You can't carry armor in your inventory. When your character equips or unequips armor, recalculate your damage thresholds.
All weapons have a tier, trait, range, damage die, damage type, and burden. Some weapons also have a feature.
A weaponβs category specifies whether it is a Primary or Secondary weapon. Your character can only equip up to one weapon of each category at a time.
A weaponβs trait specifies which trait to use when making an attack roll with it.
A weaponβs range specifies the maximum distance between the attacker and their target when attacking with it.
A weaponβs damage indicates the size of the damage dice you roll on a successful attack with it; you roll a number of dice equal to your Proficiency. If the damage includes a flat modifier, this number is added to the total damage rolled, but is not altered or affected by Proficiency.
A weaponβs damage type indicates whether it deals physical or magic damage. Weapons that deal magic damage can only be wielded by characters with a Spellcast trait.
A weaponβs burden indicates how many hands it occupies when equipped. Your characterβs maximum burden is 2 hands.
A weaponβs feature is a special rule that stays in effect while the weapon is equipped.
You can throw an equipped weapon at a target within Very Close range, making the attack roll with Finesse. On a success, deal damage as usual for that weapon. Once thrown, the weapon is no longer considered equipped. Until you retrieve and re-equip it, you canβt attack with it or benefit from its features.
By Mark Thompson
The combat wheelchair is a ruleset designed to help you play a wheelchair user in Daggerheart. This section provides mechanics and narrative guidance for you to work from, but feel free to adapt the flavor text to best suit your character. Have fun with your characterβs wheelchair design, and make it as unique or tailored to them as you please.
When describing how your character moves, you can use descriptions such as the following:
βI roll over to the door to see if itβs open.β
βI wheel myself over to the group to ask whatβs going on.β
βI pull my brakes and skid to a halt, turning in my seat to level my bow at the intruder.β
Here are some ways you might describe complications you encounter when your character uses their wheelchair:
βI pull my brakes, but I donβt think to account for the loose gravel on the ground.β
βI hit a patch of ice awkwardly and am sent skidding out past my target.β
βI go to push off in pursuit, but one of my front caster wheels snags on a crack in the pavement, stalling me for a moment.β
GMs should avoid breaking a character's wheelchair or otherwise removing it from play as a consequence, unless everyone at the table, especially the wheelchair userβs player, gives their approval.
Your character is assumed to be skilled in moving their wheelchair and navigating numerous situations in it. As a result, the only wheelchair that gives a penalty to a PC's Evasion is the Heavy Frame model.
All wheelchairs can be maneuvered using one or two hands outside of combat. However, when being used as a weapon, the chair is restricted to requiring one or two hands to perform attacks, depending on the model youβve chosen. If youβre playing a character who has limited to no mobility in their arms, their wheelchair can be attuned to them by magical means. For example, your character might use a psychic link to guide the chair around like a pseudo-electric wheelchair. All the rules presented here can be tailored and adapted to any character's needs.
All combat wheelchairs are equipped as Primary Weapons.
There are three models of wheelchair available: light, heavy, and arcane. Youβre encouraged to consider the type of character youβre playing and the class they belong to, then choose the model that best matches that character concept.
Every armor has a name, base damage thresholds, and a base Armor Score. Some armor also has a feature.
An armorβs base armor score indicates how many Armor Slots it provides its wearer before additional bonuses are added to calculate their total Armor Score. A PCβs Armor Score canβt exceed 12.
An armorβs base thresholds determine its wearerβs major and severe damage thresholds before adding bonuses to calculate their final damage thresholds.
An armorβs feature is a special rule that stays in effect while the armor is equipped.
While unarmored, your characterβs base Armor Score is 0, their Major threshold is equal to their level, and their Severe threshold is equal to twice their level.
When you take damage, you can mark one Armor Slot to reduce the number of Hit Points you would mark by one. If your character has an Armor Score of 0, you canβt mark Armor Slots. If an effect temporarily increases your Armor Score,
it increases your available Armor Slots by the same amount; when the effect ends, so does the availability of these Armor Slots.
Loot comprises any consumables or reusable items the party acquires.
Items can be used until sold, discarded, or lost.
To generate a random item, choose a rarity, roll the designated dice, and match the total to the item in the table:
Common: 1d12 or 2d12
Rare: 3d12 or 4d12
Uncommon: 2d12 or 3d12
Legendary: 4d12 or 5d12
@UUID[RollTable.KKqUrMMXPpm7uhYT]{Loot}
Consumables are loot that can only be used once. You can hold up to five of each consumable at a time. Using a consumable doesnβt require a roll unless required by the GM or the demands of the fiction.
To generate a random consumable, choose a rarity, roll the designated dice, and match the total to the item in the table:
Common: 1d12 or 2d12
Rare: 3d12 or 4d12
Uncommon: 2d12 or 3d12
Legendary: 4d12 or 5d12
@UUID[RollTable.wZXyi343PSVVwWB3]{Consumables}
Gold is an abstract measurement of how much wealth a character has, and is measured in handfuls, bags, and chests, with 10 handfuls to 1 bag, and 10 bags to 1 chest. When you have marked all of the slots in a category and you gain another gold reward in that category, mark a slot in the following category and clear all the slots in the current one.
For example, if you have 9 handfuls and gain another, you instead mark 1 bag and erase all handfuls. If you have 9 bags and gain another, you mark 1 chest and erase all bags.
You canβt have more than 1 chest, so if all your Gold slots are marked, youβll need to spend some of your gold or store it somewhere else before you can acquire more.
Optional Rule: Gold Coins
If your group wants to track gold with more granularity, you can add coins as your lowest denomination. Following the established pattern, 10 coins equal 1 handful.
While you're Vulnerable, add your level to your damage rolls.
", "resource": null, - "actions": { - "UgffABhuobRDP7MQ": { - "type": "effect", - "_id": "UgffABhuobRDP7MQ", - "systemPath": "actions", - "description": "While you're Vulnerable, add your level to your damage rolls.
", - "chatDisplay": true, - "actionType": "action", - "cost": [], - "uses": { - "value": null, - "max": "", - "recovery": null, - "consumeOnSuccess": false - }, - "effects": [ - { - "_id": "HMx9uZ54mvMiH95x", - "onSave": false - } - ], - "target": { - "type": "self", - "amount": null - }, - "name": "Apply", - "img": "icons/magic/unholy/hand-marked-pink.webp", - "range": "" - } - }, + "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -109,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1754319984350, - "modifiedTime": 1754351983791, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756035779655, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!uByM34yQlw38yf1V" } diff --git a/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json b/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json index 7cbad7d7..3b7f55d9 100644 --- a/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json +++ b/src/packs/subclasses/feature_Advanced_Training_uGcs785h94RMtueH.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267928272, - "modifiedTime": 1754267942465, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391976441, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uGcs785h94RMtueH" } diff --git a/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json b/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json index b435ffad..545f2116 100644 --- a/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json +++ b/src/packs/subclasses/feature_Apex_Predator_lwH3E0Zyf4gbVOd0.json @@ -17,7 +17,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -40,7 +39,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754268013491, - "modifiedTime": 1754268190654, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391968894, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!lwH3E0Zyf4gbVOd0" } diff --git a/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json b/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json index 59dfea8f..8ebe8a5b 100644 --- a/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json +++ b/src/packs/subclasses/feature_Arcane_Charge_yA4MKQ1tbKFiJoDB.json @@ -17,7 +17,12 @@ }, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349515898, - "modifiedTime": 1754349515898, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392345960, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!yA4MKQ1tbKFiJoDB" } diff --git a/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json b/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json index efb31ac4..4caed074 100644 --- a/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json +++ b/src/packs/subclasses/feature_Ascendant_fefLgx6kcYWusjBb.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [ { @@ -43,7 +48,7 @@ "startRound": null, "startTurn": null }, - "description": "Gain a permanent +4 bonus to your Severe damage threshold.
", + "description": "Gain a permanent +4 bonus to your Severe damage threshold.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754355721228, - "modifiedTime": 1754355738718, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392230926, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!fefLgx6kcYWusjBb" } diff --git a/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json b/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json index 4cccb077..d7212244 100644 --- a/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json +++ b/src/packs/subclasses/feature_At_Ease_xPWFvGvtUjIcqgJq.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754237891794, - "modifiedTime": 1754245935236, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391823600, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xPWFvGvtUjIcqgJq" } diff --git a/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json b/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json index d56edfa1..1efb24e2 100644 --- a/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json +++ b/src/packs/subclasses/feature_Battle_Bonded_hWsKyed1vfILg0I8.json @@ -9,9 +9,66 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, - "effects": [], + "effects": [ + { + "name": "Battle Bonded", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "_id": "IZhakv6EuG8DO4a3", + "img": "icons/creatures/mammals/humanoid-wolf-dog-blue.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "2", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When an adversary attacks you while theyβre within your companionβs Melee range, you gain a +2 bonus to your Evasion against the attack.
", + "origin": null, + "tint": "#ffffff", + "transfer": true, + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.347", + "systemId": "daggerheart", + "systemVersion": "1.1.0", + "createdTime": 1756035661033, + "modifiedTime": 1756035696385, + "lastModifiedBy": "vUIbuan0U50nfKBE" + }, + "_key": "!items.effects!hWsKyed1vfILg0I8.IZhakv6EuG8DO4a3" + } + ], "sort": 0, "ownership": { "default": 0, @@ -22,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267290791, - "modifiedTime": 1754267339284, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391947493, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hWsKyed1vfILg0I8" } diff --git a/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json b/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json index 1ebf58ca..df550dff 100644 --- a/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json +++ b/src/packs/subclasses/feature_Battle_Ritual_qqb5acyUSl1sCpWW.json @@ -103,7 +103,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -116,12 +121,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256232412, - "modifiedTime": 1754256309647, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392388947, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!qqb5acyUSl1sCpWW" } diff --git a/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json b/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json index b6be75f0..ab44a170 100644 --- a/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json +++ b/src/packs/subclasses/feature_Battlemage_Y9eGMewnFZgPvX0M.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253784757, - "modifiedTime": 1754253819240, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392505769, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Y9eGMewnFZgPvX0M" } diff --git a/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json b/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json index 0c05fbf6..77bf5d74 100644 --- a/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json +++ b/src/packs/subclasses/feature_Brilliant_2A0HBDxGc4gEARou.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 100000, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254253864, - "modifiedTime": 1754254310242, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392562593, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2A0HBDxGc4gEARou" } diff --git a/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json b/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json index 752fee05..ff56a435 100644 --- a/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json +++ b/src/packs/subclasses/feature_Clarity_of_Nature_etaQ01yGJhBLDUqZ.json @@ -17,11 +17,12 @@ "actionType": "action", "cost": [ { - "scalable": false, - "key": "etaQ01yGJhBLDUqZ", + "key": "resource", + "itemId": "etaQ01yGJhBLDUqZ", "value": 1, - "keyIsID": true, - "step": null + "scalable": false, + "step": null, + "consumeOnSuccess": false } ], "uses": { @@ -85,7 +86,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -98,12 +104,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1754179740310, - "modifiedTime": 1754496518048, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756325575203, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_key": "!items!etaQ01yGJhBLDUqZ" } diff --git a/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json b/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json index 61ce367d..2b30206e 100644 --- a/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json +++ b/src/packs/subclasses/feature_Comaraderie_dArl2cxKIEGTicXU.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256748303, - "modifiedTime": 1754256845527, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392438216, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dArl2cxKIEGTicXU" } diff --git a/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json b/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json index e13065b7..8028eec2 100644 --- a/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json +++ b/src/packs/subclasses/feature_Companion_MBFXxIEwc0Dl4kJg.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754266772170, - "modifiedTime": 1754266905966, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391922354, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!MBFXxIEwc0Dl4kJg" } diff --git a/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json b/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json index 8fc72db2..88a739d0 100644 --- a/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json +++ b/src/packs/subclasses/feature_Conjure_Shield_oirsCnN66GOlK3Fa.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254077810, - "modifiedTime": 1754254095589, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392539956, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oirsCnN66GOlK3Fa" } diff --git a/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json b/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json index 3c8fa5b5..75a5f905 100644 --- a/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json +++ b/src/packs/subclasses/feature_Contacts_Everywhere_cXbRm744mW6UXGam.json @@ -20,7 +20,6 @@ "scalable": false, "key": "hitPoints", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -41,7 +40,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -54,12 +58,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754320389008, - "modifiedTime": 1754496752362, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392080713, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!cXbRm744mW6UXGam" } diff --git a/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json b/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json index 108f4571..5b2fdcdf 100644 --- a/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json +++ b/src/packs/subclasses/feature_Courage_o5j2vjXU8NicYlXx.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256184552, - "modifiedTime": 1754256222832, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392395130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!o5j2vjXU8NicYlXx" } diff --git a/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json b/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json index 2de13f94..c31aa7d2 100644 --- a/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json +++ b/src/packs/subclasses/feature_Dark_Cloud_frBTtNMX9Y2gkuPz.json @@ -56,7 +56,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [], "sort": 0, @@ -69,12 +74,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754319411878, - "modifiedTime": 1754351939150, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392060813, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!frBTtNMX9Y2gkuPz" } diff --git a/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json b/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json index 37e5fa11..017a0752 100644 --- a/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json +++ b/src/packs/subclasses/feature_Defender_Jdktv5p1K2PfgxrT.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -40,7 +39,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 400000, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754220872809, - "modifiedTime": 1754353606220, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391765479, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Jdktv5p1K2PfgxrT" } diff --git a/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json b/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json index b7568b2c..1fd3d016 100644 --- a/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json +++ b/src/packs/subclasses/feature_Devout_J3A7ycmj65hlhWnI.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353798475, - "modifiedTime": 1754353830966, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392196286, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!J3A7ycmj65hlhWnI" } diff --git a/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json b/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json index 286f651d..6e65294e 100644 --- a/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json +++ b/src/packs/subclasses/feature_Elemental_Aura_2JH9NaOh69yN80Gw.json @@ -173,7 +173,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [ { @@ -370,12 +375,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754180638227, - "modifiedTime": 1754353118771, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391729977, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2JH9NaOh69yN80Gw" } diff --git a/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json b/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json index 30d3928f..5cad10d1 100644 --- a/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json +++ b/src/packs/subclasses/feature_Elemental_Dominion_EFUJHrkTuyv8uA9l.json @@ -74,7 +74,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -126,7 +125,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [ { @@ -332,12 +336,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754219959517, - "modifiedTime": 1754353189971, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391758846, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EFUJHrkTuyv8uA9l" } diff --git a/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json b/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json index 855d34aa..02af8c17 100644 --- a/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json +++ b/src/packs/subclasses/feature_Elemental_Incarnation_f37TTgCc0Q3Ih1A1.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -106,7 +105,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -141,7 +139,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -206,7 +203,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -231,7 +227,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [ { @@ -441,12 +442,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754176169510, - "modifiedTime": 1754352293609, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391716994, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!f37TTgCc0Q3Ih1A1" } diff --git a/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json b/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json index b282d4fb..fbea1985 100644 --- a/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json +++ b/src/packs/subclasses/feature_Elementalist_dPcqKN5NeDkjB1HW.json @@ -17,7 +17,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -38,12 +37,12 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Bonus to Roll", "img": "icons/sundries/gaming/dice-runed-tan.webp", - "range": "" + "range": "self" }, "S7HvFD3qIR3ifJRL": { "type": "effect", @@ -54,7 +53,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -75,16 +73,21 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Bonus to Damage", "img": "icons/sundries/gaming/dice-runed-tan.webp", - "range": "" + "range": "self" } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [ { @@ -98,8 +101,8 @@ "rangeDependence": { "enabled": false, "type": "withinRange", - "target": "hostile", - "range": "melee" + "target": "any", + "range": "self" } }, "changes": [ @@ -110,7 +113,7 @@ "priority": null } ], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -129,10 +132,11 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", - "systemVersion": "0.0.1", - "lastModifiedBy": null + "systemVersion": "1.1.2", + "lastModifiedBy": "fBcTgyTzoARBvohY", + "modifiedTime": 1761503576186 }, "_key": "!items.effects!dPcqKN5NeDkjB1HW.EY87mY6ULfIt3XC8" }, @@ -147,8 +151,8 @@ "rangeDependence": { "enabled": false, "type": "withinRange", - "target": "hostile", - "range": "melee" + "target": "any", + "range": "self" } }, "changes": [ @@ -165,7 +169,7 @@ "priority": null } ], - "disabled": true, + "disabled": false, "duration": { "startTime": null, "combat": null, @@ -184,10 +188,11 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.350", "systemId": "daggerheart", - "systemVersion": "0.0.1", - "lastModifiedBy": null + "systemVersion": "1.1.2", + "lastModifiedBy": "fBcTgyTzoARBvohY", + "modifiedTime": 1761503563924 }, "_key": "!items.effects!dPcqKN5NeDkjB1HW.WwibpgaO6Kkks7aZ" } @@ -202,12 +207,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1754349507020, - "modifiedTime": 1754349507020, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756035526712, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!dPcqKN5NeDkjB1HW" } diff --git a/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json b/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json index daca1154..be3ae3d6 100644 --- a/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json +++ b/src/packs/subclasses/feature_Eloquent_5bmB1YcxiJVNVXDM.json @@ -31,7 +31,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [], "flags": {}, @@ -39,12 +44,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.QaEinpTu6c1Tj859", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754494786779, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391624722, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json b/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json index 74f5a35e..d0787ec3 100644 --- a/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json +++ b/src/packs/subclasses/feature_Elusive_Predator_Cjtc43V3IzAmfIFG.json @@ -9,9 +9,66 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, - "effects": [], + "effects": [ + { + "name": "Elusive Predator", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "_id": "X4llFOcAcdJLbear", + "img": "icons/creatures/mammals/beast-horned-scaled-glowing-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "2", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When your Focus makes an attack against you, you gain a +2 bonus to your Evasion against the attack.
", + "origin": null, + "tint": "#ffffff", + "transfer": true, + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.347", + "systemId": "daggerheart", + "systemVersion": "1.1.0", + "createdTime": 1756035709943, + "modifiedTime": 1756035734622, + "lastModifiedBy": "vUIbuan0U50nfKBE" + }, + "_key": "!items.effects!Cjtc43V3IzAmfIFG.X4llFOcAcdJLbear" + } + ], "sort": 0, "ownership": { "default": 0, @@ -22,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267748776, - "modifiedTime": 1754267799813, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391941589, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Cjtc43V3IzAmfIFG" } diff --git a/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json b/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json index 756a21cc..4a3dd229 100644 --- a/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json +++ b/src/packs/subclasses/feature_Enchanted_Aid_4pVBN8cuKePI423V.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 23, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349511084, - "modifiedTime": 1754349511084, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392324026, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4pVBN8cuKePI423V" } diff --git a/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json b/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json index f80c05e3..23864dbe 100644 --- a/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json +++ b/src/packs/subclasses/feature_Epic_Poetry_eCoEWkWuZPMZ9C6a.json @@ -8,7 +8,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 10, + "artist": "" + } }, "effects": [ { @@ -67,12 +72,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.4dVLpWQ5SpAGnc5A", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754236502610, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391644691, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json b/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json index c434eae9..59e2cfaa 100644 --- a/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json +++ b/src/packs/subclasses/feature_Ethereal_Visage_tyGB6wRKjYdIBK1i.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [ { @@ -43,7 +48,7 @@ "startRound": null, "startTurn": null }, - "description": "While flying, you have advantage on Presence Rolls.
", + "description": "While flying, you have advantage on Presence Rolls.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754355219220, - "modifiedTime": 1754355252528, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392202970, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!tyGB6wRKjYdIBK1i" } diff --git a/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json b/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json index e6b18e5a..2ef5b31f 100644 --- a/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json +++ b/src/packs/subclasses/feature_Expert_Training_iCXtOWBKv1FdKdWz.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267251789, - "modifiedTime": 1754267277163, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391953639, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!iCXtOWBKv1FdKdWz" } diff --git a/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json b/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json index 2e0d5a05..056e3bc8 100644 --- a/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json +++ b/src/packs/subclasses/feature_Face_Your_Fear_D3ffFWSXCza4WGcM.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253863023, - "modifiedTime": 1754253898944, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392512687, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!D3ffFWSXCza4WGcM" } diff --git a/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json b/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json index 5c8e344a..ed1d1569 100644 --- a/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json +++ b/src/packs/subclasses/feature_Fleeting_Shadow_EY7Eo6hNGppVL3dR.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754320756015, - "modifiedTime": 1754320791763, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392093113, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!EY7Eo6hNGppVL3dR" } diff --git a/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json b/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json index a96a7324..bfef6ea3 100644 --- a/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json +++ b/src/packs/subclasses/feature_Fueled_by_Fear_hNqLf3zEfKRzSbvq.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254160964, - "modifiedTime": 1754254207526, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392548972, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hNqLf3zEfKRzSbvq" } diff --git a/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json b/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json index 57cbdc0c..81730014 100644 --- a/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json +++ b/src/packs/subclasses/feature_Gifted_Performer_99U7YWNCxFZHCiT0.json @@ -170,7 +170,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [ { @@ -224,12 +229,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.6j1RP4fz3BwSfoli", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754475491670, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391572653, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json b/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json index f4423761..90855e04 100644 --- a/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json +++ b/src/packs/subclasses/feature_Have_No_Fear_8TH6h6a36h09mf6d.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 26, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254675541, - "modifiedTime": 1754254712265, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392573261, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!8TH6h6a36h09mf6d" } diff --git a/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json b/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json index b057717a..0b5b61f5 100644 --- a/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json +++ b/src/packs/subclasses/feature_Heart_of_a_Poet_Ce0sn0kqAw3PFe0k.json @@ -16,7 +16,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -39,7 +38,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -47,12 +51,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.3YIVugLcucLNtLSZ", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754240308015, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391585771, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json b/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json index 9f2e7e19..e0e21482 100644 --- a/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json +++ b/src/packs/subclasses/feature_Honed_Expertise_w1BwNKxbQOSizLmZ.json @@ -57,7 +57,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -70,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253988597, - "modifiedTime": 1754254310242, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392579823, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!w1BwNKxbQOSizLmZ" } diff --git a/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json b/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json index 5b300ade..26e04708 100644 --- a/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json +++ b/src/packs/subclasses/feature_Iron_Will_7AVRNyBcd1Nffjtn.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -74,12 +79,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754237297894, - "modifiedTime": 1754350175771, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391817317, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7AVRNyBcd1Nffjtn" } diff --git a/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json b/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json index 5f8c3ed7..4f464e6b 100644 --- a/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json +++ b/src/packs/subclasses/feature_Loyal_Friend_xjZHD5Yo3Tu26rLm.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267956703, - "modifiedTime": 1754496703770, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391982191, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!xjZHD5Yo3Tu26rLm" } diff --git a/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json b/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json index 9b7372ee..e7f060d5 100644 --- a/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json +++ b/src/packs/subclasses/feature_Loyal_Protector_hd7UeBPr86Mz21Pe.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -40,7 +39,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754244826486, - "modifiedTime": 1754350266486, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391872035, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!hd7UeBPr86Mz21Pe" } diff --git a/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json b/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json index 1dbc1ae6..59b05ae6 100644 --- a/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json +++ b/src/packs/subclasses/feature_Maestro_ZFkCz8XV1EtMoJ1w.json @@ -8,7 +8,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -16,12 +21,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.c6kz0r85oQ6G7eaZ", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754236475709, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391614339, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json b/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json index df35ffdf..46ac1a9d 100644 --- a/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json +++ b/src/packs/subclasses/feature_Manipulate_Magic_UNg4eyNfEQrMdD7G.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,7 +41,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349507020, - "modifiedTime": 1754349507020, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392299130, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!UNg4eyNfEQrMdD7G" } diff --git a/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json b/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json index 49117c74..c754561c 100644 --- a/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json +++ b/src/packs/subclasses/feature_Martial_Preparation_dHgAnbt9m1KsQFmp.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256861952, - "modifiedTime": 1754256903587, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392449968, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dHgAnbt9m1KsQFmp" } diff --git a/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json b/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json index fe491267..33804ae4 100644 --- a/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json +++ b/src/packs/subclasses/feature_Natural_Evasion_TnuLBtHQGbqyzn82.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -66,7 +65,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [], "sort": 0, @@ -79,12 +83,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349511084, - "modifiedTime": 1754349511084, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392316643, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!TnuLBtHQGbqyzn82" } diff --git a/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json b/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json index 11d8f0b0..1d8f3b8f 100644 --- a/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json +++ b/src/packs/subclasses/feature_Nemesis_DPKmipNRlSAMs2Cg.json @@ -20,7 +20,6 @@ "scalable": false, "key": "hope", "value": 2, - "keyIsID": false, "step": null } ], @@ -45,7 +44,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -103,12 +107,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754244990457, - "modifiedTime": 1754351671775, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391879536, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DPKmipNRlSAMs2Cg" } diff --git a/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json b/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json index 6eb53b78..b0b37c6d 100644 --- a/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json +++ b/src/packs/subclasses/feature_Partner_in_Arms_G54qY96XK62hgoK9.json @@ -20,7 +20,6 @@ "scalable": false, "key": "armor", "value": 1, - "keyIsID": false, "step": null } ], @@ -40,7 +39,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -53,12 +57,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754242808363, - "modifiedTime": 1754350282699, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391847017, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!G54qY96XK62hgoK9" } diff --git a/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json b/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json index 1921f2ae..72dc7dd3 100644 --- a/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json +++ b/src/packs/subclasses/feature_Path_Forward_uPPBOpoulUmSLlzr.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754267110974, - "modifiedTime": 1754267209120, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391932973, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!uPPBOpoulUmSLlzr" } diff --git a/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json b/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json index 0b28959b..b1042617 100644 --- a/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json +++ b/src/packs/subclasses/feature_Perfect_Recall_HzPa5U0EQhDfFTqW.json @@ -33,7 +33,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -46,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254320808, - "modifiedTime": 1754254522728, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392533206, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HzPa5U0EQhDfFTqW" } diff --git a/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json b/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json index ef286817..f4d1f648 100644 --- a/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json +++ b/src/packs/subclasses/feature_Power_of_the_Gods_Yij5sNyP1Ii7BAbc.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754355875610, - "modifiedTime": 1754355895962, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392237241, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!Yij5sNyP1Ii7BAbc" } diff --git a/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json b/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json index fe00e41d..77250a5f 100644 --- a/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json +++ b/src/packs/subclasses/feature_Prepared_YS52ZGdce605wNVT.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754253648251, - "modifiedTime": 1754253683668, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392490085, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!YS52ZGdce605wNVT" } diff --git a/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json b/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json index 91e8975c..9947cc38 100644 --- a/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json +++ b/src/packs/subclasses/feature_Regeneration_KRyrbSLVGreIOTZe.json @@ -20,7 +20,6 @@ "scalable": false, "key": "hope", "value": 3, - "keyIsID": false, "step": null } ], @@ -84,7 +83,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -97,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754180232243, - "modifiedTime": 1754353321403, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391703163, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!KRyrbSLVGreIOTZe" } diff --git a/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json b/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json index 9ef8efdf..0ba951b1 100644 --- a/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json +++ b/src/packs/subclasses/feature_Regenerative_Reach_oLO3VjGkMcK1uvB9.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 200000, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754182966287, - "modifiedTime": 1754236486774, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391738116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oLO3VjGkMcK1uvB9" } diff --git a/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json b/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json index d3a5254f..66bb65a9 100644 --- a/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json +++ b/src/packs/subclasses/feature_Reliable_Backup_QYNGdH37fsGuxS7L.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754322198870, - "modifiedTime": 1754322328469, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392114116, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!QYNGdH37fsGuxS7L" } diff --git a/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json b/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json index 1d0406bd..83113e14 100644 --- a/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json +++ b/src/packs/subclasses/feature_Revenge_oNfA5F9cKwNR7joq.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 2, - "keyIsID": false, "step": null } ], @@ -70,7 +69,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [], "sort": 500000, @@ -83,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754238182847, - "modifiedTime": 1754246061287, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391829666, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!oNfA5F9cKwNR7joq" } diff --git a/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json b/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json index 7e4ef685..c28c0e20 100644 --- a/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json +++ b/src/packs/subclasses/feature_Rise_to_the_Challenge_dcutk8RVOJ2sEkO1.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256466148, - "modifiedTime": 1754256510431, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392416615, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!dcutk8RVOJ2sEkO1" } diff --git a/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json b/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json index 312e055b..799717c8 100644 --- a/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json +++ b/src/packs/subclasses/feature_Rousing_Speech_PCmYTX02JLzBpgml.json @@ -11,7 +11,7 @@ "type": "healing", "_id": "WNtHiko4DRGbxKnm", "systemPath": "actions", - "description": "Once per long rest, you can give a heartfelt, inspiring speech. All allies within Far range clear 2 Stress.
", + "description": "Once per long rest, you can give a heartfelt, inspiring speech. All allies within Far range clear 2 Stress.
", "chatDisplay": false, "actionType": "action", "cost": [ @@ -19,7 +19,6 @@ "scalable": false, "key": "hitPoints", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -85,7 +84,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -93,12 +97,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.iLytX899psvrPRnG", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754494763682, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391592956, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json b/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json index ac907b99..f53d7b4a 100644 --- a/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json +++ b/src/packs/subclasses/feature_Ruthless_Predator_Qny2J3R35bvC0Cey.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -36,16 +35,21 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Mark Stress", "img": "icons/creatures/mammals/wolf-shadow-black.webp", - "range": "" + "range": "self" } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + } }, "effects": [ { @@ -110,12 +114,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1754266926055, - "modifiedTime": 1754267089385, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1756035422344, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!Qny2J3R35bvC0Cey" } diff --git a/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json b/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json index a610db7e..0ebbecc2 100644 --- a/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json +++ b/src/packs/subclasses/feature_Sacred_Resonance_DxOAkDBfIMpXxAUD.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353916777, - "modifiedTime": 1754354052548, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392223655, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!DxOAkDBfIMpXxAUD" } diff --git a/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json b/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json index 77e3504d..fe624444 100644 --- a/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json +++ b/src/packs/subclasses/feature_Shadow_Stepper_hAwTXjhyphiE3aeW.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -36,16 +35,21 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Mark Stress", "img": "icons/magic/unholy/projectile-smoke-trail-pink.webp", - "range": "" + "range": "far" } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { @@ -103,12 +107,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1754318976447, - "modifiedTime": 1754323456453, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1756035450401, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!hAwTXjhyphiE3aeW" } diff --git a/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json b/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json index ef813ae1..ce038aef 100644 --- a/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json +++ b/src/packs/subclasses/feature_Slayer_1hF5KGKQc2VKT5O8.json @@ -14,7 +14,12 @@ }, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -27,12 +32,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256326320, - "modifiedTime": 1754256425506, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392403783, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1hF5KGKQc2VKT5O8" } diff --git a/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json b/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json index cf0a8f93..f5847708 100644 --- a/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json +++ b/src/packs/subclasses/feature_Sparing_Touch_GfOSgVJW8bS1OjNq.json @@ -19,15 +19,15 @@ "type": "healing", "_id": "aanLNQkeO2ZTIqBl", "systemPath": "actions", - "description": "Once per long rest, touch a creature and clear 2 Hit Points or 2 Stress from them.
", + "description": "Once per long rest, touch a creature and clear 2 Hit Points or 2 Stress from them.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": false, - "key": "GfOSgVJW8bS1OjNq", + "key": "resource", + "itemId": "GfOSgVJW8bS1OjNq", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -96,15 +96,15 @@ "type": "healing", "_id": "cWdzCQJv8RFfi2NR", "systemPath": "actions", - "description": "Once per long rest, touch a creature and clear 2 Hit Points or 2 Stress from them.
", + "description": "Once per long rest, touch a creature and clear 2 Hit Points or 2 Stress from them.
", "chatDisplay": true, "actionType": "action", "cost": [ { - "scalable": false, - "key": "GfOSgVJW8bS1OjNq", + "key": "resource", + "itemId": "GfOSgVJW8bS1OjNq", "value": 1, - "keyIsID": true, + "scalable": false, "step": null, "consumeOnSuccess": false } @@ -171,7 +171,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -184,12 +189,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.2.0", "createdTime": 1754353243691, - "modifiedTime": 1754500973073, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1756325575182, + "lastModifiedBy": "bjJtdJOhqWr47GhC" }, "_key": "!items!GfOSgVJW8bS1OjNq" } diff --git a/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json b/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json index ca08ad1f..09bfce1e 100644 --- a/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json +++ b/src/packs/subclasses/feature_Spirit_Weapon_McoS0RxNLOg3SfSt.json @@ -12,7 +12,7 @@ "type": "effect", "_id": "TDvWFqAxu7V33UIC", "systemPath": "actions", - "description": "You can mark a Stress to target an additional adversary within range with the same attack roll.
", + "description": "You can mark a Stress to target an additional adversary within range with the same attack roll.
", "chatDisplay": true, "actionType": "action", "cost": [ @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,7 +41,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [], "sort": 0, @@ -55,12 +59,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754353023665, - "modifiedTime": 1754353132278, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392178319, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!McoS0RxNLOg3SfSt" } diff --git a/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json b/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json index 9563a324..953802de 100644 --- a/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json +++ b/src/packs/subclasses/feature_Thrive_in_Chaos_1nmFmkNXY6OYyyju.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -46,7 +45,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 26, + "artist": "" + } }, "effects": [], "sort": 0, @@ -59,12 +63,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754254574860, - "modifiedTime": 1754254657593, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392589991, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!1nmFmkNXY6OYyyju" } diff --git a/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json b/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json index cf2c658d..44ea1104 100644 --- a/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json +++ b/src/packs/subclasses/feature_Transcendence_th6HZwEFnVBjUtqm.json @@ -20,7 +20,6 @@ "scalable": false, "key": "hitPoints", "value": 1, - "keyIsID": false, "step": null, "consumeOnSuccess": false } @@ -42,7 +41,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + } }, "effects": [ { @@ -76,7 +80,7 @@ "startRound": null, "startTurn": null }, - "description": "+4 bonus to your Severe threshold
", + "description": "+4 bonus to your Severe threshold
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -118,7 +122,7 @@ "startRound": null, "startTurn": null }, - "description": "+1 bonus to a character trait of your choice
", + "description": "+1 bonus to a character trait of your choice
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -167,7 +171,7 @@ "startRound": null, "startTurn": null }, - "description": "+1 bonus to your Proficiency
", + "description": "+1 bonus to your Proficiency
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -209,7 +213,7 @@ "startRound": null, "startTurn": null }, - "description": "+2 bonus to your Evasion
", + "description": "+2 bonus to your Evasion
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -238,12 +242,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754349515898, - "modifiedTime": 1754497438787, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392338476, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!th6HZwEFnVBjUtqm" } diff --git a/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json b/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json index 48feb948..16bcf7d9 100644 --- a/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json +++ b/src/packs/subclasses/feature_Undaunted_866b2jjyzXP8nPRQ.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754243538688, - "modifiedTime": 1754244861863, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391864452, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!866b2jjyzXP8nPRQ" } diff --git a/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json b/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json index 14420491..da75c64e 100644 --- a/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json +++ b/src/packs/subclasses/feature_Unrelenting_4qP7bNyxVHBmr4Rb.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754242120515, - "modifiedTime": 1754242888502, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391840785, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!4qP7bNyxVHBmr4Rb" } diff --git a/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json b/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json index 0675d2c3..5a9f6cf6 100644 --- a/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json +++ b/src/packs/subclasses/feature_Unwavering_WBiFZaYNoQNhysmN.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + } }, "effects": [ { @@ -80,12 +85,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754236984012, - "modifiedTime": 1754245935236, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391809567, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!WBiFZaYNoQNhysmN" } diff --git a/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json b/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json index 5eda8565..c8065dbb 100644 --- a/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json +++ b/src/packs/subclasses/feature_Vanishing_Act_iyIg1VLwO8C6jvFZ.json @@ -20,7 +20,6 @@ "scalable": false, "key": "stress", "value": 1, - "keyIsID": false, "step": null } ], @@ -36,23 +35,28 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Mark Stress", "img": "icons/magic/unholy/strike-hand-glow-pink.webp", - "range": "" + "range": "self" } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + } }, "effects": [ { "name": "Vanishing Act: Cloaked", "img": "icons/magic/unholy/strike-hand-glow-pink.webp", "origin": "Compendium.daggerheart.subclasses.Item.iyIg1VLwO8C6jvFZ", - "transfer": true, + "transfer": false, "_id": "czrwqq44sEr0uJ8O", "type": "base", "system": { @@ -83,12 +87,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1754322584884, - "modifiedTime": 1754352062188, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1756035920880, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items.effects!iyIg1VLwO8C6jvFZ.czrwqq44sEr0uJ8O" } @@ -103,12 +107,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.1.0", "createdTime": 1754321406972, - "modifiedTime": 1754322584899, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1756035929726, + "lastModifiedBy": "vUIbuan0U50nfKBE" }, "_key": "!items!iyIg1VLwO8C6jvFZ" } diff --git a/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json b/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json index 1f7c6eec..26f00fb3 100644 --- a/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json +++ b/src/packs/subclasses/feature_Virtuoso_kn2t409o0FDFQieo.json @@ -8,7 +8,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + } }, "effects": [], "flags": {}, @@ -16,12 +21,12 @@ "compendiumSource": "Compendium.daggerheart.subclasses.Item.lmUplK4FSH6EOTKJ", "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754174646194, - "modifiedTime": 1754236506280, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755391637042, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "ownership": { "default": 0, diff --git a/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json b/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json index 3d6055d2..49fa4398 100644 --- a/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json +++ b/src/packs/subclasses/feature_Warden_s_Protection_2F1bUFY80oce97C9.json @@ -78,7 +78,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + } }, "effects": [], "sort": 300000, @@ -91,12 +96,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754183079986, - "modifiedTime": 1754496541966, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755391744012, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!2F1bUFY80oce97C9" } diff --git a/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json b/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json index a4937457..4773af61 100644 --- a/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json +++ b/src/packs/subclasses/feature_Weapon_Specialist_HAqtoKUTrk8Mip1n.json @@ -17,7 +17,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -65,7 +64,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + } }, "effects": [], "sort": 0, @@ -78,12 +82,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754256525016, - "modifiedTime": 1754256712476, - "lastModifiedBy": "MQSznptE5yLT7kj8" + "modifiedTime": 1755392424300, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!HAqtoKUTrk8Mip1n" } diff --git a/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json b/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json index 474dbb8a..77edd828 100644 --- a/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json +++ b/src/packs/subclasses/feature_Well_Connected_7KnSOazixXXSnspj.json @@ -9,7 +9,12 @@ "resource": null, "actions": {}, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + } }, "effects": [], "sort": 0, @@ -22,12 +27,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754319141863, - "modifiedTime": 1754319354348, - "lastModifiedBy": "LgnbNMLaxandgMQq" + "modifiedTime": 1755392041962, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!7KnSOazixXXSnspj" } diff --git a/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json b/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json index 034ea026..c46a1ecf 100644 --- a/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json +++ b/src/packs/subclasses/feature_Wings_of_Light_KkQH0tYhagIqe2MT.json @@ -40,7 +40,6 @@ "actionType": "action", "cost": [ { - "keyIsID": false, "key": "hope", "value": 1, "scalable": false, @@ -70,7 +69,12 @@ } }, "originItemType": null, - "originId": null + "originId": null, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + } }, "effects": [ { @@ -141,12 +145,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.346", + "coreVersion": "13.347", "systemId": "daggerheart", - "systemVersion": "0.0.1", + "systemVersion": "1.0.5", "createdTime": 1754354510934, - "modifiedTime": 1754355070373, - "lastModifiedBy": "Q9NoTaEarn3VMS6Z" + "modifiedTime": 1755392171336, + "lastModifiedBy": "VZIeX2YDvX338Zvr" }, "_key": "!items!KkQH0tYhagIqe2MT" } diff --git a/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json b/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json index 622fb36a..fcfc2cc8 100644 --- a/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json +++ b/src/packs/subclasses/subclass_Beastbound_TIUsIlTS1WkK5vr2.json @@ -31,6 +31,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.BTyfve69LKqoOi9S" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json b/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json index 46f7f2af..0ce7cd36 100644 --- a/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json +++ b/src/packs/subclasses/subclass_Call_Of_The_Brave_NAFU9roaVG7f3RNJ.json @@ -27,6 +27,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.xCUWwJz4WSthvLfy" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json b/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json index bbcf6ca6..f14668b2 100644 --- a/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json +++ b/src/packs/subclasses/subclass_Call_Of_The_Slayer_bcNe5qP3o6CKadhK.json @@ -23,6 +23,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 24, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.xCUWwJz4WSthvLfy" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json b/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json index 9a7b9c96..9ae4872c 100644 --- a/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json +++ b/src/packs/subclasses/subclass_Divine_Wielder_M5mpGoAj8LRkylrY.json @@ -27,6 +27,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.5ZnlJ5bEoyOTkUJv" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json b/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json index f1f85e42..ac00d7ad 100644 --- a/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json +++ b/src/packs/subclasses/subclass_Elemental_Origin_wg1H0hROc2acHwZh.json @@ -23,6 +23,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.DchOzHcWIJE9FKcR" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json b/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json index 49f9a520..cf2ff2d5 100644 --- a/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json +++ b/src/packs/subclasses/subclass_Nightwalker_h161OSIK24Up4qNd.json @@ -31,6 +31,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 19, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.CvHlkHZfpMiCz5uT" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json b/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json index 37619136..b7bb2dc6 100644 --- a/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json +++ b/src/packs/subclasses/subclass_Primal_Origin_GLpRVxnY5E82khxH.json @@ -23,6 +23,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 22, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.DchOzHcWIJE9FKcR" }, "effects": [], diff --git a/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json b/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json index 7ed07d06..eb21a9b2 100644 --- a/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json +++ b/src/packs/subclasses/subclass_School_Of_Knowledge_qqQlgCqhOivUFoQn.json @@ -35,6 +35,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.5LwX4m8ziY3F1ZGC" }, "effects": [], diff --git a/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json b/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json index 856031d8..18468eee 100644 --- a/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json +++ b/src/packs/subclasses/subclass_School_Of_War_4y9Ph7RsCIAbkwTk.json @@ -35,6 +35,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 25, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.5LwX4m8ziY3F1ZGC" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json b/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json index b75f88d0..af30bf9c 100644 --- a/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json +++ b/src/packs/subclasses/subclass_Stalwart_rKRxFBlkbh9cDK8K.json @@ -35,6 +35,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.nRAyoC0fOzXPDa4z" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json b/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json index 2cef9bbd..4318cf68 100644 --- a/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json +++ b/src/packs/subclasses/subclass_Syndicate_95QxNZwgyEm1LqdG.json @@ -23,6 +23,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 20, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.CvHlkHZfpMiCz5uT" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json b/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json index eb51d60e..d3ff41ce 100644 --- a/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json +++ b/src/packs/subclasses/subclass_Troubadour_ld8MIvk0xVJydSBz.json @@ -22,6 +22,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.vegl3bFOq3pcFTWT" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json b/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json index fedf5f1a..d8bf2b7f 100644 --- a/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json +++ b/src/packs/subclasses/subclass_Vengeance_SUo8NPBPO8aN193u.json @@ -27,6 +27,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 16, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.nRAyoC0fOzXPDa4z" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json b/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json index abe97d5e..07606cc9 100644 --- a/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json +++ b/src/packs/subclasses/subclass_Warden_of_Renewal_xp0XMjYT85Q7E90o.json @@ -30,6 +30,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.ZNwUTCyGCEcidZFv" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json b/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json index 43642e89..40e39611 100644 --- a/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json +++ b/src/packs/subclasses/subclass_Warden_of_the_Elements_W9hs5kxOWeY7eA4Q.json @@ -22,6 +22,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 11, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.ZNwUTCyGCEcidZFv" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json b/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json index a308d587..c8261fb8 100644 --- a/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json +++ b/src/packs/subclasses/subclass_Wayfinder_zsUglcU4NgZ8tNgZ.json @@ -27,6 +27,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 17, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.BTyfve69LKqoOi9S" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json b/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json index f71a1fcb..e6089c6f 100644 --- a/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json +++ b/src/packs/subclasses/subclass_Winged_Sentinel_y7ERWRIpJsdP9Re4.json @@ -27,6 +27,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 21, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.5ZnlJ5bEoyOTkUJv" }, "effects": [], diff --git a/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json b/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json index 6c975ca6..8fdc305c 100644 --- a/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json +++ b/src/packs/subclasses/subclass_Wordsmith_XTSODVM8st75Os8M.json @@ -26,6 +26,11 @@ ], "featureState": 1, "isMulticlass": false, + "attribution": { + "source": "Daggerheart SRD", + "page": 9, + "artist": "" + }, "linkedClass": "Compendium.daggerheart.classes.Item.vegl3bFOq3pcFTWT" }, "effects": [], diff --git a/styles/daggerheart.less b/styles/daggerheart.less index efff7499..187402fb 100755 --- a/styles/daggerheart.less +++ b/styles/daggerheart.less @@ -15,3 +15,5 @@ @import './less/ux/index.less'; @import '../build/tagify.css'; + +@import './less/utils/mixin.less'; diff --git a/styles/less/dialog/actions/action-list.less b/styles/less/dialog/actions/action-list.less index 33b3d0bb..a0b079a7 100644 --- a/styles/less/dialog/actions/action-list.less +++ b/styles/less/dialog/actions/action-list.less @@ -32,9 +32,7 @@ width: 30px; } span { - font-family: @font-body; flex: 1; - font-weight: bold; } } } @@ -55,7 +53,6 @@ display: flex; align-items: center; gap: 10px; - font-family: @font-body; flex: 1; i { text-align: center; diff --git a/styles/less/dialog/attribution/sheet.less b/styles/less/dialog/attribution/sheet.less new file mode 100644 index 00000000..d20b094d --- /dev/null +++ b/styles/less/dialog/attribution/sheet.less @@ -0,0 +1,23 @@ +.daggerheart.dh-style.dialog.attribution { + .window-content { + padding-top: 0; + } + + .attribution-container { + display: flex; + flex-direction: column; + gap: 8px; + + h4 { + margin-bottom: 0; + } + + footer { + display: flex; + + button { + flex: 1; + } + } + } +} diff --git a/styles/less/dialog/beastform/sheet.less b/styles/less/dialog/beastform/sheet.less index 26b6072a..9e87f53b 100644 --- a/styles/less/dialog/beastform/sheet.less +++ b/styles/less/dialog/beastform/sheet.less @@ -41,7 +41,7 @@ display: flex; flex-wrap: wrap; text-align: center; - font-size: 16px; + font-size: var(--font-size-16); margin: 0 4px; border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; @@ -135,7 +135,7 @@ align-items: center; i { - font-size: 24px; + font-size: var(--font-size-24); } } @@ -210,7 +210,6 @@ button { flex: 1; - font-family: @font-body; font-weight: bold; height: 40px; } diff --git a/styles/less/dialog/character-creation/selections-container.less b/styles/less/dialog/character-creation/selections-container.less index bc7a6987..1de3d870 100644 --- a/styles/less/dialog/character-creation/selections-container.less +++ b/styles/less/dialog/character-creation/selections-container.less @@ -75,7 +75,7 @@ label { position: absolute; - font-size: 18px; + font-size: var(--font-size-18); font-weight: bold; padding: 0 2px; background-image: url(../assets/parchments/dh-parchment-light.png); @@ -141,7 +141,7 @@ .ancestry-preview-feature { flex: 1; - font-size: 14px; + font-size: var(--font-size-14); white-space: wrap; padding: 0 2px; border: 1px solid light-dark(@golden, @dark-blue); @@ -178,7 +178,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 28px; + font-size: var(--font-size-28); font-weight: bold; padding: 0 8px; } @@ -191,7 +191,7 @@ justify-content: center; legend { - font-size: 20px; + font-size: var(--font-size-20); white-space: nowrap; } @@ -343,7 +343,7 @@ border-radius: 50%; height: 20px; width: 20px; - font-size: 14px; + font-size: var(--font-size-14); display: flex; align-items: center; justify-content: center; @@ -358,7 +358,7 @@ .descriptor { position: absolute; bottom: -8px; - font-size: 12px; + font-size: var(--font-size-12); border-radius: 8px; width: 56px; text-align: center; @@ -400,7 +400,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 28px; + font-size: var(--font-size-28); font-weight: bold; padding: 0 8px; white-space: nowrap; @@ -444,11 +444,11 @@ label { position: absolute; top: -8px; - font-size: 12px; + font-size: var(--font-size-12); white-space: nowrap; border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; - color: light-dark(@beige, @dark); + color: @dark; background-image: url('../assets/parchments/dh-parchment-light.png'); padding: 0 2px; } @@ -472,7 +472,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 12px; + font-size: var(--font-size-12); } .suggestion-inner-container { @@ -490,7 +490,7 @@ label { position: absolute; top: -2px; - font-size: 12px; + font-size: var(--font-size-12); } img { diff --git a/styles/less/dialog/character-creation/tab-navigation.less b/styles/less/dialog/character-creation/tab-navigation.less index 709e0adc..36b89d5a 100644 --- a/styles/less/dialog/character-creation/tab-navigation.less +++ b/styles/less/dialog/character-creation/tab-navigation.less @@ -7,7 +7,6 @@ border-top: 0; a { - font-family: @font-body; color: light-dark(@dark-blue, @golden); &[disabled] { diff --git a/styles/less/dialog/damage-reduction/damage-reduction-container.less b/styles/less/dialog/damage-reduction/damage-reduction-container.less index 9e1d1472..2f343fb3 100644 --- a/styles/less/dialog/damage-reduction/damage-reduction-container.less +++ b/styles/less/dialog/damage-reduction/damage-reduction-container.less @@ -76,7 +76,7 @@ border-radius: 6px; height: 26px; padding: 0 1px; - font-size: 18px; + font-size: var(--font-size-18); display: flex; align-items: center; justify-content: center; @@ -108,7 +108,7 @@ border-radius: 6px; height: 26px; padding: 0 4px; - font-size: 18px; + font-size: var(--font-size-18); display: flex; align-items: center; justify-content: center; diff --git a/styles/less/dialog/death-move/death-move-container.less b/styles/less/dialog/death-move/death-move-container.less index d5982131..e5803d95 100644 --- a/styles/less/dialog/death-move/death-move-container.less +++ b/styles/less/dialog/death-move/death-move-container.less @@ -26,7 +26,6 @@ display: flex; align-items: center; gap: 10px; - font-family: @font-body; cursor: pointer; flex: 1; i { @@ -50,7 +49,6 @@ button { flex: 1; height: 40px; - font-family: @font-body; font-weight: 600; } } diff --git a/styles/less/dialog/dice-roll/roll-selection.less b/styles/less/dialog/dice-roll/roll-selection.less index d536ee04..0f082460 100644 --- a/styles/less/dialog/dice-roll/roll-selection.less +++ b/styles/less/dialog/dice-roll/roll-selection.less @@ -11,7 +11,14 @@ .application.daggerheart.dialog.dh-style.views.roll-selection { .dialog-header { display: flex; - justify-content: center; + flex-direction: column; + align-items: center; + gap: 4px; + + .dialog-header-inner { + display: flex; + justify-content: center; + } h1 { width: auto; @@ -23,7 +30,7 @@ width: auto; opacity: 0.3; border-radius: 50%; - font-size: 18px; + font-size: var(--font-size-18); font-weight: bold; &:hover { @@ -37,6 +44,29 @@ } } } + + .tag-team-controller { + display: flex; + align-items: center; + border-radius: 5px; + width: fit-content; + gap: 5px; + cursor: pointer; + padding: 5px; + background: light-dark(@dark-blue-10, @golden-10); + color: light-dark(@dark-blue, @golden); + + .label { + font-style: normal; + font-weight: 400; + font-size: var(--font-size-14); + line-height: 17px; + } + + &.selected { + background: light-dark(@dark-blue-40, @golden-40); + } + } } .roll-dialog-container { @@ -74,7 +104,7 @@ font-family: @font-subtitle; font-style: normal; font-weight: 700; - font-size: 16px; + font-size: var(--font-size-16); line-height: 19px; color: light-dark(@dark, @beige); @@ -100,10 +130,9 @@ color: light-dark(@dark-blue, @golden); .label { - font-family: @font-body; font-style: normal; font-weight: 400; - font-size: 14px; + font-size: var(--font-size-14); line-height: 17px; } @@ -126,10 +155,9 @@ transition: all 0.3s ease; .label { - font-family: @font-body; font-style: normal; font-weight: 400; - font-size: 14px; + font-size: var(--font-size-14); line-height: 17px; } @@ -174,7 +202,6 @@ flex: 1; height: 100%; font-weight: bold; - font-family: @font-body; } } } diff --git a/styles/less/dialog/downtime/downtime-container.less b/styles/less/dialog/downtime/downtime-container.less index fe1344cd..eb615ef0 100644 --- a/styles/less/dialog/downtime/downtime-container.less +++ b/styles/less/dialog/downtime/downtime-container.less @@ -15,8 +15,6 @@ } .daggerheart.dh-style.views.downtime { - font-family: @font-body; - .downtime-container { .activities-grouping { width: 280px; @@ -37,9 +35,9 @@ gap: 4px; .activity-marker { - font-size: 8px; + font-size: 0.5rem; flex: none; - color: light-dark(#18162e, #f3c267); + color: light-dark(@dark-blue, @golden); margin-right: 4px; } @@ -56,7 +54,7 @@ } .activity-selected-marker { - font-size: 14px; + font-size: var(--font-size-14); border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; color: light-dark(@dark, @beige); @@ -73,7 +71,7 @@ display: grid; grid-template-columns: 1fr 1fr; gap: 4px; - font-size: 12px; + font-size: var(--font-size-12); &.wide { grid-template-columns: 1fr 1fr 1fr 1fr; @@ -93,9 +91,6 @@ .refreshable-title { font-weight: bold; } - - .refreshable-name { - } } } @@ -107,7 +102,6 @@ button { flex: 1; height: 40px; - font-family: @font-body; font-weight: 600; } } diff --git a/styles/less/dialog/group-roll/group-roll.less b/styles/less/dialog/group-roll/group-roll.less new file mode 100644 index 00000000..f2895d31 --- /dev/null +++ b/styles/less/dialog/group-roll/group-roll.less @@ -0,0 +1,50 @@ +@import '../../utils/colors.less'; + +.application.daggerheart.group-roll { + fieldset.one-column { + min-width: 500px; + margin-bottom: 10px; + } + .actor-item { + display: flex; + align-items: center; + gap: 15px; + width: 100%; + + img { + height: 40px; + width: 40px; + border-radius: 50%; + object-fit: cover; + } + + .actor-info { + display: flex; + flex-direction: column; + gap: 10px; + + .actor-check-info { + display: flex; + gap: 10px; + + .form-fields { + display: flex; + gap: 5px; + align-items: center; + + input { + max-width: 40px; + text-align: center; + } + } + } + } + + .controls { + margin-left: auto; + } + } + .tooltip-container { + width: 100%; + } +} diff --git a/styles/less/dialog/image-select/sheet.less b/styles/less/dialog/image-select/sheet.less new file mode 100644 index 00000000..1548044a --- /dev/null +++ b/styles/less/dialog/image-select/sheet.less @@ -0,0 +1,33 @@ +.daggerheart.dh-style.dialog.image-select { + display: flex; + flex-direction: column; + + .images-container { + display: flex; + flex-wrap: wrap; + gap: 8px; + + img { + width: 136px; + height: 136px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 6px; + opacity: 0.4; + + &.selected { + opacity: 1; + } + } + } + + .footer { + margin-top: 8px; + display: flex; + align-items: center; + gap: 8px; + + button { + flex: 1; + } + } +} diff --git a/styles/less/dialog/index.less b/styles/less/dialog/index.less index 05593d44..0f2b053b 100644 --- a/styles/less/dialog/index.less +++ b/styles/less/dialog/index.less @@ -1,3 +1,4 @@ +@import './attribution/sheet.less'; @import './level-up/navigation-container.less'; @import './level-up/selections-container.less'; @import './level-up/sheet.less'; @@ -29,3 +30,8 @@ @import './multiclass-choice/sheet.less'; @import './reroll-dialog/sheet.less'; + +@import './group-roll/group-roll.less'; +@import './tag-team-dialog/sheet.less'; + +@import './image-select/sheet.less'; diff --git a/styles/less/dialog/level-up/footer.less b/styles/less/dialog/level-up/footer.less index daf25b60..2a177102 100644 --- a/styles/less/dialog/level-up/footer.less +++ b/styles/less/dialog/level-up/footer.less @@ -10,7 +10,6 @@ gap: 10px; button { - font-family: @font-body; font-weight: bold; height: 40px; } diff --git a/styles/less/dialog/level-up/navigation-container.less b/styles/less/dialog/level-up/navigation-container.less index d8872931..282d683f 100644 --- a/styles/less/dialog/level-up/navigation-container.less +++ b/styles/less/dialog/level-up/navigation-container.less @@ -19,7 +19,6 @@ a, span { - font-family: @font-body; color: light-dark(@dark-blue, @golden); } } diff --git a/styles/less/dialog/level-up/selections-container.less b/styles/less/dialog/level-up/selections-container.less index a13c9ff3..6a551865 100644 --- a/styles/less/dialog/level-up/selections-container.less +++ b/styles/less/dialog/level-up/selections-container.less @@ -21,7 +21,7 @@ background: light-dark(@dark-blue-40, @golden-40); border-radius: 3px; padding: 5px; - font-size: 16px; + font-size: var(--font-size-16); gap: 4px; width: 100%; @@ -30,10 +30,6 @@ width: 80%; } - span { - font-family: @font-body; - } - .achievement-experience-marker { border: 1px solid; border-radius: 50%; @@ -42,7 +38,7 @@ display: flex; align-items: center; justify-content: center; - font-size: 12px; + font-size: var(--font-size-12); } } } @@ -100,7 +96,7 @@ width: 54px; border-radius: 50%; border: 2px solid; - font-size: 48px; + font-size: var(--font-size-48); display: flex; align-items: center; justify-content: center; @@ -127,7 +123,6 @@ margin-bottom: 10px; h3 { - font-family: @font-subtitle; color: light-dark(@dark, @beige); margin: 0; white-space: nowrap; @@ -138,7 +133,7 @@ .levelup-selections-title { margin-left: auto; margin-right: auto; - font-size: 22px; + font-size: 1.375rem; font-weight: bold; padding: 0 12px; } diff --git a/styles/less/dialog/level-up/summary-container.less b/styles/less/dialog/level-up/summary-container.less index eb760cde..d67abff6 100644 --- a/styles/less/dialog/level-up/summary-container.less +++ b/styles/less/dialog/level-up/summary-container.less @@ -9,7 +9,6 @@ margin-bottom: 10px; h3 { - font-family: @font-subtitle; color: light-dark(@dark, @beige); margin: 0; white-space: nowrap; @@ -42,8 +41,7 @@ display: flex; align-items: center; gap: 4px; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } @@ -51,8 +49,7 @@ display: flex; align-items: center; gap: 4px; - font-size: 16px; - font-family: @font-subtitle; + font-size: var(--font-size-16); color: light-dark(@dark, @beige); margin-bottom: 5px; } @@ -65,8 +62,7 @@ border: 2px solid; border-radius: 3px; padding: 0 4px; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } } diff --git a/styles/less/dialog/level-up/tiers-container.less b/styles/less/dialog/level-up/tiers-container.less index 225c31fb..270b9b80 100644 --- a/styles/less/dialog/level-up/tiers-container.less +++ b/styles/less/dialog/level-up/tiers-container.less @@ -21,7 +21,7 @@ legend { margin-left: auto; margin-right: auto; - font-size: 22px; + font-size: 1.375rem; font-weight: bold; padding: 0 12px; } @@ -60,8 +60,7 @@ } .checkbox-group-label { - font-family: @font-body; - font-size: 12px; + font-size: var(--font-size-12); font-style: italic; } } diff --git a/styles/less/dialog/multiclass-choice/sheet.less b/styles/less/dialog/multiclass-choice/sheet.less index 93a8540b..1f38449a 100644 --- a/styles/less/dialog/multiclass-choice/sheet.less +++ b/styles/less/dialog/multiclass-choice/sheet.less @@ -1,3 +1,5 @@ +@import '../../utils/colors.less'; + .theme-light .daggerheart.dh-style.dialog.multiclass-choice { .multiclass-container .domain-choice-container button label { background-image: url(../assets/parchments/dh-parchment-light.png); @@ -42,7 +44,6 @@ label { position: absolute; top: 4px; - font-family: @font-body; border-radius: 6px; border: 2px solid; padding: 0 2px; diff --git a/styles/less/dialog/reroll-dialog/sheet.less b/styles/less/dialog/reroll-dialog/sheet.less index f8687009..71c94d80 100644 --- a/styles/less/dialog/reroll-dialog/sheet.less +++ b/styles/less/dialog/reroll-dialog/sheet.less @@ -37,7 +37,7 @@ display: flex; align-items: center; justify-content: center; - font-size: 22px; + font-size: 1.375rem; opacity: 0.8; &.selected { @@ -99,12 +99,12 @@ &:before, &:after { line-height: 12px; - font-size: 12px; + font-size: var(--font-size-12); } } i { - font-size: 10px; + font-size: var(--font-size-10); } } } diff --git a/styles/less/dialog/tag-team-dialog/sheet.less b/styles/less/dialog/tag-team-dialog/sheet.less new file mode 100644 index 00000000..767c66ca --- /dev/null +++ b/styles/less/dialog/tag-team-dialog/sheet.less @@ -0,0 +1,178 @@ +.daggerheart.dialog.dh-style.views.tag-team-dialog { + .tag-team-container { + display: flex; + flex-direction: column; + gap: 16px; + + .tag-team-data-container { + display: flex; + align-items: center; + gap: 8px; + + .form-group { + flex: 0; + + label { + white-space: nowrap; + } + + &.flex-group { + flex: 1; + } + } + } + + .title-row { + display: flex; + align-items: center; + gap: 8px; + + h2 { + text-align: start; + } + + select { + flex: 1; + } + } + + .participants-container { + margin-top: 8px; + display: flex; + flex-direction: column; + gap: 4px; + + .participant-outer-container { + padding: 8px; + display: flex; + flex-direction: column; + gap: 4px; + cursor: pointer; + border-radius: 6px; + + &.selected, + &:hover { + background-color: light-dark(@golden-40, @golden-40); + } + + .participant-container { + display: flex; + align-items: center; + justify-content: space-between; + gap: 8px; + + .participant-inner-container { + flex: 1; + display: flex; + align-items: center; + gap: 4px; + + img { + height: 48px; + width: 48px; + border-radius: 50%; + } + + .participant-labels { + display: flex; + flex-direction: column; + gap: 2px; + + .participant-label-title { + font-size: 18px; + } + + .participant-label-info { + display: flex; + gap: 4px; + + .participant-label-info-part { + border: 1px solid light-dark(white, white); + border-radius: 4px; + padding: 2px 4px; + background-color: light-dark(@beige-80, @soft-white-shadow); + color: white; + } + } + } + } + } + + .participant-empty-roll-container { + border: 1px dashed white; + padding: 8px 2px; + text-align: center; + font-style: italic; + } + + .participant-roll-outer-container { + display: flex; + flex-direction: column; + gap: 2px; + color: light-dark(@dark-blue, @golden); + + h4 { + text-align: center; + color: light-dark(@dark-blue, @golden); + } + + .participant-roll-container { + display: flex; + align-items: center; + justify-content: center; + white-space: nowrap; + + .participant-roll-text-container { + padding: 0 8px; + white-space: nowrap; + display: flex; + } + } + + .damage-values-container { + display: flex; + justify-content: space-around; + gap: 8px; + + .damage-container { + border: 1px solid light-dark(white, white); + border-radius: 6px; + padding: 0 4px; + display: flex; + gap: 4px; + } + } + } + } + } + + h2 { + text-align: center; + } + + .result-container { + display: grid; + grid-template-columns: 1fr 1fr; + align-items: center; + gap: 8px; + + .result-damages-container { + display: flex; + flex-wrap: wrap; + gap: 4px; + + .result-damage-container { + border: 1px solid light-dark(white, white); + border-radius: 6px; + padding: 0 4px; + } + } + } + + .roll-leader-container { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 8px; + } + } +} diff --git a/styles/less/global/chat.less b/styles/less/global/chat.less index d7fee8e5..3f83294a 100644 --- a/styles/less/global/chat.less +++ b/styles/less/global/chat.less @@ -7,6 +7,15 @@ #chat-notifications .chat-log { .chat-message { background-image: url('../assets/parchments/dh-parchment-light.png'); + + .message-header .message-header-metadata .message-metadata, + .message-header .message-header-main .message-sub-header-container { + color: @dark; + } + + .message-header .message-header-main .message-sub-header-container h4 { + color: @dark-blue; + } } } } @@ -36,7 +45,7 @@ .message-metadata { font-family: @font-body; - color: light-dark(@dark, @beige); + color: @beige; } } @@ -52,6 +61,7 @@ width: 40px; height: 40px; object-fit: cover; + object-position: top center; } .message-sub-header-container { @@ -59,14 +69,14 @@ display: flex; flex-direction: column; justify-content: space-between; - color: light-dark(@dark, @beige); + color: @beige; h4 { - font-size: 16px; + font-size: var(--font-size-16); font-weight: bold; margin-bottom: 0; font-family: @font-subtitle; - color: light-dark(@dark-blue, @golden); + color: @golden; } } } diff --git a/styles/less/global/dialog.less b/styles/less/global/dialog.less index 701d5025..8c532c2b 100644 --- a/styles/less/global/dialog.less +++ b/styles/less/global/dialog.less @@ -48,10 +48,9 @@ } .formula-label { - font-family: @font-body; font-style: normal; font-weight: 500; - font-size: 14px; + font-size: var(--font-size-14); line-height: 17px; white-space: nowrap; color: light-dark(@dark, @beige); @@ -68,6 +67,10 @@ } } + .standard-form { + font-family: @font-body; + } + &.two-big-buttons { .window-content { padding-top: 0; @@ -81,7 +84,6 @@ button[type='submit'] { gap: 5px; flex-direction: row; - font-family: @font-body; font-weight: bold; font-size: var(--font-size-14); height: 40px; diff --git a/styles/less/global/elements.less b/styles/less/global/elements.less index c22c3bfc..79deb99d 100755 --- a/styles/less/global/elements.less +++ b/styles/less/global/elements.less @@ -76,7 +76,6 @@ textarea { color: light-dark(@dark, @beige); - font-family: @font-body; scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; } @@ -126,7 +125,6 @@ select { background: light-dark(transparent, transparent); color: light-dark(@dark, @beige); - font-family: @font-body; outline: 2px solid transparent; border: 1px solid light-dark(@dark, @beige); @@ -161,14 +159,13 @@ padding: 0.3rem 0.5rem; color: light-dark(@dark-blue, @golden); background-color: light-dark(@dark-blue-10, @golden-40); - font-family: @font-body; border-radius: 3px; transition: 0.13s ease-out; gap: 0.5rem; z-index: 1; .remove { - font-size: 10px; + font-size: var(--font-size-10); } } } @@ -180,7 +177,6 @@ } table { - font-family: @font-body; border-radius: 3px; thead { @@ -214,7 +210,13 @@ } p { - margin: 0; + &:first-child { + margin-top: 0; + } + + &:last-child { + margin-bottom: 0; + } } ul { @@ -309,7 +311,6 @@ } legend { - font-family: @font-body; font-weight: bold; color: light-dark(@dark-blue, @golden); } @@ -317,7 +318,6 @@ input[type='text'], input[type='number'] { color: light-dark(@dark, @beige); - font-family: @font-body; transition: all 0.3s ease; outline: 2px solid transparent; @@ -344,6 +344,10 @@ width: 100%; gap: 5px; + &.space-between { + justify-content: space-between; + } + .btn { padding-top: 15px; } @@ -364,7 +368,6 @@ .form-group { width: 100%; label { - font-family: @font-body; font-weight: bold; font-size: smaller; } @@ -403,8 +406,7 @@ display: flex; flex-direction: column; white-space: nowrap; - font-family: @font-body; - font-size: 14px; + font-size: var(--font-size-14); font-weight: 400; &.modifier-label { @@ -499,7 +501,6 @@ color: light-dark(@dark-blue, @dark-blue); white-space: nowrap; border: 0; - font-family: @font-body; &:hover { color: light-dark(@dark-blue, @golden); @@ -524,6 +525,17 @@ } } } + .artist-attribution { + width: 100%; + display: flex; + justify-content: left; + font-style: italic; + font-family: @font-body; + margin-top: 4px; + color: light-dark(#14142599, #efe6d850); + font-size: var(--font-size-12); + padding-left: 3px; + } } .application.setting.dh-style { @@ -535,7 +547,7 @@ text-align: center; } .title-hint { - font-size: 12px; + font-size: var(--font-size-12); font-variant: small-caps; text-align: center; } @@ -597,10 +609,12 @@ display: flex; justify-content: space-between; align-items: center; + gap: 0.25rem 0.5rem; + flex-wrap: wrap; label { - font-size: 16px; - font-family: @font-body; + font-size: var(--font-size-14); + font-weight: normal; } .form-fields { @@ -608,6 +622,21 @@ gap: 4px; align-items: center; } + + &.setting-two-values { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 0.25rem 0.5rem; + + .form-group { + justify-content: end; + flex-wrap: nowrap; + } + + .hint { + grid-column: 1 / -1; + } + } } } @@ -675,7 +704,6 @@ .tagify__dropdown { border: 1px solid light-dark(@dark, @beige) !important; - font-family: @font-body; color: light-dark(@dark, @beige); .tagify__dropdown__wrapper { @@ -770,11 +798,10 @@ } .preview-text-container { - font-family: @font-body; padding: 10px 0; text-align: center; - font-size: 16px; - color: light-dark(@beige, @dark); + font-size: var(--font-size-16); + color: @dark; background-image: url(../assets/parchments/dh-parchment-light.png); border-radius: 0 0 4px 4px; } @@ -796,19 +823,18 @@ justify-content: center; .preview-add-icon { - font-size: 40px; + font-size: var(--font-size-40); color: light-dark(@dark-blue-50, @beige-50); } .preview-empty-subtext { position: absolute; bottom: 5%; - font-size: 10px; + font-size: var(--font-size-10); font-variant: small-caps; text-align: center; - font-family: @font-body; font-style: italic; - color: light-dark(@dark-blue-60, @beige-80); + color: light-dark(@dark-blue, @beige-80); } } } @@ -819,7 +845,7 @@ width: 54px; border-radius: 50%; border: 2px solid; - font-size: 48px; + font-size: var(--font-size-48); display: flex; align-items: center; justify-content: center; diff --git a/styles/less/global/feature-section.less b/styles/less/global/feature-section.less index db1c117a..13feb92c 100644 --- a/styles/less/global/feature-section.less +++ b/styles/less/global/feature-section.less @@ -24,7 +24,6 @@ align-items: center; grid-template-columns: 1fr 4fr 1fr; h4 { - font-family: @font-body; font-weight: lighter; color: light-dark(@dark, @beige); } diff --git a/styles/less/global/filter-menu.less b/styles/less/global/filter-menu.less index 09962afb..65a184f8 100644 --- a/styles/less/global/filter-menu.less +++ b/styles/less/global/filter-menu.less @@ -12,7 +12,6 @@ padding: 5px; legend { - font-family: @font-body; font-weight: bold; color: light-dark(@dark-blue, @golden); font-size: var(--font-size-12); diff --git a/styles/less/global/global.less b/styles/less/global/global.less index 5bf32746..7e60dffc 100644 --- a/styles/less/global/global.less +++ b/styles/less/global/global.less @@ -10,3 +10,44 @@ color: light-dark(@dark-blue-50, @beige-50); font-family: @font-body; } + +.daggerheart.dh-style { + .hint { + flex: 0 0 100%; + margin: 0; + color: var(--color-form-hint); + } + + .form-group:hover { + .hint { + color: var(--color-form-hint-hover); + } + } + + .loader { + position: relative; + overflow: hidden !important; + + div { + opacity: 0.5; + } + + &:before { + font-family: 'Font Awesome 6 Pro'; + content: '\f110'; + position: absolute; + height: 100%; + width: 100%; + display: flex; + align-items: center; + justify-content: center; + animation: spinner 1.5s linear infinite; + } + } + + @keyframes spinner { + to { + transform: rotate(360deg); + } + } +} diff --git a/styles/less/global/index.less b/styles/less/global/index.less index db61304a..f51140de 100644 --- a/styles/less/global/index.less +++ b/styles/less/global/index.less @@ -19,3 +19,4 @@ @import './filter-menu.less'; @import './tab-attachments.less'; @import './dice.less'; +@import './resource-bar.less'; diff --git a/styles/less/global/inventory-item.less b/styles/less/global/inventory-item.less index c4239d27..c9ed28d8 100644 --- a/styles/less/global/inventory-item.less +++ b/styles/less/global/inventory-item.less @@ -14,7 +14,7 @@ } .appTheme({}, { - .inventory-item-header .img-portait .roll-img { + .inventory-item .img-portait .roll-img { filter: invert(1); } }); @@ -25,14 +25,12 @@ list-style-type: none; &:not(.single-img) { - .inventory-item-header:hover { - .img-portait { - .roll-img { - opacity: 1; - } - .item-img { - opacity: 0; - } + .img-portait:has(.roll-img):hover { + .roll-img { + opacity: 1; + } + .item-img { + opacity: 0; } } @@ -68,18 +66,15 @@ } } - .inventory-item-header { - display: flex; - align-items: center; - gap: 10px; - cursor: pointer; - border-radius: 3px; - + .inventory-item-header, + &.inventory-item-compact { .img-portait { flex: 0 0 40px; height: 40px; - cursor: pointer; position: relative; + &:has(.roll-img) { + cursor: pointer; + } .item-img, .roll-img { @@ -92,61 +87,17 @@ &.actor-img { border-radius: 50%; + object-position: top center; } } .roll-img { + object-fit: contain; opacity: 0; + padding: 2px; } } - .item-label { - flex: 1; - font-family: @font-body; - align-self: center; - - .item-name { - font-size: 14px; - - .expanded-icon { - display: none; - } - } - - .item-tags, - .item-labels { - display: flex; - gap: 10px; - - .tag, - .label { - display: flex; - flex-direction: row; - justify-content: center; - align-items: center; - font-size: 12px; - } - - .tag { - padding: 3px 5px; - background: light-dark(@dark-15, @beige-15); - border: 1px solid light-dark(@dark, @beige); - border-radius: 3px; - } - - .label { - gap: 4px; - color: @beige-80; - } - } - } - - .item-resource { - flex: 0 0 60px; - display: flex; - align-items: center; - gap: 4px; - } .controls { flex: 0 0 auto; display: flex; @@ -165,6 +116,56 @@ } } + .inventory-item-header { + align-items: center; + border-radius: 3px; + cursor: pointer; + display: flex; + gap: 10px; + + &.padded { + padding-right: 8px; + } + + .item-label { + flex: 1; + align-self: center; + + .item-name { + font-size: var(--font-size-14); + + .expanded-icon { + display: none; + } + } + + .item-tags { + display: flex; + gap: 10px; + + .tag { + align-items: center; + background: light-dark(@dark-15, @beige-15); + border-radius: 3px; + border: 1px solid light-dark(@dark, @beige); + display: flex; + flex-direction: row; + flex-wrap: wrap; + font-size: var(--font-size-12); + justify-content: start; + padding: 3px 5px; + } + } + } + + .item-resource { + flex: 0 0 60px; + display: flex; + align-items: center; + gap: 4px; + } + } + .inventory-item-content { > *:not(:last-child) { margin-bottom: 5px; @@ -180,18 +181,18 @@ overflow: hidden; h1 { - font-size: 32px; + font-size: var(--font-size-32); } h2 { - font-size: 28px; + font-size: var(--font-size-28); font-weight: 600; } h3 { - font-size: 20px; + font-size: var(--font-size-20); font-weight: 600; } h4 { - font-size: 16px; + font-size: var(--font-size-16); color: @beige; font-weight: 600; } @@ -202,7 +203,6 @@ padding: 0 0 0 1.25rem; li { - font-family: @font-body; margin-bottom: 0.25rem; } } @@ -233,7 +233,7 @@ label { color: light-dark(white, black); filter: drop-shadow(0 0 1px light-dark(@dark-blue, @golden)); - font-size: 18px; + font-size: var(--font-size-18); } img { @@ -245,11 +245,46 @@ text-shadow: 0 0 3px white; filter: drop-shadow(0 1px white); color: black; - font-size: 26px; + font-size: 1.625rem; } } } } + + &.inventory-item-compact { + display: grid; + grid-template: + 'img name controls' auto + 'img labels labels' 1fr + / 40px 1fr min-content; + column-gap: 8px; + + > .img-portait { + grid-area: img; + } + > .item-name { + align-self: end; + line-height: 1; + padding-bottom: 1px; + } + > .controls { + grid-area: controls; + align-self: start; + padding-top: 0.3125rem; + gap: 4px; + margin-bottom: -1px; + } + > .item-labels { + align-self: start; + color: light-dark(@dark-80, @beige-80); + display: flex; + flex-direction: row; + flex-wrap: wrap; + font-size: var(--font-size-12); + gap: 4px; + grid-area: labels; + } + } } .card-item { @@ -308,13 +343,14 @@ background-color: @dark-blue; bottom: 0; mask-image: linear-gradient(180deg, transparent 0%, black 20%); + border-radius: 0 0 6px 6px; .card-name { - font-family: @font-body; font-style: normal; font-weight: 400; - font-size: 12px; + font-size: var(--font-size-12); line-height: 15px; + text-align: center; color: @beige; } @@ -354,7 +390,7 @@ gap: 4px; .resource-edit { - font-size: 14px; + font-size: var(--font-size-14); } } @@ -366,7 +402,7 @@ i { flex: none; - font-size: 14px; + font-size: var(--font-size-14); } input { @@ -386,7 +422,7 @@ color: light-dark(white, black); filter: drop-shadow(0 0 1px light-dark(@dark-blue, @golden)); z-index: 2; - font-size: 18px; + font-size: var(--font-size-18); cursor: pointer; } @@ -400,7 +436,7 @@ text-shadow: 0 0 3px white; filter: drop-shadow(0 1px white); color: black; - font-size: 26px; + font-size: 1.625rem; } } } diff --git a/styles/less/global/item-header.less b/styles/less/global/item-header.less index 7b2c907f..073762e0 100755 --- a/styles/less/global/item-header.less +++ b/styles/less/global/item-header.less @@ -35,7 +35,7 @@ width: 80%; .item-name input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: center; width: 90%; @@ -103,7 +103,7 @@ transition: all 0.3s ease; .recall-label { - font-size: 14px; + font-size: var(--font-size-14); opacity: 0; margin-right: 0.3rem; transition: all 0.3s ease; @@ -141,7 +141,7 @@ .item-name { input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: center; width: 90%; diff --git a/styles/less/global/prose-mirror.less b/styles/less/global/prose-mirror.less index 5adf9d67..506fb8b7 100644 --- a/styles/less/global/prose-mirror.less +++ b/styles/less/global/prose-mirror.less @@ -12,18 +12,18 @@ scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; h1 { - font-size: 32px; + font-size: var(--font-size-32); } h2 { - font-size: 28px; + font-size: var(--font-size-28); font-weight: 600; } h3 { - font-size: 20px; + font-size: var(--font-size-20); font-weight: 600; } h4 { - font-size: 16px; + font-size: var(--font-size-16); color: @beige; font-weight: 600; } @@ -34,7 +34,6 @@ padding: 0 0 0 1.25rem; li { - font-family: @font-body; margin-bottom: 0.25rem; } } diff --git a/styles/less/global/resource-bar.less b/styles/less/global/resource-bar.less new file mode 100644 index 00000000..be9bc68b --- /dev/null +++ b/styles/less/global/resource-bar.less @@ -0,0 +1,178 @@ +// Theme sidebar backgrounds +.appTheme({ + .slot-value .slot-bar { + background: @dark-blue; + } +}, { + .slot-value .slot-bar { + background-image: url('../assets/parchments/dh-parchment-light.png'); + } +}); + +.status-bar { + display: flex; + justify-content: center; + position: relative; + width: 120px; + height: 40px; + + .status-label { + position: relative; + top: 40px; + height: 22px; + width: 79px; + clip-path: path('M0 0H79L74 16.5L39 22L4 16.5L0 0Z'); + background: light-dark(@dark-blue, @golden); + + h4 { + font-weight: bold; + text-align: center; + line-height: 18px; + color: light-dark(@beige, @dark-blue); + } + } + .slot-value { + position: absolute; + display: flex; + flex-direction: column; + padding: 0 5px; + font-size: 1.5rem; + align-items: center; + width: 140px; + height: 40px; + justify-content: center; + text-align: center; + z-index: 2; + color: @beige; + + .slot-bar { + display: flex; + flex-wrap: wrap; + gap: 5px; + padding: 5px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 6px; + z-index: 1; + color: light-dark(@dark-blue, @golden); + width: fit-content; + + .slot { + width: 15px; + height: 10px; + border: 1px solid light-dark(@dark-blue, @golden); + background: light-dark(@dark-blue-10, @golden-10); + border-radius: 3px; + transition: all 0.3s ease; + cursor: pointer; + + &.large { + width: 20px; + } + + &.filled { + background: light-dark(@dark-blue, @golden); + } + } + + .empty-slot { + width: 15px; + height: 10px; + } + } + .slot-label { + display: flex; + align-items: center; + color: light-dark(@beige, @dark-blue); + background: light-dark(@dark-blue, @golden); + padding: 0 5px; + width: fit-content; + font-weight: bold; + border-radius: 0px 0px 5px 5px; + font-size: var(--font-size-12); + + .label { + padding-right: 5px; + } + + .value { + padding-left: 6px; + border-left: 1px solid light-dark(@beige, @dark-golden); + } + } + } + + .status-value { + position: absolute; + display: flex; + padding: 0 5px; + font-size: 1.5rem; + align-items: center; + width: 140px; + height: 40px; + justify-content: center; + text-align: center; + z-index: 2; + color: @beige; + + input[type='number'] { + background: transparent; + font-size: 1.5rem; + width: 40px; + height: 30px; + text-align: center; + border: none; + outline: 2px solid transparent; + color: @beige; + + &.bar-input { + padding: 0; + color: @beige; + backdrop-filter: none; + background: transparent; + transition: all 0.3s ease; + + &:hover, + &:focus { + background: @semi-transparent-dark-blue; + backdrop-filter: blur(9.5px); + } + } + } + + .bar-label { + width: 40px; + } + } + .progress-bar { + position: absolute; + appearance: none; + width: 100px; + height: 40px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 6px; + z-index: 1; + background: @dark-blue; + + &::-webkit-progress-bar { + border: none; + background: @dark-blue; + border-radius: 6px; + } + &::-webkit-progress-value { + background: @gradient-hp; + border-radius: 6px; + } + &.stress-color::-webkit-progress-value { + background: @gradient-stress; + border-radius: 6px; + } + &::-moz-progress-bar { + background: @gradient-hp; + border-radius: 6px; + } + &.stress-color::-moz-progress-bar { + background: @gradient-stress; + border-radius: 6px; + } + } +} diff --git a/styles/less/global/sheet.less b/styles/less/global/sheet.less index 172f0113..1e7bad0a 100755 --- a/styles/less/global/sheet.less +++ b/styles/less/global/sheet.less @@ -4,12 +4,24 @@ // Theme handling .appTheme({ - background: @dark-blue-60; - backdrop-filter: blur(10px); + background: @dark-blue-90; + backdrop-filter: blur(8px); }, { background: url('../assets/parchments/dh-parchment-light.png') no-repeat center; }); +body.game:is(.performance-low, .noblur) { + .themed.theme-dark .application.daggerheart.sheet.dh-style, + .themed.theme-dark.application.daggerheart.sheet.dh-style, + &.theme-dark .application.daggerheart { + &.adversary, + &.character, + &.item { + background: @dark-blue; + } + } +} + .application.sheet.dh-style { border-radius: 10px; diff --git a/styles/less/global/tab-actions.less b/styles/less/global/tab-actions.less index 0617016d..31129c99 100644 --- a/styles/less/global/tab-actions.less +++ b/styles/less/global/tab-actions.less @@ -26,7 +26,6 @@ } h4 { - font-family: @font-body; font-weight: lighter; color: @beige; } diff --git a/styles/less/global/tab-description.less b/styles/less/global/tab-description.less index 4d81f2f2..be95ef6d 100644 --- a/styles/less/global/tab-description.less +++ b/styles/less/global/tab-description.less @@ -1,13 +1,16 @@ -@import '../utils/colors.less'; -@import '../utils/fonts.less'; - -.daggerheart.dh-style { - .tab.active.description { - overflow-y: hidden !important; - height: -webkit-fill-available !important; - - fieldset { - height: -webkit-fill-available; - } - } -} +@import '../utils/colors.less'; +@import '../utils/fonts.less'; + +.daggerheart.dh-style { + .tab.active.description { + display: flex; + flex-direction: column; + height: -webkit-fill-available !important; + overflow-y: hidden !important; + padding-top: 10px; + + prose-mirror.active + .artist-attribution { + display: none; + } + } +} diff --git a/styles/less/global/tab-effects.less b/styles/less/global/tab-effects.less index 0c34a3ea..b4540f01 100644 --- a/styles/less/global/tab-effects.less +++ b/styles/less/global/tab-effects.less @@ -19,7 +19,6 @@ cursor: pointer; h4 { - font-family: @font-body; font-weight: lighter; color: @beige; } diff --git a/styles/less/global/tab-features.less b/styles/less/global/tab-features.less index 91335fd5..c483ae88 100644 --- a/styles/less/global/tab-features.less +++ b/styles/less/global/tab-features.less @@ -26,7 +26,6 @@ } h4 { - font-family: @font-body; font-weight: lighter; color: @beige; } diff --git a/styles/less/global/tab-navigation.less b/styles/less/global/tab-navigation.less index 53295b63..3f8844f2 100755 --- a/styles/less/global/tab-navigation.less +++ b/styles/less/global/tab-navigation.less @@ -21,7 +21,6 @@ a { color: light-dark(@dark-blue, @golden); - font-family: @font-body; } } } diff --git a/styles/less/hud/token-hud/token-hud.less b/styles/less/hud/token-hud/token-hud.less index 7d231e8c..9849512b 100644 --- a/styles/less/hud/token-hud/token-hud.less +++ b/styles/less/hud/token-hud/token-hud.less @@ -1,3 +1,9 @@ +.theme-light .daggerheart.placeable-hud { + .status-effects .effect-control { + filter: none; + } +} + .daggerheart.placeable-hud { .col.right { .palette { @@ -6,5 +12,13 @@ font-weight: bold; } } + + .clown-car img { + transition: 0.5s; + + &.flipped { + transform: scaleX(-1); + } + } } } diff --git a/styles/less/sheets-settings/adversary-settings/features.less b/styles/less/sheets-settings/adversary-settings/features.less index 29c9874e..4e0f6a8f 100644 --- a/styles/less/sheets-settings/adversary-settings/features.less +++ b/styles/less/sheets-settings/adversary-settings/features.less @@ -14,11 +14,10 @@ margin-bottom: 12px; } - .feature-list, + .feature-list, .features-dragger { display: flex; width: 100%; - font-family: @font-body; } .feature-list { @@ -38,10 +37,6 @@ object-fit: cover; } - .label { - font-family: @font-body; - } - .controls { display: flex; gap: 5px; diff --git a/styles/less/sheets-settings/character-settings/sheet.less b/styles/less/sheets-settings/character-settings/sheet.less index 43103fc7..f0c7c94e 100644 --- a/styles/less/sheets-settings/character-settings/sheet.less +++ b/styles/less/sheets-settings/character-settings/sheet.less @@ -1,3 +1,5 @@ +@import '../../utils/colors.less'; + .theme-light .application.daggerheart.dh-style.dialog { .tab.details { .traits-inner-container .trait-container { @@ -31,8 +33,7 @@ div { filter: drop-shadow(0 0 3px black); text-shadow: 0 0 3px black; - font-family: @font-body; - font-size: 12px; + font-size: var(--font-size-12); } input { diff --git a/styles/less/sheets-settings/environment-settings/features.less b/styles/less/sheets-settings/environment-settings/features.less index f2a9583a..d907837a 100644 --- a/styles/less/sheets-settings/environment-settings/features.less +++ b/styles/less/sheets-settings/environment-settings/features.less @@ -32,10 +32,6 @@ border-radius: 3px; } - .label { - font-family: @font-body; - } - .controls { display: flex; gap: 5px; diff --git a/styles/less/sheets-settings/header.less b/styles/less/sheets-settings/header.less index 6ac2663f..82f3c488 100644 --- a/styles/less/sheets-settings/header.less +++ b/styles/less/sheets-settings/header.less @@ -10,7 +10,7 @@ font-family: @font-subtitle; font-style: normal; font-weight: 700; - font-size: 24px; + font-size: var(--font-size-24); margin: 0; text-align: center; color: light-dark(@dark-blue, @golden); diff --git a/styles/less/sheets/actors/actor-sheet-shared.less b/styles/less/sheets/actors/actor-sheet-shared.less index 91a2323f..f3cf74b0 100644 --- a/styles/less/sheets/actors/actor-sheet-shared.less +++ b/styles/less/sheets/actors/actor-sheet-shared.less @@ -1,8 +1,227 @@ +@import '../../utils/fonts.less'; +@import '../../utils/colors.less'; +@import '../../utils/mixin.less'; + +.appTheme({ + .limited-container { + .domains-section img { + filter: @golden-filter; + } + } +}, { + .limited-container { + + .domains-section img { + filter: brightness(0) saturate(100%); + } + } +}); .application.sheet.daggerheart.actor.dh-style { - .portrait img, .profile { + .portrait img, + .profile { width: 100%; object-fit: cover; object-position: top center; } -} \ No newline at end of file + + &.minimized { + .attribution-header-label { + display: none; + } + } + + .attribution-header-label { + font-style: italic; + font-family: @font-body; + color: light-dark(@chat-blue-bg, @beige-50); + } + + &.limited { + &.character, + &.adversary, + &.environment, + &.companion { + .window-content { + display: unset; + padding-bottom: 20px; + background-image: url('../assets/parchments/dh-parchment-dark.png'); + } + + .limited-container { + width: 100%; + padding-top: var(--header-height); + display: flex; + flex-direction: column; + gap: 8px; + + header { + position: relative; + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + top: -36px; + margin-bottom: -30px; + + .profile { + width: 100%; + max-height: 275px; + max-width: fit-content; + mask-image: linear-gradient(0deg, transparent 0%, black 10%); + } + + .title-name { + text-align: start; + font-size: var(--font-size-28); + color: light-dark(@dark-blue, @golden); + text-align: center; + } + } + + .character-details { + display: flex; + flex-direction: column; + gap: 5px; + + .basic-info, + .multiclass { + text-align: center; + padding: 0 10px; + } + } + + .domain-details, + .bio-details, + .partner-details { + margin-top: 10px; + + .domain-header, + .bio-header, + .partner-header { + display: flex; + align-items: center; + padding: 0 10px; + gap: 10px; + + h3 { + font-size: var(--font-size-20); + } + } + + .items-list { + padding: 0 20px; + } + + .partner-placeholder { + display: flex; + opacity: 0.6; + text-align: center; + font-style: italic; + justify-content: center; + padding: 10px 0; + } + + .domains-section { + position: relative; + display: flex; + gap: 10px; + background-color: light-dark(transparent, @dark-blue); + color: light-dark(@dark-blue, @golden); + padding: 5px 10px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 6px; + align-items: center; + width: fit-content; + height: 30px; + place-self: center; + margin-top: 10px; + + h4 { + font-size: var(--font-size-14); + font-weight: bold; + text-transform: uppercase; + color: light-dark(@dark-blue, @golden); + } + + .domain { + display: flex; + align-items: center; + gap: 5px; + + .label { + font-size: var(--font-size-14); + font-weight: bold; + text-transform: uppercase; + color: light-dark(@dark-blue, @golden); + } + + img { + height: 20px; + width: 20px; + } + } + } + + .bio-list { + display: flex; + gap: 20px; + flex-wrap: wrap; + justify-content: center; + margin-top: 10px; + + .bio-info { + display: flex; + flex-direction: column; + align-items: center; + padding: 10px; + border-radius: 5px; + min-width: 90px; + color: light-dark(@dark-blue, @golden); + background-color: light-dark(@dark-blue-10, @golden-40); + } + } + } + + .level-details { + align-self: center; + } + + .description { + font-style: italic; + text-align: center; + padding: 0 20px; + } + + .tags { + display: flex; + gap: 10px; + padding-bottom: 10px; + justify-content: center; + + .tag { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + padding: 3px 5px; + font-size: var(--font-size-12); + font: @font-body; + + background: light-dark(@dark-15, @beige-15); + border: 1px solid light-dark(@dark, @beige); + border-radius: 3px; + } + + .label { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + font-size: var(--font-size-12); + } + } + } + } + } +} diff --git a/styles/less/sheets/actors/adversary/effects.less b/styles/less/sheets/actors/adversary/effects.less new file mode 100644 index 00000000..4afe2454 --- /dev/null +++ b/styles/less/sheets/actors/adversary/effects.less @@ -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; + } + } +} diff --git a/styles/less/sheets/actors/adversary/header.less b/styles/less/sheets/actors/adversary/header.less index e9306af6..d4a7812e 100644 --- a/styles/less/sheets/actors/adversary/header.less +++ b/styles/less/sheets/actors/adversary/header.less @@ -18,7 +18,7 @@ flex: 1; input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: start; border: 1px solid transparent; @@ -42,7 +42,7 @@ justify-content: center; align-items: center; padding: 3px 5px; - font-size: 12px; + font-size: var(--font-size-12); font: @font-body; background: light-dark(@dark-15, @beige-15); @@ -55,7 +55,7 @@ flex-direction: row; justify-content: center; align-items: center; - font-size: 12px; + font-size: var(--font-size-12); } } @@ -64,11 +64,6 @@ flex-direction: column; gap: 12px; padding: 16px 0; - - .description, - .motives-and-tatics { - font-family: @font-body; - } } .adversary-navigation { diff --git a/styles/less/sheets/actors/adversary/sidebar.less b/styles/less/sheets/actors/adversary/sidebar.less index cd58ab8c..f8537525 100644 --- a/styles/less/sheets/actors/adversary/sidebar.less +++ b/styles/less/sheets/actors/adversary/sidebar.less @@ -74,7 +74,7 @@ height: 30px; h4 { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -109,6 +109,14 @@ gap: 16px; margin-bottom: -10px; + &.pip-display { + top: -15px; + + .resources-section { + justify-content: space-around; + } + } + .resources-section { display: flex; justify-content: space-evenly; @@ -255,7 +263,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -270,7 +278,7 @@ margin-bottom: 10px; .inventory-item { - padding: 0 10px; + padding-left: 10px; } } @@ -279,10 +287,11 @@ padding-top: 10px; padding-bottom: 20px; mask-image: linear-gradient(0deg, transparent 0%, black 5%, black 95%, transparent 100%); + scrollbar-width: thin; + scrollbar-gutter: stable; &:hover { overflow-y: auto; - scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; } } @@ -294,7 +303,7 @@ align-items: center; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } .items-list { @@ -314,7 +323,7 @@ align-items: center; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } @@ -336,8 +345,7 @@ .experience-name { width: 180px; text-align: start; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } } @@ -345,8 +353,7 @@ .experience-value { height: 25px; width: 35px; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); align-content: center; text-align: center; @@ -368,7 +375,6 @@ button { height: 40px; width: 100%; - font-family: @font-body; font-weight: 600; } } diff --git a/styles/less/sheets/actors/character/header.less b/styles/less/sheets/actors/character/header.less index 7bfcc7c9..80089cf7 100644 --- a/styles/less/sheets/actors/character/header.less +++ b/styles/less/sheets/actors/character/header.less @@ -41,7 +41,7 @@ flex: 1; input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: start; border: 1px solid transparent; @@ -72,7 +72,7 @@ .level-button { color: light-dark(@dark, @beige); - font-size: 18px; + font-size: var(--font-size-18); line-height: 1; min-height: unset; height: min-content; @@ -97,7 +97,7 @@ justify-content: space-between; padding: 5px 0; margin-bottom: 10px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@dark-blue, @golden); .missing-header-feature { @@ -158,7 +158,7 @@ height: 30px; h4 { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -170,7 +170,7 @@ gap: 5px; .label { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -205,7 +205,7 @@ align-items: center; padding-top: 5px; color: light-dark(@dark-blue, @golden); - font-size: 14px; + font-size: var(--font-size-14); font-weight: 600; align-items: center; justify-content: center; @@ -213,15 +213,14 @@ i { line-height: 17px; - font-size: 10px; + font-size: var(--font-size-10); } } .trait-value { - font-family: @font-body; font-style: normal; font-weight: 400; - font-size: 20px; + font-size: var(--font-size-20); text-align: center; } } diff --git a/styles/less/sheets/actors/character/inventory.less b/styles/less/sheets/actors/character/inventory.less index d8c225ad..5605a3d0 100644 --- a/styles/less/sheets/actors/character/inventory.less +++ b/styles/less/sheets/actors/character/inventory.less @@ -16,7 +16,6 @@ input { border-radius: 50px; - font-family: @font-body; background: light-dark(@dark-blue-10, @golden-10); border: none; outline: 2px solid transparent; @@ -38,7 +37,7 @@ height: 32px; position: absolute; right: 20px; - font-size: 16px; + font-size: var(--font-size-16); z-index: 1; color: light-dark(@dark-blue-50, @beige-50); } diff --git a/styles/less/sheets/actors/character/loadout.less b/styles/less/sheets/actors/character/loadout.less index 24a53959..eba55890 100644 --- a/styles/less/sheets/actors/character/loadout.less +++ b/styles/less/sheets/actors/character/loadout.less @@ -16,7 +16,6 @@ input { border-radius: 50px; - font-family: @font-body; background: light-dark(@dark-blue-10, @golden-10); border: none; outline: 2px solid transparent; @@ -38,7 +37,7 @@ height: 32px; position: absolute; right: 20px; - font-size: 16px; + font-size: var(--font-size-16); z-index: 1; color: light-dark(@dark-blue-50, @beige-50); } diff --git a/styles/less/sheets/actors/character/sheet.less b/styles/less/sheets/actors/character/sheet.less index 68792c99..ee6580fd 100644 --- a/styles/less/sheets/actors/character/sheet.less +++ b/styles/less/sheets/actors/character/sheet.less @@ -11,6 +11,21 @@ padding-bottom: 0; overflow-x: auto; + &.viewMode { + button:not(.btn-toggle-view), + input:not(.search), + .controls, + .character-sidebar-sheet, + .img-portait, + .name-row, + .hope-section, + .downtime-section, + .character-traits, + .card-list { + pointer-events: none; + } + } + .character-sidebar-sheet { grid-row: 1 / span 2; grid-column: 1; diff --git a/styles/less/sheets/actors/character/sidebar.less b/styles/less/sheets/actors/character/sidebar.less index b8069aef..e66cba82 100644 --- a/styles/less/sheets/actors/character/sidebar.less +++ b/styles/less/sheets/actors/character/sidebar.less @@ -6,9 +6,16 @@ .appTheme({ .character-sidebar-sheet { background-image: url('../assets/parchments/dh-parchment-dark.png'); + .experience-value { background: url(../assets/svg/experience-shield.svg) no-repeat; } + + .info-section .status-section .status-bar.armor-slots { + .slot-value .slot-bar { + background: @dark-blue; + } + } } }, { &.sheet.actor.dh-style.character .character-sidebar-sheet { @@ -21,6 +28,12 @@ .portrait.death-roll .death-roll-btn { filter: brightness(0) drop-shadow(0 0 3px @dark-blue); } + + .info-section .status-section .status-bar.armor-slots { + .slot-value .slot-bar { + background-image: url('../assets/parchments/dh-parchment-light.png'); + } + } } }); @@ -89,7 +102,7 @@ transition: all 0.3s ease; .spellcast-label { - font-size: 14px; + font-size: var(--font-size-14); opacity: 0; margin-right: 0.3rem; transition: all 0.3s ease; @@ -127,6 +140,15 @@ gap: 10px; margin-bottom: -16px; + &.pip-display { + gap: 15px; + + .resources-section { + justify-content: space-around; + margin: 8px 2px 8px 2px; + } + } + .resources-section { display: flex; justify-content: space-evenly; @@ -136,7 +158,7 @@ display: flex; justify-content: center; position: relative; - width: 100px; + width: 120px; height: 40px; .status-label { @@ -154,13 +176,14 @@ color: light-dark(@beige, @dark-blue); } } + .status-value { position: absolute; display: flex; - padding: 0 6px; + padding: 0 5px; font-size: 1.5rem; align-items: center; - width: 100px; + width: 140px; height: 40px; justify-content: center; text-align: center; @@ -237,6 +260,28 @@ gap: 5px; justify-content: center; + &.pip-display { + align-items: end; + + .status-bar.armor-slots { + width: 100px; + height: auto; + + .slot-value { + position: relative; + height: auto; + + .slot-bar { + border-radius: 6px 6px 0 0; + } + } + + .status-value { + padding: 0 5px; + } + } + } + .status-bar.armor-slots { display: flex; justify-content: center; @@ -252,13 +297,74 @@ width: 95px; border-radius: 3px; background: light-dark(@dark-blue, @golden); + clip-path: none; h4 { font-weight: bold; text-align: center; line-height: 18px; color: light-dark(@beige, @dark-blue); - font-size: 12px; + font-size: var(--font-size-12); + } + } + .slot-value { + position: absolute; + display: flex; + padding: 0 5px; + font-size: 1.2rem; + align-items: center; + width: 80px; + height: 30px; + justify-content: center; + text-align: center; + z-index: 2; + color: light-dark(@dark-blue, @beige); + flex-direction: column; + + .slot-bar { + display: flex; + flex-wrap: wrap; + gap: 4px; + padding: 5px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 6px; + z-index: 1; + background: @dark-blue; + justify-content: center; + color: light-dark(@dark-blue, @golden); + + .armor-slot { + cursor: pointer; + transition: all 0.3s ease; + font-size: var(--font-size-12); + + .fa-shield-halved { + color: light-dark(@dark-blue-40, @golden-40); + } + } + } + .slot-label { + display: flex; + align-items: center; + color: light-dark(@beige, @dark-blue); + background: light-dark(@dark-blue, @golden); + padding: 0 5px; + width: 120%; + font-weight: bold; + border-radius: 5px; + font-size: var(--font-size-12); + flex-wrap: wrap; + justify-content: center; + + .label { + padding-right: 1px; + border-bottom: 1px solid @dark-golden; + } + + .value { + padding-left: 6px; + border-left: 0; + } } } .status-value { @@ -292,8 +398,6 @@ color: light-dark(@dark-blue, @beige); backdrop-filter: none; background: transparent; - transition: all 0.3s ease; - &:hover, &:focus { background: @semi-transparent-dark-blue; @@ -306,7 +410,6 @@ width: 30px; } } - .progress-bar { position: absolute; appearance: none; @@ -318,7 +421,6 @@ background: light-dark(transparent, @dark-blue); border-bottom: none; border-radius: 6px 6px 0 0; - &::-webkit-progress-bar { border: none; background: light-dark(transparent, @dark-blue); @@ -402,7 +504,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -424,7 +526,7 @@ height: 30px; h4 { - font-size: 14px; + font-size: var(--font-size-14); font-weight: bold; text-transform: uppercase; color: light-dark(@dark-blue, @golden); @@ -443,7 +545,7 @@ margin-bottom: 10px; .inventory-item { - padding: 0 10px; + padding-left: 10px; } } @@ -452,10 +554,11 @@ padding-top: 10px; padding-bottom: 20px; mask-image: linear-gradient(0deg, transparent 0%, black 5%); + scrollbar-gutter: stable; + scrollbar-width: thin; &:hover { overflow-y: auto; - scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; } } @@ -489,8 +592,7 @@ .experience-value { height: 25px; width: 35px; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); align-content: center; text-align: center; diff --git a/styles/less/sheets/actors/companion/details.less b/styles/less/sheets/actors/companion/details.less index 47b5873d..cbdc25e6 100644 --- a/styles/less/sheets/actors/companion/details.less +++ b/styles/less/sheets/actors/companion/details.less @@ -16,7 +16,7 @@ width: 100%; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } .items-list { @@ -58,8 +58,7 @@ .experience-name { width: 180px; text-align: start; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); } } @@ -67,8 +66,7 @@ .experience-value { height: 25px; width: 35px; - font-size: 14px; - font-family: @font-body; + font-size: var(--font-size-14); color: light-dark(@dark, @beige); align-content: center; text-align: center; @@ -79,4 +77,17 @@ } } } + + .action-section { + display: flex; + padding: 0 10px; + margin-top: 20px; + width: 100%; + + button { + height: 40px; + width: 100%; + font-weight: 600; + } + } } diff --git a/styles/less/sheets/actors/companion/effects.less b/styles/less/sheets/actors/companion/effects.less new file mode 100644 index 00000000..12e1d847 --- /dev/null +++ b/styles/less/sheets/actors/companion/effects.less @@ -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; + } + } +} diff --git a/styles/less/sheets/actors/companion/header.less b/styles/less/sheets/actors/companion/header.less index 240f9df8..3616a6b3 100644 --- a/styles/less/sheets/actors/companion/header.less +++ b/styles/less/sheets/actors/companion/header.less @@ -24,7 +24,7 @@ margin-bottom: -30px; input[type='text'] { - font-size: 24px; + font-size: var(--font-size-24); height: 32px; text-align: center; border: 1px solid transparent; @@ -37,11 +37,22 @@ } } + .resource-section { + width: 100%; + display: flex; + justify-content: center; + } + .status-section { display: flex; gap: 5px; justify-content: center; + &.pip-display { + width: 100%; + justify-content: space-around; + } + .status-number { display: flex; flex-direction: column; @@ -78,109 +89,109 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } } - .status-bar { - display: flex; - justify-content: center; - position: relative; - width: 100px; - height: 40px; + // .status-bar { + // display: flex; + // justify-content: center; + // position: relative; + // width: 100px; + // height: 40px; - .status-label { - position: relative; - top: 40px; - height: 22px; - width: 79px; - clip-path: path('M0 0H79L74 16.5L39 22L4 16.5L0 0Z'); - background: light-dark(@dark-blue, @golden); + // .status-label { + // position: relative; + // top: 40px; + // height: 22px; + // width: 79px; + // clip-path: path('M0 0H79L74 16.5L39 22L4 16.5L0 0Z'); + // background: light-dark(@dark-blue, @golden); - h4 { - font-weight: bold; - text-align: center; - line-height: 18px; - color: light-dark(@beige, @dark-blue); - } - } - .status-value { - position: absolute; - display: flex; - padding: 0 6px; - font-size: 1.5rem; - align-items: center; - width: 100px; - height: 40px; - justify-content: center; - text-align: center; - z-index: 2; - color: @beige; + // h4 { + // font-weight: bold; + // text-align: center; + // line-height: 18px; + // color: light-dark(@beige, @dark-blue); + // } + // } + // .status-value { + // position: absolute; + // display: flex; + // padding: 0 6px; + // font-size: 1.5rem; + // align-items: center; + // width: 100px; + // height: 40px; + // justify-content: center; + // text-align: center; + // z-index: 2; + // color: @beige; - input[type='number'] { - background: transparent; - font-size: 1.5rem; - width: 40px; - height: 30px; - text-align: center; - border: none; - outline: 2px solid transparent; - color: @beige; + // input[type='number'] { + // background: transparent; + // font-size: 1.5rem; + // width: 40px; + // height: 30px; + // text-align: center; + // border: none; + // outline: 2px solid transparent; + // color: @beige; - &.bar-input { - padding: 0; - color: @beige; - backdrop-filter: none; - background: transparent; - transition: all 0.3s ease; + // &.bar-input { + // padding: 0; + // color: @beige; + // backdrop-filter: none; + // background: transparent; + // transition: all 0.3s ease; - &:hover, - &:focus { - background: @semi-transparent-dark-blue; - backdrop-filter: blur(9.5px); - } - } - } + // &:hover, + // &:focus { + // background: @semi-transparent-dark-blue; + // backdrop-filter: blur(9.5px); + // } + // } + // } - .bar-label { - width: 40px; - } - } - .progress-bar { - position: absolute; - appearance: none; - width: 100px; - height: 40px; - border: 1px solid light-dark(@dark-blue, @golden); - border-radius: 6px; - z-index: 1; - background: @dark-blue; + // .bar-label { + // width: 40px; + // } + // } + // .progress-bar { + // position: absolute; + // appearance: none; + // width: 100px; + // height: 40px; + // border: 1px solid light-dark(@dark-blue, @golden); + // border-radius: 6px; + // z-index: 1; + // background: @dark-blue; - &::-webkit-progress-bar { - border: none; - background: @dark-blue; - border-radius: 6px; - } - &::-webkit-progress-value { - background: @gradient-hp; - border-radius: 6px; - } - &.stress-color::-webkit-progress-value { - background: @gradient-stress; - border-radius: 6px; - } - &::-moz-progress-bar { - background: @gradient-hp; - border-radius: 6px; - } - &.stress-color::-moz-progress-bar { - background: @gradient-stress; - border-radius: 6px; - } - } - } + // &::-webkit-progress-bar { + // border: none; + // background: @dark-blue; + // border-radius: 6px; + // } + // &::-webkit-progress-value { + // background: @gradient-hp; + // border-radius: 6px; + // } + // &.stress-color::-webkit-progress-value { + // background: @gradient-stress; + // border-radius: 6px; + // } + // &::-moz-progress-bar { + // background: @gradient-hp; + // border-radius: 6px; + // } + // &.stress-color::-moz-progress-bar { + // background: @gradient-stress; + // border-radius: 6px; + // } + // } + // } .level-div { white-space: nowrap; @@ -209,7 +220,7 @@ .level-button { color: light-dark(@dark, @beige); - font-size: 18px; + font-size: var(--font-size-18); line-height: 1; min-height: unset; height: min-content; diff --git a/styles/less/sheets/actors/environment/header.less b/styles/less/sheets/actors/environment/header.less index f7353b10..670f6c92 100644 --- a/styles/less/sheets/actors/environment/header.less +++ b/styles/less/sheets/actors/environment/header.less @@ -39,7 +39,7 @@ justify-content: center; align-items: center; padding: 3px 5px; - font-size: 12px; + font-size: var(--font-size-12); font: @font-body; background: light-dark(@dark-15, @beige-15); @@ -52,9 +52,16 @@ flex-direction: row; justify-content: center; align-items: center; - font-size: 12px; + font-size: var(--font-size-12); } } + + .attribution-header-label { + text-align: left; + position: relative; + top: 4px; + margin-bottom: -6px; + } } .status-number { @@ -93,7 +100,7 @@ font-weight: bold; text-align: center; line-height: 18px; - font-size: 12px; + font-size: var(--font-size-12); color: light-dark(@beige, @dark-blue); } } @@ -101,7 +108,7 @@ .item-name { input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: start; transition: all 0.3s ease; @@ -122,12 +129,6 @@ flex-direction: column; gap: 12px; padding: 10px 20px; - - .description, - .impulses { - text-align: start; - font-family: @font-body; - } } .environment-navigation { diff --git a/styles/less/sheets/actors/environment/potentialAdversaries.less b/styles/less/sheets/actors/environment/potentialAdversaries.less new file mode 100644 index 00000000..274362a5 --- /dev/null +++ b/styles/less/sheets/actors/environment/potentialAdversaries.less @@ -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; + } + } +} diff --git a/styles/less/sheets/actors/environment/sheet.less b/styles/less/sheets/actors/environment/sheet.less index 74cec028..f86e3d00 100644 --- a/styles/less/sheets/actors/environment/sheet.less +++ b/styles/less/sheets/actors/environment/sheet.less @@ -5,6 +5,10 @@ .appTheme({ &.environment { background-image: url('../assets/parchments/dh-parchment-dark.png'); + + .attribution-header-label { + background-image: url('../assets/parchments/dh-parchment-dark.png'); + } } }, { &.environment { @@ -18,5 +22,11 @@ overflow-y: auto; scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; + + &.active { + overflow: hidden; + display: flex; + flex-direction: column; + } } } diff --git a/styles/less/sheets/actors/party/header.less b/styles/less/sheets/actors/party/header.less new file mode 100644 index 00000000..9a2c7350 --- /dev/null +++ b/styles/less/sheets/actors/party/header.less @@ -0,0 +1,42 @@ +@import '../../../utils/colors.less'; +@import '../../../utils/fonts.less'; + +.party-header-sheet { + display: flex; + flex-direction: column; + justify-content: start; + text-align: center; + + .profile { + height: 235px; + mask-image: linear-gradient(0deg, transparent 0%, black 10%); + cursor: pointer; + } + + .item-container { + .item-name { + padding: 0 20px; + input[type='text'] { + font-size: 32px; + height: 42px; + text-align: center; + transition: all 0.3s ease; + outline: 2px solid transparent; + border: 1px solid transparent; + + &:hover[type='text'], + &:focus[type='text'] { + box-shadow: none; + outline: 2px solid light-dark(@dark-blue, @golden); + } + } + } + + .label { + font-style: normal; + font-weight: 700; + font-size: 16px; + margin: 5px 0; + } + } +} diff --git a/styles/less/sheets/actors/party/inventory.less b/styles/less/sheets/actors/party/inventory.less new file mode 100644 index 00000000..1dfc66de --- /dev/null +++ b/styles/less/sheets/actors/party/inventory.less @@ -0,0 +1,73 @@ +@import '../../../utils/colors.less'; +@import '../../../utils/fonts.less'; + +.application.sheet.daggerheart.actor.dh-style.party { + .tab.inventory { + .search-section { + display: flex; + gap: 10px; + align-items: center; + + .search-bar { + position: relative; + color: light-dark(@dark-blue-50, @beige-50); + width: 100%; + padding-top: 5px; + + input { + border-radius: 50px; + background: light-dark(@dark-blue-10, @golden-10); + border: none; + outline: 2px solid transparent; + transition: all 0.3s ease; + padding: 0 20px; + + &:hover { + outline: 2px solid light-dark(@dark, @golden); + } + + &:placeholder { + color: light-dark(@dark-blue-50, @beige-50); + } + + &::-webkit-search-cancel-button { + -webkit-appearance: none; + display: none; + } + } + + .icon { + align-content: center; + height: 32px; + position: absolute; + right: 20px; + font-size: 16px; + z-index: 1; + color: light-dark(@dark-blue-50, @beige-50); + } + } + } + + .items-section { + display: flex; + flex-direction: column; + gap: 10px; + overflow-y: auto; + mask-image: linear-gradient(0deg, transparent 0%, black 5%, black 95%, transparent 100%); + padding: 20px 0; + + scrollbar-width: thin; + scrollbar-color: light-dark(@dark-blue, @golden) transparent; + } + + .currency-section { + display: flex; + gap: 10px; + padding: 10px 10px 0; + + input { + color: light-dark(@dark, @beige); + } + } + } +} diff --git a/styles/less/sheets/actors/party/party-members.less b/styles/less/sheets/actors/party/party-members.less new file mode 100644 index 00000000..a433ae34 --- /dev/null +++ b/styles/less/sheets/actors/party/party-members.less @@ -0,0 +1,28 @@ +@import '../../../utils/colors.less'; +@import '../../../utils/fonts.less'; + +.application.sheet.daggerheart.actor.dh-style.party { + .tab.partyMembers { + max-height: 400px; + overflow: auto; + + .actors-list { + display: flex; + flex-direction: column; + gap: 10px; + align-items: center; + width: 100%; + } + .actors-dragger { + display: flex; + align-items: center; + justify-content: center; + box-sizing: border-box; + width: 100%; + height: 40px; + border: 1px dashed light-dark(@dark-blue-50, @beige-50); + border-radius: 3px; + color: light-dark(@dark-blue-50, @beige-50); + } + } +} diff --git a/styles/less/sheets/actors/party/resources.less b/styles/less/sheets/actors/party/resources.less new file mode 100644 index 00000000..fc7e0110 --- /dev/null +++ b/styles/less/sheets/actors/party/resources.less @@ -0,0 +1,196 @@ +@import '../../../utils/colors.less'; +@import '../../../utils/fonts.less'; +@import '../../../utils/mixin.less'; + +body.game:is(.performance-low, .noblur) { + .application.sheet.daggerheart.actor.dh-style.party .tab.resources .actors-list .actor-resources { + background: light-dark(@dark-blue, @dark-golden); + + .actor-name { + background: light-dark(@dark-blue, @dark-golden); + } + } +} + +.application.sheet.daggerheart.actor.dh-style.party { + .tab.resources { + overflow: auto; + + .actors-list { + display: flex; + flex-direction: row; + flex-wrap: wrap; + gap: 10px; + align-items: center; + width: 100%; + justify-content: center; + + .actor-resources { + display: flex; + flex-direction: column; + position: relative; + background: light-dark(@dark-blue-40, @dark-golden-40); + border-radius: 6px; + border: 1px solid light-dark(@dark-blue, @golden); + max-width: 230px; + height: -webkit-fill-available; + + .actor-name { + position: absolute; + top: 0px; + background: light-dark(@dark-blue-90, @dark-golden-80); + backdrop-filter: blur(6.5px); + border-radius: 6px 6px 0px 0px; + text-align: center; + width: 100%; + z-index: 1; + font-size: var(--font-size-20); + color: light-dark(@beige, @golden); + font-weight: bold; + padding: 5px 0; + } + + .actor-img { + height: 150px; + object-fit: cover; + object-position: top center; + border-radius: 6px 6px 0px 0px; + mask-image: linear-gradient(180deg, black 88%, transparent 100%); + } + + .resources { + display: flex; + flex-direction: column; + gap: 10px; + align-items: center; + margin: 10px; + + .slot-section { + display: flex; + flex-direction: column; + align-items: center; + + .slot-bar { + display: flex; + flex-wrap: wrap; + gap: 5px; + width: 239px; + + background-color: light-dark(@dark-blue-10, @dark-blue); + color: light-dark(@dark-blue, @golden); + padding: 5px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 6px; + width: fit-content; + + .armor-slot { + cursor: pointer; + transition: all 0.3s ease; + font-size: var(--font-size-12); + + .fa-shield-halved { + color: light-dark(@dark-blue-40, @golden-40); + } + } + + .slot { + width: 20px; + height: 10px; + border: 1px solid light-dark(@dark-blue, @golden); + background: light-dark(@dark-blue-10, @golden-10); + border-radius: 3px; + transition: all 0.3s ease; + cursor: pointer; + + &.filled { + background: light-dark(@dark-blue, @golden); + } + } + } + .slot-label { + display: flex; + align-items: center; + color: light-dark(@beige, @dark-blue); + background: light-dark(@dark-blue, @golden); + padding: 0 5px; + width: fit-content; + font-weight: bold; + border-radius: 0px 0px 5px 5px; + font-size: var(--font-size-12); + + .label { + padding-right: 5px; + } + + .value { + padding-left: 6px; + border-left: 1px solid light-dark(@beige, @dark-golden); + } + } + } + + .hope-section { + position: relative; + display: flex; + gap: 10px; + background-color: light-dark(transparent, @dark-blue); + color: light-dark(@dark-blue, @golden); + padding: 5px 10px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 3px; + align-items: center; + width: fit-content; + + h4 { + font-size: var(--font-size-12); + font-weight: bold; + text-transform: uppercase; + color: light-dark(@dark-blue, @golden); + } + + .hope-value { + display: flex; + cursor: pointer; + font-size: var(--font-size-12); + } + } + + .threshold-section { + display: flex; + align-self: center; + gap: 10px; + background-color: light-dark(transparent, @dark-blue); + color: light-dark(@dark-blue, @golden); + padding: 5px 10px; + border: 1px solid light-dark(@dark-blue, @golden); + border-radius: 3px; + align-items: center; + width: fit-content; + + h4 { + font-size: var(--font-size-12); + font-weight: bold; + text-transform: uppercase; + color: light-dark(@dark-blue, @golden); + + &.threshold-value { + color: light-dark(@dark, @beige); + } + } + } + } + } + } + .actors-dragger { + display: flex; + align-items: center; + justify-content: center; + box-sizing: border-box; + width: 100%; + height: 40px; + border: 1px dashed light-dark(@dark-blue-50, @beige-50); + border-radius: 3px; + color: light-dark(@dark-blue-50, @beige-50); + } + } +} diff --git a/styles/less/sheets/actors/party/sheet.less b/styles/less/sheets/actors/party/sheet.less new file mode 100644 index 00000000..658d9446 --- /dev/null +++ b/styles/less/sheets/actors/party/sheet.less @@ -0,0 +1,45 @@ +@import '../../../utils/colors.less'; +@import '../../../utils/fonts.less'; +@import '../../../utils/mixin.less'; + +.appTheme({ + &.party { + background-image: url('../assets/parchments/dh-parchment-dark.png'); + } +}, { + &.party { + background: url('../assets/parchments/dh-parchment-light.png'); + } +}); + +.application.sheet.daggerheart.actor.dh-style.party { + .tab { + height: -webkit-fill-available; + max-height: 514px; + overflow-y: auto; + scrollbar-width: thin; + scrollbar-color: light-dark(@dark-blue, @golden) transparent; + + &.active { + overflow: auto; + display: flex; + flex-direction: column; + } + + .actions-section { + display: flex; + align-items: center; + justify-content: center; + padding: 10px; + margin-bottom: 10px; + gap: 20px; + background-color: light-dark(@dark-blue-10, @golden-10); + + button { + span { + font-size: 12px; + } + } + } + } +} diff --git a/styles/less/sheets/index.less b/styles/less/sheets/index.less index a8f36a63..1de1b055 100644 --- a/styles/less/sheets/index.less +++ b/styles/less/sheets/index.less @@ -4,6 +4,7 @@ @import './actors/adversary/header.less'; @import './actors/adversary/sheet.less'; @import './actors/adversary/sidebar.less'; +@import './actors/adversary/effects.less'; @import './actors/character/biography.less'; @import './actors/character/effects.less'; @@ -17,12 +18,22 @@ @import './actors/companion/details.less'; @import './actors/companion/header.less'; @import './actors/companion/sheet.less'; +@import './actors/companion/effects.less'; @import './actors/environment/actions.less'; @import './actors/environment/header.less'; +@import './actors/environment/potentialAdversaries.less'; @import './actors/environment/sheet.less'; +@import './actors/party/header.less'; +@import './actors/party/party-members.less'; +@import './actors/party/sheet.less'; +@import './actors/party/inventory.less'; +@import './actors/party/resources.less'; + @import './items/beastform.less'; @import './items/class.less'; @import './items/domain-card.less'; @import './items/feature.less'; +@import './items/heritage.less'; +@import './items/item-sheet-shared.less'; diff --git a/styles/less/sheets/items/class.less b/styles/less/sheets/items/class.less index d32f60d6..526aa77f 100644 --- a/styles/less/sheets/items/class.less +++ b/styles/less/sheets/items/class.less @@ -25,7 +25,6 @@ gap: 10px; grid-template-columns: 1fr 3fr 1fr; h4 { - font-family: @font-body; font-weight: lighter; color: light-dark(@dark, @beige); } @@ -44,4 +43,18 @@ } } } + + .tab.questions { + .questions-container { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 8px; + + .questions-section { + display: flex; + flex-direction: column; + gap: 4px; + } + } + } } diff --git a/styles/less/sheets/items/heritage.less b/styles/less/sheets/items/heritage.less new file mode 100644 index 00000000..1342f5ee --- /dev/null +++ b/styles/less/sheets/items/heritage.less @@ -0,0 +1,12 @@ +.application.sheet.daggerheart.dh-style { + &.ancestry, + &.community { + .item-card-header { + .item-info { + .item-description { + gap: 0; + } + } + } + } +} diff --git a/styles/less/sheets/items/item-sheet-shared.less b/styles/less/sheets/items/item-sheet-shared.less new file mode 100644 index 00000000..d0a8cc48 --- /dev/null +++ b/styles/less/sheets/items/item-sheet-shared.less @@ -0,0 +1,13 @@ +.application.sheet.daggerheart.dh-style.item { + &.minimized { + .attribution-header-label { + display: none; + } + } + + .attribution-header-label { + font-style: italic; + font-family: @font-body; + color: light-dark(@chat-blue-bg, @beige-50); + } +} diff --git a/styles/less/ui/chat/ability-use.less b/styles/less/ui/chat/ability-use.less index 3e747380..88302d0d 100644 --- a/styles/less/ui/chat/ability-use.less +++ b/styles/less/ui/chat/ability-use.less @@ -1,118 +1,144 @@ -@import '../../utils/colors.less'; -@import '../../utils/fonts.less'; -@import '../../utils/spacing.less'; - -.daggerheart.chat { - &.domain-card { - display: flex; - flex-direction: column; - align-items: center; - - .card-img { - width: 100%; - height: 200px; - mask-image: linear-gradient(0deg, transparent 0%, black 10%, black 90%, transparent 100%); - object-fit: cover; - } - - details[open] { - .fa-chevron-down { - transform: rotate(180deg); - transition: all 0.3s ease; - } - } - - .domain-card-move { - width: 100%; - - .fa-chevron-down { - transition: all 0.3s ease; - margin-left: auto; - } - - .domain-card-header { - display: flex; - flex-direction: row; - align-items: center; - margin: 8px; - padding-bottom: 5px; - width: -webkit-fill-available; - gap: 5px; - border-bottom: 1px solid @golden; - - &:hover { - background: light-dark(@dark-blue-10, @golden-10); - cursor: pointer; - transition: all 0.3s ease; - } - - .domain-label { - display: flex; - flex-direction: column; - width: 100%; - padding-bottom: 5px; - width: -webkit-fill-available; - gap: 5px; - - .title { - font-size: 20px; - color: @golden; - font-family: @font-subtitle; - margin: 0; - } - - .tags { - display: flex; - gap: 10px; - flex-wrap: wrap; - - .tag { - display: flex; - flex-direction: row; - justify-content: center; - align-items: center; - padding: 3px 5px; - font-size: 12px; - font-family: @font-body; - - background: light-dark(@dark-15, @beige-15); - border: 1px solid light-dark(@dark, @beige); - color: light-dark(@dark, @beige); - border-radius: 3px; - } - } - } - } - } - - .description { - color: @beige; - padding: 8px; - font-family: @font-body; - } - - .ability-card-footer { - display: flex; - flex-wrap: wrap; - gap: 5px; - width: 100%; - padding: 0 8px; - - button { - font-family: @font-body; - font-weight: 600; - height: 40px; - flex: 1 1 calc(50% - 5px); - - &:nth-last-child(1):nth-child(odd) { - flex-basis: 100%; - } - } - - .ability-card-action-cost { - margin: auto; - font-size: 1.5em; - } - } - } -} +@import '../../utils/colors.less'; +@import '../../utils/fonts.less'; +@import '../../utils/spacing.less'; + +#interface.theme-light { + .daggerheart.chat.domain-card { + .domain-card-move .domain-card-header { + border-bottom: 1px solid @dark-blue; + + &:hover { + background: @dark-blue-10; + } + + .domain-label { + .title { + color: @dark-blue; + } + + .tags .tag { + background: @dark-15; + border: 1px solid @dark; + color: @dark; + } + } + + .fa-chevron-down { + color: @dark-blue; + } + } + + .description { + color: @dark; + } + } +} + +.daggerheart.chat { + &.domain-card { + display: flex; + flex-direction: column; + align-items: center; + + .card-img { + width: 100%; + height: 200px; + mask-image: linear-gradient(0deg, transparent 0%, black 10%, black 90%, transparent 100%); + object-fit: cover; + } + + details[open] { + .fa-chevron-down { + transform: rotate(180deg); + transition: all 0.3s ease; + } + } + + .domain-card-move { + width: 100%; + + .fa-chevron-down { + transition: all 0.3s ease; + margin-left: auto; + } + + .domain-card-header { + display: flex; + flex-direction: row; + align-items: center; + margin: 8px; + padding-bottom: 5px; + width: -webkit-fill-available; + gap: 5px; + border-bottom: 1px solid @golden; + + &:hover { + background: @golden-10; + cursor: pointer; + transition: all 0.3s ease; + } + + .domain-label { + display: flex; + flex-direction: column; + width: 100%; + padding-bottom: 5px; + width: -webkit-fill-available; + gap: 5px; + + .title { + font-size: var(--font-size-20); + color: @golden; + font-weight: 700; + } + + .tags { + display: flex; + gap: 10px; + flex-wrap: wrap; + + .tag { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + padding: 3px 5px; + font-size: var(--font-size-12); + + background: @beige-15; + border: 1px solid @beige; + color: @beige; + border-radius: 3px; + } + } + } + } + } + + .description { + padding: 8px; + } + + .ability-card-footer { + display: flex; + flex-wrap: wrap; + gap: 5px; + width: 100%; + padding: 0 8px; + + button { + height: 40px; + flex: 1 1 calc(50% - 5px); + + &:nth-last-child(1):nth-child(odd) { + flex-basis: 100%; + } + } + + .ability-card-action-cost { + margin: auto; + font-size: 1.5em; + } + } + } +} diff --git a/styles/less/ui/chat/action.less b/styles/less/ui/chat/action.less index c3c51816..817b0acd 100644 --- a/styles/less/ui/chat/action.less +++ b/styles/less/ui/chat/action.less @@ -1,101 +1,125 @@ -@import '../../utils/colors.less'; -@import '../../utils/fonts.less'; -@import '../../utils/spacing.less'; - -.daggerheart.chat { - &.action { - display: flex; - flex-direction: column; - align-items: center; - - details[open] { - .fa-chevron-down { - transform: rotate(180deg); - transition: all 0.3s ease; - } - } - - .action-move { - width: 100%; - - .fa-chevron-down { - transition: all 0.3s ease; - margin-left: auto; - } - - .action-section { - display: flex; - flex-direction: row; - align-items: center; - margin: 8px 8px 0; - padding-bottom: 5px; - width: -webkit-fill-available; - gap: 5px; - border-bottom: 1px solid @golden; - - &:hover { - background: light-dark(@dark-blue-10, @golden-10); - cursor: pointer; - transition: all 0.3s ease; - } - - .action-img { - width: 40px; - height: 40px; - border-radius: 3px; - object-fit: cover; - } - - .action-header { - display: flex; - flex-direction: column; - gap: 5px; - - .title { - font-size: 20px; - color: @golden; - font-family: @font-subtitle; - margin: 0; - } - - .label { - font-size: 12px; - color: @beige; - font-family: @font-body; - margin: 0; - } - } - } - } - - .description { - color: @beige; - padding: 8px; - font-family: @font-body; - } - - .ability-card-footer { - display: flex; - flex-wrap: wrap; - gap: 5px; - width: 100%; - padding: 0 8px; - - button { - font-family: @font-body; - font-weight: 600; - height: 40px; - flex: 1 1 calc(50% - 5px); - - &:nth-last-child(1):nth-child(odd) { - flex-basis: 100%; - } - } - - .ability-card-action-cost { - margin: auto; - font-size: 1.5em; - } - } - } -} +@import '../../utils/colors.less'; +@import '../../utils/fonts.less'; +@import '../../utils/spacing.less'; + +#interface.theme-light { + .daggerheart.chat.action { + .action-move .action-section { + border-bottom: 1px solid @dark-blue; + + &:hover { + background: @dark-blue-10; + } + + .action-header { + .title { + color: @dark-blue; + } + .label { + color: @dark; + } + } + + .fa-chevron-down { + color: @dark-blue; + } + } + + .description { + color: @dark; + } + } +} + +.daggerheart.chat { + &.action { + display: flex; + flex-direction: column; + align-items: center; + + details[open] { + .fa-chevron-down { + transform: rotate(180deg); + transition: all 0.3s ease; + } + } + + .action-move { + width: 100%; + + .fa-chevron-down { + transition: all 0.3s ease; + margin-left: auto; + } + + .action-section { + display: flex; + flex-direction: row; + align-items: center; + margin: 8px 8px 0; + padding-bottom: 5px; + width: -webkit-fill-available; + gap: 5px; + border-bottom: 1px solid @golden; + + &:hover { + background: @golden-10; + cursor: pointer; + transition: all 0.3s ease; + } + + .action-img { + width: 40px; + height: 40px; + border-radius: 3px; + object-fit: cover; + } + + .action-header { + display: flex; + flex-direction: column; + gap: 5px; + color: @beige; + + .title { + font-size: var(--font-size-20); + color: @golden; + font-weight: 700; + } + + .label { + font-size: var(--font-size-12); + color: @beige; + margin: 0; + } + } + } + } + + .description { + padding: 8px; + } + + .ability-card-footer { + display: flex; + flex-wrap: wrap; + gap: 5px; + width: 100%; + padding: 0 8px; + + button { + height: 40px; + flex: 1 1 calc(50% - 5px); + + &:nth-last-child(1):nth-child(odd) { + flex-basis: 100%; + } + } + + .ability-card-action-cost { + margin: auto; + font-size: 1.5em; + } + } + } +} diff --git a/styles/less/ui/chat/chat.less b/styles/less/ui/chat/chat.less index 81af3d23..828e2774 100644 --- a/styles/less/ui/chat/chat.less +++ b/styles/less/ui/chat/chat.less @@ -2,11 +2,139 @@ @import '../../utils/fonts.less'; @import '../../utils/spacing.less'; +#interface.theme-light { + .daggerheart.chat-sidebar .chat-log, + #chat-notifications .chat-log { + --text-color: @dark-blue; + --bg-color: @dark-blue-40; + + .chat-message { + .roll-formula { + background: @dark-15; + color: @dark; + } + + &.duality { + background-image: url(../assets/parchments/dh-parchment-dark.png); + + .message-content { + color: @beige; + } + + .roll-formula { + background: @dark-15; + color: @dark; + } + + .message-header { + .message-sub-header-container { + color: @beige; + h4 { + color: @golden; + } + } + .message-header-metadata { + .message-metadata { + color: @beige; + } + } + } + + &.hope { + --text-color: @golden; + --bg-color: @golden-40; + .message-header, + .message-content { + background-color: @golden-bg; + } + .roll-formula { + background: var(--bg-color); + color: var(--text-color); + } + } + + &.fear { + --text-color: @chat-blue; + --bg-color: @chat-blue-40; + .message-header, + .message-content { + background-color: @chat-blue-bg; + } + .roll-formula { + background: var(--bg-color); + color: var(--text-color); + } + } + + &.critical { + --text-color: @chat-purple; + --bg-color: @chat-purple-40; + .message-header, + .message-content { + background-color: @chat-purple-bg; + } + .roll-formula { + background: var(--bg-color); + color: var(--text-color); + } + } + } + + &:not(.duality) { + .font-20 { + color: @dark; + } + + .roll-die { + color: @beige; + } + + fieldset { + color: @dark-blue; + border-color: @dark-blue; + + legend { + color: @dark-blue; + } + } + .chat-roll { + .roll-part-header { + color: @dark-blue; + + span::before, + span::after { + color: @dark-blue; + } + + &:before { + background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, @dark-blue 100%); + } + + &:after { + background: linear-gradient(90deg, @dark-blue 0%, rgba(0, 0, 0, 0) 100%); + } + } + + .roll-part-content { + &.dice-result { + color: @dark; + } + .roll-result-container { + color: @dark-blue; + } + } + } + } + } + } +} + .daggerheart.chat { &.resource-roll { .reroll-message { + color: @beige; text-align: center; - font-size: 18px; + font-size: var(--font-size-18); margin-bottom: 0; } } @@ -27,8 +155,8 @@ .daggerheart, #chat-notifications { .chat-message { - --text-color: light-dark(@dark-blue, @golden); - --bg-color: light-dark(@dark-blue-40, @golden-40); + --text-color: @golden; + --bg-color: @golden-40; [data-use-perm='false'] { pointer-events: none; @@ -85,7 +213,7 @@ display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; - color: light-dark(@dark, @beige); + color: @beige; margin: 10px 0; span { @@ -148,7 +276,7 @@ position: absolute; top: 0; right: 0; - font-size: 10px; + font-size: var(--font-size-10); z-index: 2; filter: drop-shadow(0 0 3px black); } @@ -427,6 +555,7 @@ gap: 5px; margin-top: 8px; button { + height: 32px; flex: 1; } } diff --git a/styles/less/ui/chat/damage-summary.less b/styles/less/ui/chat/damage-summary.less new file mode 100644 index 00000000..02fdbadf --- /dev/null +++ b/styles/less/ui/chat/damage-summary.less @@ -0,0 +1,87 @@ +@import '../../utils/colors.less'; + +#interface.theme-light { + .daggerheart.chat.damage-summary .token-target-container { + &:hover { + background: @dark-blue-10; + } + + header { + .actor-name { + color: @dark; + } + + &::after { + background: @dark-blue; + } + } + } +} + +.daggerheart.chat.damage-summary { + display: flex; + flex-direction: column; + gap: 5px; + padding: 0; + + .token-target-container { + display: flex; + flex-direction: column; + gap: 2px; + cursor: pointer; + transition: all 0.3s ease; + border-radius: 6px; + + &:hover { + background: @golden-10; + } + + header { + display: flex; + align-items: center; + gap: 5px; + pointer-events: none; + position: relative; + margin-bottom: 10px; + + img { + width: 40px; + height: 40px; + padding: 0; + border-radius: 50%; + } + + .actor-name { + margin: 0; + color: @beige; + font-size: var(--font-size-20); + padding: 8px; + } + + &::after { + content: ''; + position: absolute; + bottom: -10px; + background: @golden; + mask-image: linear-gradient(270deg, transparent 0%, black 50%, transparent 100%); + height: 2px; + width: 100%; + } + } + + .damage-container { + display: flex; + flex-direction: column; + justify-content: center; + gap: 5px; + pointer-events: none; + margin-top: 5px; + list-style: disc; + + .damage-row { + padding: 0 2px; + gap: 4px; + } + } + } +} diff --git a/styles/less/ui/chat/downtime.less b/styles/less/ui/chat/downtime.less index bc702aeb..5496a2a3 100644 --- a/styles/less/ui/chat/downtime.less +++ b/styles/less/ui/chat/downtime.less @@ -1,87 +1,110 @@ -@import '../../utils/colors.less'; -@import '../../utils/fonts.less'; -@import '../../utils/spacing.less'; - -.daggerheart.chat { - &.downtime { - display: flex; - flex-direction: column; - align-items: center; - - details[open] { - .fa-chevron-down { - transform: rotate(180deg); - transition: all 0.3s ease; - } - } - - .downtime-moves-list { - display: flex; - flex-direction: column; - gap: 5px; - width: 100%; - - .fa-chevron-down { - transition: all 0.3s ease; - margin-left: auto; - } - - .downtime-move { - width: 100%; - - .downtime-label { - display: flex; - align-items: center; - gap: 5px; - border-bottom: 1px solid @golden; - margin: 0 8px; - padding-bottom: 5px; - width: -webkit-fill-available; - - &:hover { - background: light-dark(@dark-blue-10, @golden-10); - cursor: pointer; - transition: all 0.3s ease; - } - - .downtime-image { - width: 40px; - height: 40px; - border-radius: 3px; - } - - .header-label { - padding: 8px; - .title { - font-size: 16px; - color: @golden; - font-family: @font-subtitle; - margin: 0; - } - .label { - font-size: 12px; - color: @beige; - font-family: @font-body; - margin: 0; - } - } - } - - .description { - padding: 8px; - color: beige; - font-family: @font-body; - font-size: 14px; - } - } - - .action-use-button { - width: -webkit-fill-available; - margin: 0 8px; - font-family: @font-body; - font-weight: 600; - height: 40px; - } - } - } -} +@import '../../utils/colors.less'; +@import '../../utils/fonts.less'; +@import '../../utils/spacing.less'; + +#interface.theme-light { + .daggerheart.chat.downtime { + .downtime-moves-list .downtime-move { + &:hover { + background: @dark-blue-10; + } + + .downtime-label { + border-bottom: 1px solid @dark-blue; + + .header-label .title { + color: @dark-blue; + } + .header-label .label { + color: @dark; + } + } + + .fa-chevron-down { + color: @dark-blue; + } + } + + .description { + color: @dark; + } + } +} + +.daggerheart.chat { + &.downtime { + display: flex; + flex-direction: column; + align-items: center; + + details[open] { + .fa-chevron-down { + transform: rotate(180deg); + transition: all 0.3s ease; + } + } + + .downtime-moves-list { + display: flex; + flex-direction: column; + gap: 5px; + width: 100%; + + .fa-chevron-down { + transition: all 0.3s ease; + margin-left: auto; + } + + .downtime-move { + width: 100%; + + .downtime-label { + display: flex; + align-items: center; + gap: 5px; + border-bottom: 1px solid @golden; + margin: 0 8px; + padding-bottom: 5px; + width: -webkit-fill-available; + + &:hover { + background: light-dark(@dark-blue-10, @golden-10); + cursor: pointer; + transition: all 0.3s ease; + } + + .downtime-image { + width: 40px; + height: 40px; + border-radius: 3px; + } + + .header-label { + padding: 8px; + .title { + font-size: var(--font-size-16); + color: @golden; + font-weight: 700; + } + .label { + font-size: var(--font-size-12); + color: @beige; + margin: 0; + } + } + } + + .description { + padding: 8px; + } + } + + .action-use-button { + width: -webkit-fill-available; + margin: 0 8px; + font-weight: 600; + height: 40px; + } + } + } +} diff --git a/styles/less/ui/chat/effect-summary.less b/styles/less/ui/chat/effect-summary.less new file mode 100644 index 00000000..9bea1fd9 --- /dev/null +++ b/styles/less/ui/chat/effect-summary.less @@ -0,0 +1,166 @@ +@import '../../utils/colors.less'; + +#interface.theme-light { + .daggerheart.chat.effect-summary { + .effect-header, + .actor-header { + &::before, + &::after { + height: 2px; + background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, @dark-blue 100%); + } + + &::after { + background: linear-gradient(90deg, @dark-blue 0%, rgba(0, 0, 0, 0) 100%); + } + + span { + color: @dark; + } + } + + .token-target-container, + .effect-target-container { + .effect-label .title, + .title { + color: @dark-blue; + } + + .effect-label { + border-color: @dark-blue; + } + + &:hover { + background: @dark-blue-10; + } + } + } +} + +.daggerheart.chat.effect-summary { + display: flex; + flex-direction: column; + + .effect-header, + .actor-header { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 5px; + + &::before, + &::after { + content: ''; + flex: 1; + height: 2px; + background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, @golden 100%); + } + + &::after { + background: linear-gradient(90deg, @golden 0%, rgba(0, 0, 0, 0) 100%); + } + + span { + color: @beige; + padding: 0 10px; + white-space: nowrap; + } + } + + .effects-container { + display: flex; + flex-wrap: wrap; + gap: 5px; + margin-bottom: 8px; + } + + .targets-container { + display: flex; + flex-direction: column; + gap: 5px; + } + + .token-target-container { + display: flex; + align-items: center; + gap: 13px; + border-radius: 6px; + padding: 0 2px; + border-radius: 6px; + background: transparent; + transition: all 0.3s ease; + padding: 5px; + cursor: pointer; + transition: all 0.3s ease; + + &:hover { + background: @golden-10; + } + + img { + width: 40px; + height: 40px; + border-radius: 50%; + pointer-events: none; + } + + .title { + font-size: var(--font-size-20); + color: @golden; + font-weight: 700; + margin: 0; + pointer-events: none; + } + } + + details[open] { + .fa-chevron-down { + transform: rotate(180deg); + transition: all 0.3s ease; + } + } + + .effect-target-container { + width: 100%; + transition: all 0.3s ease; + cursor: pointer; + + &:hover { + background: @golden-10; + } + + .fa-chevron-down { + transition: all 0.3s ease; + margin-left: auto; + } + + .effect-label { + display: flex; + flex-direction: row; + align-items: center; + margin: 8px 8px 0; + padding-bottom: 5px; + width: -webkit-fill-available; + gap: 13px; + border-bottom: 1px solid @golden; + + .effect-img { + width: 40px; + height: 40px; + border-radius: 3px; + object-fit: cover; + } + + .title { + font-size: var(--font-size-20); + color: @golden; + font-weight: 700; + margin: 0; + } + } + + .description { + padding: 8px; + } + } +} diff --git a/styles/less/ui/chat/group-roll.less b/styles/less/ui/chat/group-roll.less new file mode 100644 index 00000000..02b8e312 --- /dev/null +++ b/styles/less/ui/chat/group-roll.less @@ -0,0 +1,210 @@ +.chat-message .message-content .group-roll { + display: flex; + flex-direction: column; + gap: 8px; + padding-bottom: 8px; + + .group-roll-section { + display: flex; + flex-direction: column; + gap: 4px; + + .group-roll-header { + display: flex; + align-items: center; + font-size: 14px; + margin-bottom: 0; + font-weight: normal; + + &.first { + margin-top: 5px; + } + + .group-roll-header-expand-section { + display: flex; + align-items: center; + gap: 4px; + cursor: pointer; + + label { + cursor: pointer; + } + + i { + color: light-dark(@dark-blue, @golden); + } + } + } + + .group-roll-content { + display: flex; + flex-direction: column; + gap: 16px; + border-radius: 5px; + padding: 5px; + overflow: hidden; + height: auto; + transition: all 0.3s ease; + + &.closed { + height: 0; + padding-top: 0; + padding-bottom: 0; + } + + &.finished { + background: light-dark(@dark-blue-10, @golden-10); + } + + .group-roll-main-roll { + display: flex; + flex-direction: column; + + .divider { + font-size: 14px; + margin-bottom: 0; + font-weight: normal; + } + + .main-roll-content { + display: flex; + align-items: center; + justify-content: center; + gap: 10px; + color: light-dark(@dark-blue, @golden); + + .main-value { + font-size: var(--font-size-24); + font-weight: bold; + } + + .main-text { + font-size: var(--font-size-16); + margin-top: 2px; + } + } + } + + .group-roll-member { + display: flex; + justify-content: space-between; + + .group-roll-data { + display: flex; + gap: 4px; + + img { + width: 42px; + height: 42px; + border-radius: 50%; + } + + .group-roll-label-container { + display: flex; + flex-direction: column; + justify-content: space-between; + + .group-roll-label-inner-container { + display: flex; + gap: 8px; + } + + .group-roll-modifier { + padding: 2px 8px; + border: 1px solid light-dark(@green, @green); + border-radius: 6px; + color: light-dark(@green, @green); + background: light-dark(@green-40, @green-40); + + &.failure { + border-color: light-dark(@red, @red); + color: light-dark(@red, @red); + background: light-dark(@red-40, @red-40); + } + } + + .group-roll-trait { + padding: 2px 8px; + border: 1px solid light-dark(white, white); + border-radius: 6px; + color: light-dark(white, white); + background: light-dark(@beige-80, @beige-80); + } + } + } + + .group-roll-rolling { + img { + width: 42px; + height: 42px; + + &:hover { + filter: drop-shadow(0 0 8px light-dark(@dark-blue, @golden)); + } + } + } + + .roll-results { + display: flex; + align-items: center; + border-radius: 5px; + width: fit-content; + gap: 16px; + cursor: pointer; + padding: 5px; + background: light-dark(@dark-blue-10, @golden-10); + color: light-dark(@dark-blue, @golden); + + &.finished { + background-color: initial; + } + + .reroll-result-container { + display: flex; + align-items: center; + gap: 16px; + + .label { + font-style: normal; + font-weight: 400; + font-size: var(--font-size-18); + line-height: 17px; + } + + i { + font-size: 16px; + } + + .success, + .success i { + color: @green; + } + + .failure, + .failure i { + color: @red; + } + } + + .group-roll-reroll { + position: relative; + display: flex; + align-items: center; + justify-content: center; + + .dice-icon { + width: 24px; + } + + .reroll-icon { + position: absolute; + font-size: 14px; + color: black; + filter: drop-shadow(0 0 3px black); + } + } + } + } + } + } +} diff --git a/styles/less/ui/chat/refresh-message.less b/styles/less/ui/chat/refresh-message.less new file mode 100644 index 00000000..2fce189b --- /dev/null +++ b/styles/less/ui/chat/refresh-message.less @@ -0,0 +1,13 @@ +.daggerheart.chat.refresh-message { + header { + display: flex; + flex-direction: column; + align-items: center; + gap: 2px; + + .subtitle { + font-size: 18; + font-weight: bold; + } + } +} diff --git a/styles/less/ui/chat/sheet.less b/styles/less/ui/chat/sheet.less index da66c12f..3d47a9b5 100644 --- a/styles/less/ui/chat/sheet.less +++ b/styles/less/ui/chat/sheet.less @@ -1,6 +1,72 @@ @import '../../utils/colors.less'; @import '../../utils/fonts.less'; +#interface.theme-light { + .chat-message:not(.duality) .message-content { + color: @dark; + + blockquote { + border-left: 5px solid @dark-blue-40; + } + + a[href] { + color: @dark-blue; + } + + a[href]:hover, + a[href].active { + font-weight: bold; + text-shadow: 0 0 8px @dark-blue; + } + + button { + background: transparent; + border: 1px solid @dark-blue; + color: @dark-blue; + + &:hover { + background: @light-black; + color: @dark-blue; + } + + &:disabled { + background: transparent; + color: @dark-blue; + + &:hover { + background: transparent; + color: @dark-blue; + } + } + + &.reverted { + background: @dark-blue-10; + color: @dark-blue; + border: 1px solid @dark; + &:hover { + background: transparent; + color: @dark-blue; + } + img { + border-radius: 3px; + } + } + } + + .roll-buttons button { + height: 40px; + font-family: @font-body; + font-weight: bold; + } + + .dice-roll .dice-formula, + .dice-roll .dice-total { + background: @dark-blue-40; + color: @dark-blue; + } + } +} + .chat-message.dh-chat-message { .message-content { padding: 0; @@ -17,7 +83,7 @@ .message-content { padding: 0 8px; font-family: @font-body; - color: light-dark(@dark, @beige); + color: @beige; blockquote { border-left: 5px solid light-dark(@dark-blue-40, @golden-40); @@ -34,15 +100,15 @@ } button { - background: light-dark(transparent, @golden); - border: 1px solid light-dark(@dark-blue, @dark-blue); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + border: 1px solid @dark-blue; + color: @dark-blue; outline: none; box-shadow: none; &:hover { - background: light-dark(@light-black, @dark-blue); - color: light-dark(@dark-blue, @golden); + background: @dark-blue; + color: @golden; } &.glow { @@ -50,24 +116,24 @@ } &:disabled { - background: light-dark(transparent, @golden); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + color: @dark-blue; opacity: 0.6; cursor: not-allowed; &:hover { - background: light-dark(transparent, @golden); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + color: @dark-blue; } } &.reverted { - background: light-dark(@dark-blue-10, @golden-10); - color: light-dark(@dark-blue, @golden); - border: 1px solid light-dark(@dark, transparent); + background: @golden-10; + color: @golden; + border: 1px solid transparent; &:hover { - background: light-dark(transparent, @golden); - color: light-dark(@dark-blue, @dark-blue); + background: @golden; + color: @dark-blue; } img { border-radius: 3px; @@ -98,8 +164,8 @@ .dice-roll .dice-total { box-shadow: none; border: none; - background: light-dark(@dark-blue-40, @golden-40); - color: light-dark(@dark-blue, @golden); + background: @golden-10; + color: @golden; font-weight: 600; align-content: center; } diff --git a/styles/less/ui/combat-sidebar/token-actions.less b/styles/less/ui/combat-sidebar/token-actions.less index 6fc84d29..41fb38ab 100644 --- a/styles/less/ui/combat-sidebar/token-actions.less +++ b/styles/less/ui/combat-sidebar/token-actions.less @@ -17,7 +17,7 @@ display: flex; align-items: center; justify-content: center; - font-size: 10px; + font-size: var(--font-size-10); padding: 8px; --button-size: 0; diff --git a/styles/less/ui/countdown/countdown-edit.less b/styles/less/ui/countdown/countdown-edit.less new file mode 100644 index 00000000..9051cccb --- /dev/null +++ b/styles/less/ui/countdown/countdown-edit.less @@ -0,0 +1,142 @@ +@import '../../utils/colors.less'; +@import '../../utils/fonts.less'; + +.theme-light .daggerheart.application.dh-style.countdown-edit { + background-image: url('../assets/parchments/dh-parchment-light.png'); +} + +.daggerheart.application.dh-style.countdown-edit { + color: light-dark(@dark, @beige); + background-image: url('../assets/parchments/dh-parchment-dark.png'); + + .edit-container { + display: flex; + flex-direction: column; + gap: 8px; + + h2 { + text-align: center; + color: light-dark(@dark, @golden); + } + + .header-tools { + display: grid; + grid-template-columns: 2fr 1fr 144px; + gap: 8px; + + .hide-tools { + white-space: nowrap; + flex-wrap: nowrap; + display: flex; + align-items: center; + + input { + position: relative; + top: 2px; + } + } + + .header-main-button { + height: 32px; + flex: 1; + } + + .default-ownership-tools { + display: flex; + align-items: center; + gap: 8px; + + select { + flex: 1; + background: light-dark(@beige, @dark-blue); + } + } + } + + .edit-content { + display: flex; + flex-direction: column; + gap: 8px; + overflow-y: auto; + overflow-x: hidden; + max-height: 500px; + scrollbar-width: thin; + scrollbar-color: light-dark(@dark-blue, @golden) transparent; + + .countdown-edit-container { + display: grid; + grid-template-columns: 48px 1fr 64px; + align-items: center; + gap: 8px; + + img { + width: 52px; + height: 52px; + border-radius: 6px; + } + + .countdown-edit-text { + display: flex; + flex-direction: column; + justify-content: center; + gap: 8px; + + .countdown-edit-subtext { + display: flex; + gap: 10px; + + .countdown-edit-sub-tag { + padding: 3px 5px; + font-size: var(--font-size-12); + font: @font-body; + + background: light-dark(@dark-15, @beige-15); + border: 1px solid light-dark(@dark, @beige); + border-radius: 3px; + } + } + } + + .countdown-edit-tools { + display: flex; + gap: 8px; + + &.same-row { + margin-top: 17.5px; + } + + a { + font-size: 16px; + } + } + } + + .countdown-edit-subrow { + display: flex; + gap: 16px; + margin: 0 72px 0 56px; + } + + .countdown-edit-input { + flex: 1; + display: flex; + flex-direction: column; + align-items: flex-start; + gap: 2px; + + &.tiny { + flex: 0; + input { + min-width: 2.5rem; + } + } + + input, + select { + background: light-dark(@beige, @dark-blue); + color: light-dark(@dark, @beige); + } + } + } + } +} diff --git a/styles/less/ui/countdown/countdown.less b/styles/less/ui/countdown/countdown.less index ecc9f1b8..9fa42ec7 100644 --- a/styles/less/ui/countdown/countdown.less +++ b/styles/less/ui/countdown/countdown.less @@ -1,61 +1,130 @@ @import '../../utils/colors.less'; @import '../../utils/fonts.less'; -.daggerheart.dh-style.countdown { - fieldset { - align-items: center; - margin-top: 5px; - border-radius: 6px; - border-color: light-dark(@dark-blue, @golden); +.theme-dark { + .daggerheart.dh-style.countdowns { + background-image: url(../assets/parchments/dh-parchment-dark.png); - legend { - font-family: @font-body; - font-weight: bold; - color: light-dark(@dark-blue, @golden); - - a { - text-shadow: none; - } + .window-header { + background-image: url(../assets/parchments/dh-parchment-dark.png); + } + } +} + +.daggerheart.dh-style.countdowns { + z-index: var(--z-index-ui) !important; + border: 0; + border-radius: 4px; + box-shadow: none; + width: 300px; + top: 16px; + right: 64px; + transition: + right ease 250ms, + opacity var(--ui-fade-duration) ease, + opacity var(--ui-fade-duration); + + .window-title { + font-family: @font-body; + } + + &.expanded { + right: 364px; + } + + &.icon-only { + width: 180px; + min-width: 180px; + } + + .window-header { + cursor: default; + border-bottom: 0; + } + + .window-content { + padding-top: 4px; + padding-bottom: 16px; + overflow: auto; + max-height: 312px; + + .countdowns-container { + display: flex; + flex-direction: column; + gap: 8px; + + .countdown-container { + display: flex; + justify-content: space-between; + + &.icon-only { + gap: 8px; + + .countdown-main-container { + .countdown-content { + justify-content: center; + + .countdown-tools { + gap: 8px; + } + } + } + } + + .countdown-main-container { + display: flex; + align-items: center; + gap: 16px; + + img { + width: 44px; + height: 44px; + border-radius: 6px; + } + + .countdown-content { + display: flex; + flex-direction: column; + justify-content: space-between; + + .countdown-tools { + display: flex; + align-items: center; + gap: 16px; + + .progress-tag { + border: 1px solid; + border-radius: 4px; + padding: 2px 4px; + background-color: light-dark(@beige, @dark-blue); + } + } + } + } + + .countdown-access-container { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + grid-auto-rows: min-content; + width: 38px; + gap: 4px; + + .countdown-access { + height: 10px; + width: 10px; + border-radius: 50%; + border: 1px solid light-dark(@dark-blue, @beige-80); + content: ''; + } + } + + .countdown-no-access-container { + width: 38px; + display: flex; + align-items: center; + justify-content: center; + } + } } } - - .minimized-view { - display: flex; - gap: 8px; - flex-wrap: wrap; - - .mini-countdown-container { - width: fit-content; - display: flex; - align-items: center; - gap: 8px; - border: 2px solid light-dark(@dark-blue, @golden); - border-radius: 6px; - padding: 0 4px 0 0; - background-image: url('../assets/parchments/dh-parchment-light.png'); - color: light-dark(@beige, @dark); - cursor: pointer; - - &.disabled { - cursor: initial; - } - - img { - width: 30px; - height: 30px; - border-radius: 6px 0 0 6px; - } - - .mini-countdown-name { - white-space: nowrap; - } - - .mini-countdown-value { - } - } - } - - .hidden { - display: none; - } } diff --git a/styles/less/ui/countdown/sheet.less b/styles/less/ui/countdown/sheet.less index 1692773e..0ce7c4af 100644 --- a/styles/less/ui/countdown/sheet.less +++ b/styles/less/ui/countdown/sheet.less @@ -47,7 +47,7 @@ position: absolute; top: 8px; right: 8px; - font-size: 18px; + font-size: var(--font-size-18); } .countdown-container { diff --git a/styles/less/ui/index.less b/styles/less/ui/index.less index 4a93feb6..743d16ae 100644 --- a/styles/less/ui/index.less +++ b/styles/less/ui/index.less @@ -1,7 +1,11 @@ @import './chat/ability-use.less'; @import './chat/action.less'; @import './chat/chat.less'; +@import './chat/damage-summary.less'; @import './chat/downtime.less'; +@import './chat/effect-summary.less'; +@import './chat/group-roll.less'; +@import './chat/refresh-message.less'; @import './chat/sheet.less'; @import './combat-sidebar/combat-sidebar.less'; @@ -12,6 +16,7 @@ @import './item-browser/item-browser.less'; @import './countdown/countdown.less'; +@import './countdown/countdown-edit.less'; @import './countdown/sheet.less'; @import './ownership-selection/ownership-selection.less'; @@ -19,5 +24,10 @@ @import './resources/resources.less'; @import './settings/settings.less'; - @import './settings/homebrew-settings/domains.less'; +@import './settings/homebrew-settings/types.less'; + +@import './sidebar/tabs.less'; +@import './sidebar/daggerheartMenu.less'; + +@import './scene-config/scene-config.less'; diff --git a/styles/less/ui/item-browser/item-browser.less b/styles/less/ui/item-browser/item-browser.less index 7d708e1f..23844128 100644 --- a/styles/less/ui/item-browser/item-browser.less +++ b/styles/less/ui/item-browser/item-browser.less @@ -71,6 +71,7 @@ } .compendium-results { + position: relative; padding: 16px; } @@ -90,7 +91,6 @@ gap: 10px; .item-path { - font-family: @font-body; color: light-dark(@dark, @beige); &.path-link { @@ -102,10 +102,14 @@ .folder-list, .item-list-header, .item-header > div { - gap: 10px; cursor: pointer; } + .item-list-header, + .item-header > div { + gap: 10px; + } + .item-filter { display: flex; align-items: center; @@ -136,7 +140,6 @@ input { border-radius: 50px; - font-family: @font-body; background: light-dark(@dark-blue-10, @golden-10); border: none; outline: 2px solid transparent; @@ -159,7 +162,7 @@ height: 32px; position: absolute; right: 20px; - font-size: 16px; + font-size: var(--font-size-16); z-index: 1; color: light-dark(@dark-blue-50, @beige-50); } @@ -175,7 +178,6 @@ justify-content: space-between; padding: 10px; border: 1px solid transparent; - font-family: @font-body; transition: all 0.1s ease; &.expanded + .subfolder-list { @@ -227,12 +229,12 @@ grid-template-columns: 40px 400px repeat(auto-fit, minmax(100px, 1fr)); align-items: center; text-transform: capitalize; - font-family: @font-body; } } .item-list-header, - .item-list { + .item-list, + .compendium-sidebar > .folder-list { overflow-y: auto; scrollbar-gutter: stable; scrollbar-width: thin; @@ -264,7 +266,6 @@ border: 1px solid light-dark(@dark-blue, @golden); border-radius: 3px; min-height: 30px; - font-family: @font-body; font-weight: bold; > * { @@ -278,11 +279,11 @@ } &[data-sort-type='ASC']:after { - content: '\f0d7'; + content: '\f884'; } &[data-sort-type='DESC']:after { - content: '\f0d8'; + content: '\f885'; } } } @@ -291,6 +292,7 @@ display: flex; flex-direction: column; gap: 5px; + flex: 1; .item-container { &:hover { @@ -303,21 +305,20 @@ display: flex; flex-direction: column; gap: 5px; - font-family: @font-body; h1 { - font-size: 32px; + font-size: var(--font-size-32); } h2 { - font-size: 28px; + font-size: var(--font-size-28); font-weight: 600; } h3 { - font-size: 20px; + font-size: var(--font-size-20); font-weight: 600; } h4 { - font-size: 16px; + font-size: var(--font-size-16); color: @beige; font-weight: 600; } @@ -328,7 +329,6 @@ padding: 0 0 0 1.25rem; li { - font-family: @font-body; margin-bottom: 0.25rem; } } @@ -363,7 +363,6 @@ .form-group { label { flex: 1; - font-family: @font-body; } .form-fields { width: 100%; @@ -393,12 +392,12 @@ margin: 0; .title { - font-family: @font-subtitle; - margin: 0; text-align: center; + font-weight: bold; } + .hint { - font-family: @font-body; + flex: unset; } } @@ -410,6 +409,7 @@ &.lite, &.no-folder { + .compendium-sidebar, .menu-path { display: none; } diff --git a/styles/less/ui/ownership-selection/ownership-selection.less b/styles/less/ui/ownership-selection/ownership-selection.less index 56fddd4f..76ae0930 100644 --- a/styles/less/ui/ownership-selection/ownership-selection.less +++ b/styles/less/ui/ownership-selection/ownership-selection.less @@ -6,9 +6,15 @@ flex-direction: column; gap: 8px; + .ownership-list { + display: flex; + flex-direction: column; + gap: 10px; + margin-top: 10px; + } + .ownership-container { display: flex; - border: 2px solid light-dark(@dark-blue, @golden); border-radius: 6px; padding: 0 4px 0 0; align-items: center; @@ -17,12 +23,24 @@ img { height: 40px; width: 40px; - border-radius: 6px 0 0 6px; + border-radius: 50%; + } + + span { + flex: 3; } select { + flex: 1; margin: 4px 0; } } + + footer { + margin-top: 10px; + button { + height: 32px; + } + } } } diff --git a/styles/less/ui/scene-config/scene-config.less b/styles/less/ui/scene-config/scene-config.less new file mode 100644 index 00000000..fb36dd33 --- /dev/null +++ b/styles/less/ui/scene-config/scene-config.less @@ -0,0 +1,40 @@ +.theme-light .application.sheet.scene-config { + .sheet-tabs.tabs a[data-tab='dh'] { + &.active img, + &:hover img { + filter: @grey-filter drop-shadow(0 0 4px var(--color-shadow-primary)); + } + + img { + filter: @grey-filter; + } + } +} + +.application.sheet.scene-config { + .sheet-tabs.tabs { + a[data-tab='dh'] { + display: flex; + align-items: center; + gap: 4px; + + &.active, + &:hover { + img { + filter: @beige-filter drop-shadow(0 0 4px var(--color-shadow-primary)); + } + } + + img { + width: 18px; + position: relative; + top: -3px; + filter: @beige-filter; + } + } + } + + .helper-text { + font-style: italic; + } +} diff --git a/styles/less/ui/settings/homebrew-settings/domains.less b/styles/less/ui/settings/homebrew-settings/domains.less index 893f58be..da258fcd 100644 --- a/styles/less/ui/settings/homebrew-settings/domains.less +++ b/styles/less/ui/settings/homebrew-settings/domains.less @@ -33,7 +33,6 @@ h2 { display: flex; align-items: center; - font-family: @font-subtitle; position: relative; width: auto; white-space: nowrap; @@ -45,7 +44,7 @@ border-radius: 50%; width: 24px; height: 24px; - font-size: 12px; + font-size: var(--font-size-12); } } } @@ -123,7 +122,7 @@ button { border-radius: 50%; - font-size: 12px; + font-size: var(--font-size-12); height: 24px; width: 24px; margin-right: 4px; diff --git a/styles/less/ui/settings/homebrew-settings/types.less b/styles/less/ui/settings/homebrew-settings/types.less new file mode 100644 index 00000000..d09431f7 --- /dev/null +++ b/styles/less/ui/settings/homebrew-settings/types.less @@ -0,0 +1,52 @@ +.theme-light .daggerheart.dh-style.setting.homebrew-settings .types.tab { + .adversary-types-container .adversary-type-container { + background-image: url('../assets/parchments/dh-parchment-light.png'); + } +} + +.daggerheart.dh-style.setting.homebrew-settings { + .types.tab { + .adversary-types-container { + width: 100%; + display: grid; + grid-template-columns: 1fr 1fr 1fr; + gap: 4px; + + .adversary-type-container { + height: 2em; + display: flex; + align-items: center; + justify-content: space-between; + gap: 8px; + border: 1px solid; + border-radius: 6px; + padding: 0 8px; + border: 1px solid light-dark(@dark-blue, @golden); + color: light-dark(@dark, @beige); + background-image: url('../assets/parchments/dh-parchment-dark.png'); + cursor: pointer; + opacity: 0.6; + + &:hover { + opacity: 1; + } + + &.active { + opacity: 1; + background: var(--color-warm-2); + } + } + } + + .type-edit-container { + width: 100%; + display: flex; + flex-direction: column; + gap: 8px; + + textarea { + width: 100%; + } + } + } +} diff --git a/styles/less/ui/settings/settings.less b/styles/less/ui/settings/settings.less index 8062ff73..788db394 100644 --- a/styles/less/ui/settings/settings.less +++ b/styles/less/ui/settings/settings.less @@ -4,7 +4,7 @@ fieldset { display: flex; flex-direction: column; - gap: 4px; + gap: 0.5rem; &.two-columns { display: grid; @@ -16,6 +16,12 @@ } } + &.six-columns { + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; + gap: 2px; + } + &.start-align { align-self: flex-start; } @@ -26,6 +32,7 @@ display: flex; align-items: center; gap: 8px; + flex-wrap: nowrap; } .settings-items { @@ -53,7 +60,7 @@ } i { - font-size: 18px; + font-size: var(--font-size-18); } } } @@ -80,7 +87,7 @@ width: 80%; .item-name input[type='text'] { - font-size: 32px; + font-size: var(--font-size-32); height: 42px; text-align: center; width: 90%; @@ -103,28 +110,9 @@ gap: 4px; } - .trait-array-container { - display: flex; - justify-content: space-evenly; - gap: 8px; - margin-bottom: 16px; - - .trait-array-item { - position: relative; - display: flex; - justify-content: center; - - label { - position: absolute; - top: -7px; - font-size: 12px; - font-variant: petite-caps; - z-index: 2; - } - - input { - text-align: center; - } + .trait-item { + input { + text-align: center; } } diff --git a/styles/less/ui/sidebar/daggerheartMenu.less b/styles/less/ui/sidebar/daggerheartMenu.less new file mode 100644 index 00000000..80eda9a1 --- /dev/null +++ b/styles/less/ui/sidebar/daggerheartMenu.less @@ -0,0 +1,50 @@ +.tab.sidebar-tab.daggerheartMenu-sidebar { + padding: 4px; + + div[data-application-part] { + display: flex; + flex-direction: column; + gap: 8px; + } + + h2 { + margin-top: 8px; + text-align: center; + font-weight: bold; + } + + .menu-refresh-container { + display: flex; + flex-direction: column; + gap: 8px; + + .menu-refresh-inner-container { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 8px; + + .experience-chip { + display: flex; + align-items: center; + border-radius: 5px; + width: fit-content; + gap: 5px; + cursor: pointer; + padding: 5px; + background: light-dark(@dark-blue-10, @golden-10); + color: light-dark(@dark-blue, @golden); + + .label { + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 17px; + } + + &.selected { + background: light-dark(@dark-blue-40, @golden-40); + } + } + } + } +} diff --git a/styles/less/ui/sidebar/tabs.less b/styles/less/ui/sidebar/tabs.less new file mode 100644 index 00000000..ec4bbe9f --- /dev/null +++ b/styles/less/ui/sidebar/tabs.less @@ -0,0 +1,15 @@ +.theme-light #interface #ui-right #sidebar { + menu li button img { + filter: @grey-filter; + } +} + +#interface #ui-right #sidebar { + menu li button { + img { + width: 22px; + max-width: unset; + filter: @beige-filter; + } + } +} diff --git a/styles/less/utils/colors.less b/styles/less/utils/colors.less index 64edfc6f..6fcf6db2 100755 --- a/styles/less/utils/colors.less +++ b/styles/less/utils/colors.less @@ -4,6 +4,7 @@ @golden: #f3c267; @golden-10: #f3c26710; @golden-40: #f3c26740; +@golden-90: #f3c26790; @golden-bg: #f3c2671a; @golden-secondary: #eaaf42; @golden-filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(2008%) hue-rotate(332deg) brightness(99%) @@ -24,6 +25,7 @@ @medium-red-40: #d0474740; @dark-golden: #2b1d03; +@dark-golden-40: #2b1d0340; @dark-golden-80: #2b1d0380; @red: #e54e4e; @@ -47,13 +49,17 @@ @dark-blue-40: #18162e40; @dark-blue-50: #18162e50; @dark-blue-60: #18162e60; +@dark-blue-90: #18162e90; @semi-transparent-dark-blue: rgba(24, 22, 46, 0.33); @dark: #222; @dark-15: #22222215; @dark-40: #22222240; +@dark-80: #22222280; @dark-filter: brightness(0) saturate(100%); +@grey-filter: brightness(15%) saturate(20%); + @deep-black: #0e0d15; @beige: #efe6d8; diff --git a/styles/less/utils/fonts.less b/styles/less/utils/fonts.less index 2e62a0bf..61c9792c 100755 --- a/styles/less/utils/fonts.less +++ b/styles/less/utils/fonts.less @@ -1,50 +1,14 @@ @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cinzel+Decorative:wght@700&family=Montserrat:wght@400;600&display=swap'); +@import './mixin.less'; @font-title: 'Cinzel Decorative', serif; @font-subtitle: 'Cinzel', serif; @font-body: 'Montserrat', sans-serif; -.application.sheet.daggerheart.dh-style { - h1 { - font-family: @font-title; - margin: 0; - border: none; - font-weight: normal; - } - - h2, - h3 { - font-family: @font-subtitle; - margin: 0; - border: none; - font-weight: normal; - } - - h4 { - font-family: @font-body; - font-size: 14px; - border: none; - font-weight: 700; - margin: 0; - text-shadow: none; - color: #f3c267; - font-weight: normal; - } - - h5 { - font-size: 14px; - color: #f3c267; - margin: 0; - font-weight: normal; - } - - p, - span { - font-family: @font-body; - } - - small { - font-family: @font-body; - opacity: 0.8; - } +.dh-style { + .dh-typography(); +} + +.dh-style fieldset { + .dh-typography(); } diff --git a/styles/less/utils/mixin.less b/styles/less/utils/mixin.less index 0e52fa82..49e97a1f 100644 --- a/styles/less/utils/mixin.less +++ b/styles/less/utils/mixin.less @@ -30,7 +30,7 @@ align-items: center; h3 { - font-size: 20px; + font-size: var(--font-size-20); } } @@ -44,3 +44,73 @@ gap: @gap; align-items: center; } + +/** + * Apply default typography styles. + */ +.dh-typography() { + h1 { + font-family: @font-title; + margin: 0; + border: none; + font-weight: normal; + } + + h1 input[type='text'] { + font-family: @font-title; + } + + h2, + h3 { + font-family: @font-subtitle; + margin: 0; + border: none; + font-weight: normal; + } + + h4 { + font-family: @font-body; + font-size: var(--font-size-14); + border: none; + font-weight: 700; + margin: 0; + text-shadow: none; + font-weight: normal; + } + + h5 { + font-family: @font-body; + font-size: var(--font-size-14); + margin: 0; + font-weight: normal; + } + + p, + span, + textarea, + label, + select, + multi-select .tags .tag, + table, + fieldset legend, + input[type='text'], + input[type='number'], + input[type='search'], + .tagify__dropdown, + li { + font-family: @font-body; + } + + button span { + font-weight: bold; + } + + small { + font-family: @font-body; + opacity: 0.8; + } + + nav a { + font-family: @font-body; + } +} diff --git a/styles/less/ux/autocomplete/autocomplete.less b/styles/less/ux/autocomplete/autocomplete.less index 868b4f43..08854a53 100644 --- a/styles/less/ux/autocomplete/autocomplete.less +++ b/styles/less/ux/autocomplete/autocomplete.less @@ -1,3 +1,6 @@ +@import '../../utils/colors.less'; +@import '../../utils/fonts.less'; + .theme-light .autocomplete { background-image: url('../assets/parchments/dh-parchment-light.png'); color: black; @@ -22,16 +25,20 @@ .group { font-weight: bold; - font-size: 14px; + font-size: var(--font-size-14); padding-left: 8px; } li[role='option'] { - font-size: 14px; - padding-left: 10px; + display: flex; + align-items: center; + gap: 10px; + font-size: var(--font-size-14); + padding: 0 10px; cursor: pointer; - &:hover { + &:hover, + &.selected { background-color: light-dark(@dark, @beige); color: light-dark(@beige, var(--color-dark-3)); } @@ -39,5 +46,16 @@ > div { white-space: nowrap; } + + img { + height: 40px; + width: 40px; + border-radius: 50%; + margin-bottom: 10px; + + &:first-child { + margin-top: 10px; + } + } } } diff --git a/styles/less/ux/tooltip/tooltip.less b/styles/less/ux/tooltip/tooltip.less index 43f47da5..1d7079ee 100644 --- a/styles/less/ux/tooltip/tooltip.less +++ b/styles/less/ux/tooltip/tooltip.less @@ -85,7 +85,7 @@ gap: 8px; .tooltip-chip { - font-size: 18px; + font-size: var(--font-size-18); padding: 2px 4px; border: 1px solid light-dark(@dark-blue, @golden); border-radius: 6px; diff --git a/system.json b/system.json index 8e5a7610..a16b3562 100644 --- a/system.json +++ b/system.json @@ -2,10 +2,10 @@ "id": "daggerheart", "title": "Daggerheart", "description": "An unofficial implementation of the Daggerheart system", - "version": "1.1.2", + "version": "1.2.0", "compatibility": { "minimum": "13", - "verified": "13.347", + "verified": "13.350", "maximum": "13" }, "authors": [ @@ -220,6 +220,9 @@ }, "environment": { "htmlFields": ["notes", "description"] + }, + "party": { + "htmlFields": ["notes"] } }, "Item": { @@ -266,7 +269,10 @@ "dualityRoll": {}, "adversaryRoll": {}, "damageRoll": {}, - "abilityUse": {} + "abilityUse": {}, + "tagTeam": {}, + "groupRoll": {}, + "systemMessage": {} } }, "background": "systems/daggerheart/assets/logos/FoundrybornBackgroundLogo.png", diff --git a/templates/actionTypes/beastform.hbs b/templates/actionTypes/beastform.hbs index b2710208..b9bea445 100644 --- a/templates/actionTypes/beastform.hbs +++ b/templates/actionTypes/beastform.hbs @@ -1,9 +1,4 @@ - diff --git a/templates/levelup/tabs/summary.hbs b/templates/levelup/tabs/summary.hbs index a57b820a..3c3cf4b7 100644 --- a/templates/levelup/tabs/summary.hbs +++ b/templates/levelup/tabs/summary.hbs @@ -19,9 +19,13 @@ {{#if this.achievements.proficiency.shown}}{{localize (concat "DAGGERHEART.SETTINGS.Automation.FIELDS.roll." field.name ".hint")}}
+{{document.system.evasion}}
@@ -64,10 +32,29 @@ {{#if document.system.armor.system.marks}} + {{/if}}