diff --git a/daggerheart.mjs b/daggerheart.mjs index 56ad3e3d..f939743c 100644 --- a/daggerheart.mjs +++ b/daggerheart.mjs @@ -187,12 +187,15 @@ Hooks.on('renderHandlebarsApplication', (_, element) => { Hooks.on('chatMessage', (_, message) => { if (message.startsWith('/dr')) { - const rollCommand = rollCommandToJSON(message.replace(/\/dr\s?/, '')); - if (!rollCommand) { + const result = rollCommandToJSON(message.replace(/\/dr\s?/, '')); + if (!result) { ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.dualityParsing')); return false; } + const { result: rollCommand, flavor } = result; + + const reaction = rollCommand.reaction; const traitValue = rollCommand.trait?.toLowerCase(); const advantage = rollCommand.advantage ? CONFIG.DH.ACTIONS.advantageState.advantage.value @@ -208,7 +211,16 @@ Hooks.on('chatMessage', (_, message) => { }) : game.i18n.localize('DAGGERHEART.GENERAL.duality'); - enrichedDualityRoll({ traitValue, target, difficulty, title, label: 'test', actionType: null, advantage }); + enrichedDualityRoll({ + reaction, + traitValue, + target, + difficulty, + title, + label: 'test', + actionType: null, + advantage + }); return false; } }); @@ -235,3 +247,48 @@ Hooks.on('renderJournalDirectory', async (tab, html, _, options) => { }; } }); + +Hooks.on('moveToken', async (movedToken, data) => { + const effectsAutomation = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation).effects; + if (!effectsAutomation.rangeDependent) return; + + const rangeDependantEffects = movedToken.actor.effects.filter(effect => effect.system.rangeDependence?.enabled); + + const updateEffects = async (disposition, token, effects, effectUpdates) => { + const rangeMeasurement = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.RangeMeasurement); + + for (let effect of effects.filter(x => x.system.rangeDependence?.enabled)) { + const { target, range, type } = effect.system.rangeDependence; + if ((target === 'friendly' && disposition !== 1) || (target === 'hostile' && disposition !== -1)) + return false; + + const distanceBetween = canvas.grid.measurePath([ + { ...movedToken.toObject(), x: data.destination.x, y: data.destination.y }, + token + ]).distance; + const distance = rangeMeasurement[range]; + + const reverse = type === CONFIG.DH.GENERAL.rangeInclusion.outsideRange.id; + const newDisabled = reverse ? distanceBetween <= distance : distanceBetween > distance; + const oldDisabled = effectUpdates[effect.uuid] ? effectUpdates[effect.uuid].disabled : newDisabled; + effectUpdates[effect.uuid] = { + disabled: oldDisabled || newDisabled, + value: effect + }; + } + }; + + const effectUpdates = {}; + for (let token of game.scenes.find(x => x.active).tokens) { + if (token.id !== movedToken.id) { + await updateEffects(token.disposition, token, rangeDependantEffects, effectUpdates); + } + + if (token.actor) await updateEffects(movedToken.disposition, token, token.actor.effects, effectUpdates); + } + + for (let key in effectUpdates) { + const effect = effectUpdates[key]; + await effect.value.update({ disabled: effect.disabled }); + } +}); diff --git a/lang/en.json b/lang/en.json index 40317f8c..1ccfeac8 100755 --- a/lang/en.json +++ b/lang/en.json @@ -88,6 +88,17 @@ } } }, + "ACTIVEEFFECT": { + "Config": { + "rangeDependence": { + "title": "Range Dependence" + } + }, + "RangeDependance": { + "hint": "Settings for an optional distance at which this effect should activate", + "title": "Range Dependant" + } + }, "ACTORS": { "Adversary": { "FIELDS": { @@ -534,83 +545,219 @@ "ArmorFeature": { "burning": { "name": "Burning", - "description": "When an adversary attacks you within Melee range, they mark a Stress." + "description": "When an adversary attacks you within Melee range, they mark a Stress.", + "actions": { + "burn": { + "name": "Burn", + "description": "When an adversary attacks you within Melee range, they mark a Stress." + } + } }, "channeling": { "name": "Channeling", - "description": "+1 to Spellcast Rolls" + "description": "+1 to Spellcast Rolls", + "effects": { + "channeling": { + "name": "Channeling", + "description": "+1 to Spellcast Rolls" + } + } }, "difficult": { "name": "Difficult", - "description": "-1 to all character traits and Evasion" + "description": "-1 to all character traits and Evasion", + "effects": { + "difficult": { + "name": "Difficult", + "description": "-1 to all character traits and Evasion" + } + } }, "flexible": { "name": "Flexible", - "description": "+1 to Evasion" + "description": "+1 to Evasion", + "effects": { + "flexible": { + "name": "Flexible", + "description": "+1 to Evasion" + } + } }, "fortified": { "name": "Fortified", - "description": "When you mark an Armor Slot, you reduce the severity of an attack by two thresholds instead of one." + "description": "When you mark an Armor Slot, you reduce the severity of an attack by two thresholds instead of one.", + "effects": { + "fortified": { + "name": "Fortified", + "description": "When you mark an Armor Slot, you reduce the severity of an attack by two thresholds instead of one." + } + } }, "gilded": { "name": "Gilded", - "description": "+1 to Presence" + "description": "+1 to Presence", + "effects": { + "gilded": { + "name": "Gilded", + "description": "+1 to Presence" + } + } }, "heavy": { "name": "Heavy", - "description": "-1 to Evasion" + "description": "-1 to Evasion", + "effects": { + "heavy": { + "name": "Heavy", + "description": "-1 to Evasion" + } + } }, "hopeful": { "name": "Hopeful", - "description": "When you would spend a Hope, you can mark an Armor Slot instead." + "description": "When you would spend a Hope, you can mark an Armor Slot instead.", + "actions": { + "hope": { + "name": "Hope", + "description": "When you would spend a Hope, you can mark an Armor Slot instead." + } + } }, "impenetrable": { "name": "Impenetrable", - "description": "Once per short rest, when you would mark your last Hit Point, you can instead mark a Stress." + "description": "Once per short rest, when you would mark your last Hit Point, you can instead mark a Stress.", + "actions": { + "impenetrable": { + "name": "Impenetrable", + "description": "Once per short rest, when you would mark your last Hit Point, you can instead mark a Stress." + } + } }, "magical": { "name": "Magical", - "description": "You can't mark an Armor Slot to reduce physical damage." + "description": "You can't mark an Armor Slot to reduce physical damage.", + "effects": { + "magical": { + "name": "Magical", + "description": "You can't mark an Armor Slot to reduce physical damage." + } + } + }, + "painful": { + "name": "Painful", + "description": "Each time you mark an Armor Slot, you must mark a Stress.", + "actions": { + "pain": { + "name": "Pain", + "description": "Each time you mark an Armor Slot, you must mark a Stress." + } + } }, "physical": { "name": "Physical", - "description": "You can't mark an Armor Slot to reduce magic damage." + "description": "You can't mark an Armor Slot to reduce magic damage.", + "effects": { + "physical": { + "name": "Physical", + "description": "You can't mark an Armor Slot to reduce magic damage." + } + } }, "quiet": { "name": "Quiet", - "description": "You gain a +2 bonus to rolls you make to move silently." + "description": "You gain a +2 bonus to rolls you make to move silently.", + "actions": { + "quiet": { + "name": "Quiet", + "description": "You gain a +2 bonus to rolls you make to move silently." + } + } }, "reinforced": { "name": "Reinforced", - "description": "When you mark your last Armor Slot, increase your damage thresholds by +2 until you clear at least 1 Armor Slot." + "description": "When you mark your last Armor Slot, increase your damage thresholds by +2 until you clear at least 1 Armor Slot.", + "actions": { + "reinforce": { + "name": "Reinforce", + "description": "When you mark your last Armor Slot, increase your damage thresholds by +2 until you clear at least 1 Armor Slot." + } + }, + "effects": { + "reinforced": { + "name": "Reinforced", + "description": "When you mark your last Armor Slot, increase your damage thresholds by +2 until you clear at least 1 Armor Slot." + } + } }, "resilient": { "name": "Resilient", - "description": "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." + "description": "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.", + "actions": { + "resilient": { + "name": "Resilient", + "description": "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." + } + } }, "sharp": { "name": "Sharp", - "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll." + "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll.", + "effects": { + "sharp": { + "name": "Sharp", + "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll." + } + } }, "shifting": { "name": "Shifting", - "description": "When you are targeted for an attack, you can mark an Armor Slot to give the attack roll against you disadvantage." + "description": "When you are targeted for an attack, you can mark an Armor Slot to give the attack roll against you disadvantage.", + "actions": { + "shift": { + "name": "Shift", + "description": "When you are targeted for an attack, you can mark an Armor Slot to give the attack roll against you disadvantage." + } + } }, "timeslowing": { "name": "Timeslowing", - "description": "Mark an Armor Slot to roll a d4 and add its result as a bonus to your Evasion against an incoming attack." + "description": "Mark an Armor Slot to roll a d4 and add its result as a bonus to your Evasion against an incoming attack.", + "actions": { + "slowTime": { + "name": "Slow Time", + "description": "Mark an Armor Slot to roll a d4 and add its result as a bonus to your Evasion against an incoming attack." + } + } }, "truthseeking": { "name": "Truthseeking", - "description": "This armor glows when another creature within Close range tells a lie." + "description": "This armor glows when another creature within Close range tells a lie.", + "actions": { + "truthseeking": { + "name": "Truthseeking", + "description": "This armor glows when another creature within Close range tells a lie." + } + } }, "veryHeavy": { "name": "Very Heavy", - "description": "-2 to Evasion; -1 to Agility" + "description": "-2 to Evasion; -1 to Agility", + "effects": { + "veryHeavy": { + "name": "Very Heavy", + "description": "-2 to Evasion; -1 to Agility" + } + } }, "warded": { "name": "Warded", - "description": "You reduce incoming magic damage by your Armor Score before applying it to your damage thresholds." + "description": "You reduce incoming magic damage by your Armor Score before applying it to your damage thresholds.", + "effects": { + "warded": { + "name": "Warded", + "description": "You reduce incoming magic damage by your Armor Score before applying it to your damage thresholds." + } + } } }, "BeastformType": { @@ -622,6 +769,10 @@ "oneHanded": "One-Handed", "twoHanded": "Two-Handed" }, + "RangeInclusion": { + "withinRange": "Within Range", + "outsideRange": "Outside Range" + }, "Condition": { "dead": { "name": "Dead", @@ -716,7 +867,7 @@ "name": "Hope", "abbreviation": "HO" }, - "armorStack": { + "armorSlot": { "name": "Armor Slot", "abbreviation": "AS" }, @@ -838,191 +989,513 @@ "WeaponFeature": { "barrier": { "name": "Barrier", - "description": "Gain your character's Tier + 1 to Armor Score; -1 to Evasion" + "description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion", + "effects": { + "barrier": { + "name": "Barrier", + "description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion" + } + } }, "bonded": { "name": "Bonded", - "description": "Gain a bonus to your damage rolls equal to your level." + "description": "Gain a bonus to your damage rolls equal to your level.", + "effects": { + "damage": { + "name": "Weapon Bond", + "description": "Gain a bonus to your damage rolls equal to your level." + } + } }, "bouncing": { "name": "Bouncing", - "description": "Mark 1 or more Stress to hit that many targets in range of the attack." + "description": "Mark 1 or more Stress to hit that many targets in range of the attack.", + "actions": { + "bounce": { + "name": "Bounce", + "description": "Mark 1 or more Stress to hit that many targets in range of the attack." + } + } }, "brave": { "name": "Brave", - "description": "-1 to Evasion; +3 to Severe damage threshold" + "description": "-1 to Evasion; + Weapon Tier to Severe damage threshold", + "effects": { + "brave": { + "name": "Brave", + "description": "-1 to Evasion; + Weapon Tier to Severe damage threshold" + } + } }, "brutal": { "name": "Brutal", - "description": "When you roll the maximum value on a damage die, roll an additional damage die." + "description": "When you roll the maximum value on a damage die, roll an additional damage die.", + "actions": { + "addDamage": { + "name": "Brutal", + "description": "When you roll the maximum value on a damage die, roll an additional damage die." + } + } + }, + "burning": { + "name": "Burning", + "description": "When you roll the maximum value on a damage die, roll an additional damage die.", + "actions": { + "burn": { + "name": "Burn", + "description": "When you roll a 6 on a damage die, the target must mark a Stress." + } + } }, "charged": { "name": "Charged", - "description": "Mark a Stress to gain a +1 bonus to your Proficiency on a primary weapon attack." + "description": "Mark a Stress to gain a +1 bonus to your Proficiency on a primary weapon attack.", + "actions": { + "markStress": { + "name": "Charge", + "description": "Mark a Stress to gain a +1 bonus to your Proficiency on a primary weapon attack." + } + }, + "effects": { + "charged": { + "name": "Charged", + "description": "Gain a +1 bonus to your Proficiency on a primary weapon attack." + } + } }, "concussive": { "name": "Concussive", - "description": "On a successful attack, you can spend a Hope to knock the target back to Far range." + "description": "On a successful attack, you can spend a Hope to knock the target back to Far range.", + "actions": { + "attack": { + "name": "Concuss", + "description": "On a successful attack, you can spend a Hope to knock the target back to Far range." + } + } }, "cumbersome": { "name": "Cumbersome", - "description": "-1 to Finesse" + "description": "-1 to Finesse", + "effects": { + "cumbersome": { + "name": "Cumbersome", + "description": "-1 to Finesse" + } + } }, "deadly": { "name": "Deadly", - "description": "When you deal Severe damage, the target must mark an additional HP." + "description": "When you deal Severe damage, the target must mark an additional HP.", + "actions": { + "extraDamage": { + "name": "Deadly", + "description": "When you deal Severe damage, the target must mark an additional HP." + } + } }, "deflecting": { "name": "Deflecting", - "description": "When you are attacked, you can mark an Armor Slot to gain a bonus to your Evasion equal to your Armor Score against the attack." + "description": "When you are attacked, you can mark an Armor Slot to gain a bonus to your Evasion equal to your Armor Score against the attack.", + "actions": { + "deflect": { + "name": "Deflect", + "description": "When you are attacked, you can mark an Armor Slot to gain a bonus to your Evasion equal to your Armor Score against the attack." + } + }, + "effects": { + "deflecting": { + "name": "Deflecting", + "description": "Gain a bonus to your Evasion equal to your Armor Score against the attack" + } + } }, "destructive": { "name": "Destructive", - "description": "-1 to Agility; on a successful attack, all adversaries within Very Close range must mark a Stress." + "description": "-1 to Agility; on a successful attack, all adversaries within Very Close range must mark a Stress.", + "actions": { + "attack": { + "name": "Destruction", + "description": "On a successful attack, all adversaries within Very Close range must mark a Stress." + } + }, + "effects": { + "agility": { + "name": "Destructive", + "description": "-1 to Agility" + } + } }, "devastating": { "name": "Devastating", - "description": "Before you make an attack roll, you can mark a Stress to use a d20 as your damage die." + "description": "Before you make an attack roll, you can mark a Stress to use a d20 as your damage die.", + "actions": { + "devastate": { + "name": "Devastate", + "description": "Before you make an attack roll, you can mark a Stress to use a d20 as your damage die." + } + } }, "doubleDuty": { "name": "Double Duty", - "description": "+1 to Armor Score; +1 to primary weapon damage within Melee range" + "description": "+1 to Armor Score; +1 to primary weapon damage within Melee range", + "effects": { + "doubleDuty": { + "name": "Double Duty", + "description": "+1 to Armor Score; +1 to primary weapon damage within Melee range" + } + } }, "doubledUp": { "name": "Doubled Up", - "description": "When you make an attack with your primary weapon, you can deal damage to another target within Melee range." + "description": "When you make an attack with your primary weapon, you can deal damage to another target within Melee range.", + "actions": { + "doubleUp": { + "name": "Double Up", + "description": "When you make an attack with your primary weapon, you can deal damage to another target within Melee range." + } + } }, "dueling": { "name": "Dueling", - "description": "When there are no other creatures within Close range of the target, gain advantage on your attack roll against them." + "description": "When there are no other creatures within Close range of the target, gain advantage on your attack roll against them.", + "actions": { + "duel": { + "name": "Duel", + "description": "When there are no other creatures within Close range of the target, gain advantage on your attack roll against them." + } + } }, "eruptive": { "name": "Eruptive", - "description": "On a successful attack against a target within Melee range, all other adversaries within Very Close range must succeed on a reaction roll (14) or take half damage." + "description": "On a successful attack against a target within Melee range, all other adversaries within Very Close range must succeed on a reaction roll (14) or take half damage.", + "actions": { + "erupt": { + "name": "Erupt", + "description": "On a successful attack against a target within Melee range, all other adversaries within Very Close range must succeed on a reaction roll (14) or take half damage." + } + } }, "grappling": { "name": "Grappling", - "description": "On a successful attack, you can spend a Hope to Restrain the target or pull them into Melee range with you." + "description": "On a successful attack, you can spend a Hope to Restrain the target or pull them into Melee range with you.", + "actions": { + "grapple": { + "name": "Grapple", + "description": "On a successful attack, you can spend a Hope to Restrain the target or pull them into Melee range with you." + } + } }, "greedy": { "name": "Greedy", - "description": "Spend a handful of gold to gain a +1 bonus to your Proficiency on a damage roll." + "description": "Spend a handful of gold to gain a +1 bonus to your Proficiency on a damage roll.", + "actions": { + "greed": { + "name": "Greed", + "description": "Spend a handful of gold to gain a +1 bonus to your Proficiency on a damage roll." + } + } }, "healing": { "name": "Healing", - "description": "During downtime, automatically clear a Hit Point." + "description": "During downtime, automatically clear a Hit Point.", + "actions": { + "heal": { + "name": "Heal", + "description": "During downtime, automatically clear a Hit Point." + } + } }, "heavy": { "name": "Heavy", - "description": "-1 to Evasion" + "description": "-1 to Evasion", + "effects": { + "heavy": { + "name": "Heavy", + "description": "-1 to Evasion" + } + } }, "hooked": { "name": "Hooked", - "description": "On a successful attack, you can pull the target into Melee range." + "description": "On a successful attack, you can pull the target into Melee range.", + "actions": { + "hook": { + "name": "Hook", + "description": "On a successful attack, you can pull the target into Melee range." + } + } }, "hot": { "name": "Hot", - "description": "This weapon cuts through solid material." + "description": "This weapon cuts through solid material.", + "actions": { + "hot": { + "name": "Hot", + "description": "This weapon cuts through solid material." + } + } }, "invigorating": { "name": "Invigorating", - "description": "On a successful attack, roll a d4. On a result of 4, clear a Stress." + "description": "On a successful attack, roll a d4. On a result of 4, clear a Stress.", + "actions": { + "invigorate": { + "name": "Invigorate", + "description": "On a successful attack, roll a d4. On a result of 4, clear a Stress." + } + } }, "lifestealing": { "name": "Lifestealing", - "description": "On a successful attack, roll a d6. On a result of 6, clear a Hit Point or clear a Stress." + "description": "On a successful attack, roll a d6. On a result of 6, clear a Hit Point or clear a Stress.", + "actions": { + "lifesteal": { + "name": "Lifesteal", + "description": "On a successful attack, roll a d6. On a result of 6, clear a Hit Point or clear a Stress." + } + } }, "lockedOn": { "name": "Locked On", - "description": "On a successful attack, your next attack against the same target with your primary weapon automatically succeeds." - }, - "lucky": { - "name": "Lucky", - "description": "On a failed attack, you can mark a Stress to reroll your attack." + "description": "On a successful attack, your next attack against the same target with your primary weapon automatically succeeds.", + "actions": { + "lockOn": { + "name": "Lock On", + "description": "On a successful attack, your next attack against the same target with your primary weapon automatically succeeds." + } + } }, "long": { "name": "Long", - "description": "This weapon's attack targets all adversaries in a line within range." + "description": "This weapon's attack targets all adversaries in a line within range.", + "actions": { + "long": { + "name": "Long", + "description": "This weapon's attack targets all adversaries in a line within range." + } + } + }, + "lucky": { + "name": "Lucky", + "description": "On a failed attack, you can mark a Stress to reroll your attack.", + "actions": { + "luck": { + "name": "Luck", + "description": "On a failed attack, you can mark a Stress to reroll your attack." + } + } }, "massive": { "name": "Massive", - "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result." + "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result.", + "effects": { + "massive": { + "name": "Massive", + "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result." + } + } }, "painful": { "name": "Painful", - "description": "Each time you make a successful attack, you must mark a Stress." + "description": "Each time you make a successful attack, you must mark a Stress.", + "actions": { + "pain": { + "name": "Pain", + "description": "Each time you make a successful attack, you must mark a Stress." + } + } }, "paired": { "name": "Paired", - "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range" + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "actions": { + "paired": { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range" + } + }, + "effects": { + "paired": { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range" + } + } }, "parry": { "name": "Parry", - "description": "When you are attacked, roll this weapon's damage dice. If any of the attacker's damage dice rolled the same value as your dice, the matching results are discarded from the attacker's damage dice before the damage you take is totaled." + "description": "When you are attacked, roll this weapon's damage dice. If any of the attacker's damage dice rolled the same value as your dice, the matching results are discarded from the attacker's damage dice before the damage you take is totaled.", + "actions": { + "parry": { + "name": "Parry", + "description": "When you are attacked, roll this weapon's damage dice. If any of the attacker's damage dice rolled the same value as your dice, the matching results are discarded from the attacker's damage dice before the damage you take is totaled." + } + } }, "persuasive": { "name": "Persuasive", - "description": "Before you make a Presence Roll, you can mark a Stress to gain a +2 bonus to the result." + "description": "Before you make a Presence Roll, you can mark a Stress to gain a +2 bonus to the result.", + "actions": { + "persuade": { + "name": "Persuade", + "description": "Before you make a Presence Roll, you can mark a Stress to gain a +2 bonus to the result." + } + }, + "effects": { + "persuasive": { + "name": "Persuasive", + "description": "Gain a +2 bonus to the Presence roll" + } + } }, "pompous": { "name": "Pompous", - "description": "You must have a Presence of 0 or lower to use this weapon." + "description": "You must have a Presence of 0 or lower to use this weapon.", + "actions": { + "pompous": { + "name": "Pompous", + "description": "You must have a Presence of 0 or lower to use this weapon." + } + } }, "powerful": { "name": "Powerful", - "description": "On a successful attack, roll an additional damage die and discard the lowest result." + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "effects": { + "powerful": { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result." + } + } }, "protective": { "name": "Protective", - "description": "Add your character's Tier to your Armor Score" + "description": "Add your character's Tier to your Armor Score", + "effects": { + "protective": { + "name": "Protective", + "description": "Add your character's Tier to your Armor Score" + } + } }, "quick": { "name": "Quick", - "description": "When you make an attack, you can mark a Stress to target another creature within range." + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "actions": { + "quick": { + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range." + } + } }, "reliable": { "name": "Reliable", - "description": "+1 to attack rolls" + "description": "+1 to attack rolls", + "effects": { + "reliable": { + "name": "Reliable", + "description": "+1 to attack rolls" + } + } }, "reloading": { "name": "Reloading", - "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again." + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again.", + "actions": { + "reload": { + "name": "Reload", + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again." + } + } }, "retractable": { "name": "Retractable", - "description": "The blade can be hidden in the hilt to avoid detection." + "description": "The blade can be hidden in the hilt to avoid detection.", + "actions": { + "retract": { + "name": "Retract", + "description": "The blade can be hidden in the hilt to avoid detection." + } + } }, "returning": { "name": "Returning", - "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack." + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack.", + "actions": { + "return": { + "name": "Return", + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack." + } + } }, "scary": { "name": "Scary", - "description": "On a successful attack, the target must mark a Stress." + "description": "On a successful attack, the target must mark a Stress.", + "actions": { + "scare": { + "name": "Scare", + "description": "On a successful attack, the target must mark a Stress." + } + } }, "selfCorrecting": { "name": "Self Correcting", - "description": "When you roll a 1 on a damage die, it deals 6 damage instead." + "description": "When you roll a 1 on a damage die, it deals 6 damage instead.", + "effects": { + "selfCorrecting": { + "name": "Self Correcting", + "description": "When you roll a 1 on a damage die, it deals 6 damage instead." + } + } }, "serrated": { "name": "Serrated", - "description": "When you roll a 1 on a damage die, it deals 8 damage instead." + "description": "When you roll a 1 on a damage die, it deals 8 damage instead.", + "effects": { + "serrated": { + "name": "Serrated", + "description": "When you roll a 1 on a damage die, it deals 8 damage instead." + } + } }, "sharpwing": { "name": "Sharpwing", - "description": "Gain a bonus to your damage rolls equal to your Agility." + "description": "Gain a bonus to your damage rolls equal to your Agility.", + "effects": { + "sharpwing": { + "name": "Sharpwing", + "description": "Gain a bonus to your damage rolls equal to your Agility." + } + } }, "sheltering": { "name": "Sheltering", - "description": "When you mark an Armor Slot, it reduces damage for you and all allies within Melee range of you who took the same damage." + "description": "When you mark an Armor Slot, it reduces damage for you and all allies within Melee range of you who took the same damage.", + "actions": { + "shelter": { + "name": "Shelter", + "description": "When you mark an Armor Slot, it reduces damage for you and all allies within Melee range of you who took the same damage." + } + } }, "startling": { "name": "Startling", - "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range." + "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range.", + "actions": { + "startle": { + "name": "Startle", + "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range." + } + } }, "timebending": { "name": "Timebending", - "description": "You can choose the target of your attack after making your attack roll." + "description": "You can choose the target of your attack after making your attack roll.", + "actions": { + "bendTime": { + "name": "Bend Time", + "description": "You can choose the target of your attack after making your attack roll." + } + } } } }, @@ -1348,7 +1821,6 @@ "basics": "Basics", "bonus": "Bonus", "burden": "Burden", - "check": "{check} Check", "continue": "Continue", "criticalSuccess": "Critical Success", "damage": "Damage", @@ -1381,6 +1853,7 @@ "imagePath": "Image Path", "inactiveEffects": "Inactive Effects", "inventory": "Inventory", + "itemResource": "Item Resource", "level": "Level", "levelUp": "Level Up", "loadout": "Loadout", @@ -1392,6 +1865,7 @@ "proficiency": "Proficiency", "quantity": "Quantity", "range": "Range", + "reactionRoll": "Reaction Roll", "recovery": "Recovery", "reroll": "Reroll", "rerollThing": "Reroll {thing}", @@ -1399,6 +1873,7 @@ "roll": "Roll", "rollAll": "Roll All", "rollDamage": "Roll Damage", + "rollWith": "{roll} Roll", "save": "Save", "scalable": "Scalable", "situationalBonus": "Situational Bonus", @@ -1546,6 +2021,12 @@ "hordeDamage": { "label": "Automatic Horde Damage", "hint": "Automatically active horde effect to lower damage when reaching half or lower HP." + }, + "effects": { + "rangeDependent": { + "label": "Effect Range Dependent", + "hint": "Effects with defined range dependency will automatically turn on/off depending on range" + } } } }, @@ -1745,7 +2226,8 @@ "beastformToManyAdvantages": "You cannot select any more advantages.", "beastformToManyFeatures": "You cannot select any more features.", "beastformEquipWeapon": "You cannot use weapons while in a Beastform.", - "loadoutMaxReached": "You already have {max} cards in your loadout. Move atleast one to your vault before adding a new one." + "loadoutMaxReached": "You already have {max} cards in your loadout. Move atleast one to your vault before adding a new one.", + "insufficientResources": "You have insufficient resources" }, "Tooltip": { "disableEffect": "Disable Effect", diff --git a/module/applications/dialogs/d20RollDialog.mjs b/module/applications/dialogs/d20RollDialog.mjs index 76871b6a..9027bbea 100644 --- a/module/applications/dialogs/d20RollDialog.mjs +++ b/module/applications/dialogs/d20RollDialog.mjs @@ -7,6 +7,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio this.roll = roll; this.config = config; this.config.experiences = []; + this.reactionOverride = config.roll?.type === 'reaction'; if (config.source?.action) { this.item = config.data.parent.items.get(config.source.item) ?? config.data.parent; @@ -30,6 +31,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio actions: { updateIsAdvantage: this.updateIsAdvantage, selectExperience: this.selectExperience, + toggleReaction: this.toggleReaction, submitRoll: this.submitRoll }, form: { @@ -103,6 +105,9 @@ 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); + + context.showReaction = !context.rollConfig.type && context.rollType === 'DualityRoll'; + context.reactionOverride = this.reactionOverride; } return context; } @@ -141,6 +146,18 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio this.render(); } + static toggleReaction() { + if (this.config.roll) { + this.reactionOverride = !this.reactionOverride; + this.config.roll.type = this.reactionOverride + ? CONFIG.DH.ITEM.actionTypes.reaction.id + : this.config.roll.type === CONFIG.DH.ITEM.actionTypes.reaction.id + ? null + : this.config.roll.type; + this.render(); + } + } + static async submitRoll() { await this.close({ submitted: true }); } diff --git a/module/applications/dialogs/damageReductionDialog.mjs b/module/applications/dialogs/damageReductionDialog.mjs index 9049522d..e0841324 100644 --- a/module/applications/dialogs/damageReductionDialog.mjs +++ b/module/applications/dialogs/damageReductionDialog.mjs @@ -225,7 +225,7 @@ export default class DamageReductionDialog extends HandlebarsApplicationMixin(Ap await super.close({}); } - static async armorStackQuery({ actorId, damage, type }) { + static async armorSlotQuery({ actorId, damage, type }) { return new Promise(async (resolve, reject) => { const actor = await fromUuid(actorId); if (!actor || !actor?.isOwner) reject(); diff --git a/module/applications/sheets-configs/action-config.mjs b/module/applications/sheets-configs/action-config.mjs index 7d50c0c6..6af1b42e 100644 --- a/module/applications/sheets-configs/action-config.mjs +++ b/module/applications/sheets-configs/action-config.mjs @@ -108,9 +108,11 @@ export default class DHActionConfig extends DaggerheartSheet(ApplicationV2) { context.hasBaseDamage = !!this.action.parent.attack; context.getEffectDetails = this.getEffectDetails.bind(this); context.costOptions = this.getCostOptions(); + context.getRollTypeOptions = this.getRollTypeOptions(); context.disableOption = this.disableOption.bind(this); context.isNPC = this.action.actor?.isNPC; context.baseSaveDifficulty = this.action.actor?.baseSaveDifficulty; + context.baseAttackBonus = this.action.actor?.system.attack?.roll.bonus; context.hasRoll = this.action.hasRoll; const settingsTiers = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.LevelTiers).tiers; @@ -131,14 +133,23 @@ export default class DHActionConfig extends DaggerheartSheet(ApplicationV2) { const resource = this.action.parent.resource; if (resource) { options[this.action.parent.parent.id] = { - label: this.action.parent.parent.name, - group: 'TYPES.Actor.character' + label: 'DAGGERHEART.GENERAL.itemResource', + group: 'Global' }; } return options; } + getRollTypeOptions() { + const types = foundry.utils.deepClone(CONFIG.DH.GENERAL.rollTypes); + if (!this.action.actor) return types; + Object.values(types).forEach(t => { + if (this.action.actor.type !== 'character' && t.playerOnly) delete types[t.id]; + }); + return types; + } + disableOption(index, costOptions, choices) { const filtered = foundry.utils.deepClone(costOptions); Object.keys(filtered).forEach(o => { diff --git a/module/applications/sheets-configs/activeEffectConfig.mjs b/module/applications/sheets-configs/activeEffectConfig.mjs index 88edf9d6..25f7d2b5 100644 --- a/module/applications/sheets-configs/activeEffectConfig.mjs +++ b/module/applications/sheets-configs/activeEffectConfig.mjs @@ -27,7 +27,7 @@ export default class DhActiveEffectConfig extends foundry.applications.sheets.Ac header: { template: 'systems/daggerheart/templates/sheets/activeEffect/header.hbs' }, tabs: { template: 'templates/generic/tab-navigation.hbs' }, details: { template: 'systems/daggerheart/templates/sheets/activeEffect/details.hbs', scrollable: [''] }, - duration: { template: 'systems/daggerheart/templates/sheets/activeEffect/duration.hbs' }, + settings: { template: 'systems/daggerheart/templates/sheets/activeEffect/settings.hbs' }, changes: { template: 'systems/daggerheart/templates/sheets/activeEffect/changes.hbs', scrollable: ['ol[data-changes]'] @@ -39,7 +39,7 @@ export default class DhActiveEffectConfig extends foundry.applications.sheets.Ac sheet: { tabs: [ { id: 'details', icon: 'fa-solid fa-book' }, - { id: 'duration', icon: 'fa-solid fa-clock' }, + { id: 'settings', icon: 'fa-solid fa-bars', label: 'DAGGERHEART.GENERAL.Tabs.settings' }, { id: 'changes', icon: 'fa-solid fa-gears' } ], initial: 'details', diff --git a/module/applications/sheets/actors/character.mjs b/module/applications/sheets/actors/character.mjs index d9098f9b..6bbef5b0 100644 --- a/module/applications/sheets/actors/character.mjs +++ b/module/applications/sheets/actors/character.mjs @@ -260,7 +260,7 @@ export default class CharacterSheet extends DHBaseActorSheet { icon: 'fa-solid fa-arrow-up', condition: target => { const doc = getDocFromElementSync(target); - return doc && system.inVault; + return doc && doc.system.inVault; }, callback: async target => { const doc = await getDocFromElement(target); diff --git a/module/applications/ui/chatLog.mjs b/module/applications/ui/chatLog.mjs index 5e507a3b..8454baf7 100644 --- a/module/applications/ui/chatLog.mjs +++ b/module/applications/ui/chatLog.mjs @@ -1,4 +1,4 @@ -import { emitAsGM, GMUpdateEvent } from "../../systemRegistration/socket.mjs"; +import { emitAsGM, GMUpdateEvent } from '../../systemRegistration/socket.mjs'; export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLog { constructor(options) { @@ -100,22 +100,24 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo if (message.system.source.item && message.system.source.action) { const action = this.getAction(actor, message.system.source.item, message.system.source.action); if (!action || !action?.hasSave) return; - action.rollSave(token.actor, event, message).then(result => emitAsGM( - GMUpdateEvent.UpdateSaveMessage, - action.updateSaveMessage.bind(action, result, message, token.id), - { - action: action.uuid, - message: message._id, - token: token.id, - result - } - )); + action.rollSave(token.actor, event, message).then(result => + emitAsGM( + GMUpdateEvent.UpdateSaveMessage, + action.updateSaveMessage.bind(action, result, message, token.id), + { + action: action.uuid, + message: message._id, + token: token.id, + result + } + ) + ); } } async onRollAllSave(event, message) { event.stopPropagation(); - if(!game.user.isGM) return; + if (!game.user.isGM) return; const targets = event.target.parentElement.querySelectorAll( '.target-section > [data-token] .target-save-container' ); @@ -124,16 +126,17 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo targets.forEach(async el => { const tokenId = el.closest('[data-token]')?.dataset.token, token = game.canvas.tokens.get(tokenId); - if(!token.actor) return; - if(game.user === token.actor.owner) - el.dispatchEvent(new PointerEvent('click', { shiftKey: true })); + if (!token.actor) return; + if (game.user === token.actor.owner) el.dispatchEvent(new PointerEvent('click', { shiftKey: true })); else { - token.actor.owner.query('reactionRoll', { - actionId: action.uuid, - actorId: token.actor.uuid, - event, - message - }).then(result => action.updateSaveMessage(result, message, token.id)); + token.actor.owner + .query('reactionRoll', { + actionId: action.uuid, + actorId: token.actor.uuid, + event, + message + }) + .then(result => action.updateSaveMessage(result, message, token.id)); } }); } @@ -172,7 +175,9 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo return { isHit, targets: isHit - ? message.system.targets.filter(t => t.hit === true).map(target => game.canvas.tokens.documentCollection.find(t => t.actor.uuid === target.actorId)) + ? message.system.targets + .filter(t => t.hit === true) + .map(target => game.canvas.tokens.documentCollection.find(t => t.actor.uuid === target.actorId)) : Array.from(game.user.targets) }; } @@ -234,10 +239,8 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo }); } - if(message.system.hasHealing) - target.actor.takeHealing(damages); - else - target.actor.takeDamage(damages); + if (message.system.hasHealing) target.actor.takeHealing(damages); + else target.actor.takeDamage(damages); } } diff --git a/module/canvas/placeables/token.mjs b/module/canvas/placeables/token.mjs index dd6f089e..4c2ae4ed 100644 --- a/module/canvas/placeables/token.mjs +++ b/module/canvas/placeables/token.mjs @@ -18,7 +18,7 @@ export default class DhTokenPlaceable extends foundry.canvas.placeables.Token { x => x.statuses.size === 1 && x.name === game.i18n.localize(statusMap.get(x.statuses.first()).name) ); for (var status of effect.statuses) { - if (!currentStatusActiveEffects.find(x => x.statuses.includes(status))) { + if (!currentStatusActiveEffects.find(x => x.statuses.has(status))) { const statusData = statusMap.get(status); acc.push({ name: game.i18n.localize(statusData.name), diff --git a/module/config/actionConfig.mjs b/module/config/actionConfig.mjs index 1f1ebf8b..3c669a7b 100644 --- a/module/config/actionConfig.mjs +++ b/module/config/actionConfig.mjs @@ -43,25 +43,6 @@ export const actionTypes = { } }; -export const targetTypes = { - self: { - id: 'self', - label: 'Self' - }, - friendly: { - id: 'friendly', - label: 'Friendly' - }, - hostile: { - id: 'hostile', - label: 'Hostile' - }, - any: { - id: 'any', - label: 'Any' - } -}; - export const damageOnSave = { none: { id: 'none', diff --git a/module/config/generalConfig.mjs b/module/config/generalConfig.mjs index 7e44cad7..361adcea 100644 --- a/module/config/generalConfig.mjs +++ b/module/config/generalConfig.mjs @@ -43,6 +43,40 @@ export const range = { } }; +export const rangeInclusion = { + withinRange: { + id: 'withinRange', + label: 'DAGGERHEART.CONFIG.RangeInclusion.withinRange' + }, + outsideRange: { + id: 'outsideRange', + label: 'DAGGERHEART.CONFIG.RangeInclusion.outsideRange' + } +}; + +export const otherTargetTypes = { + friendly: { + id: 'friendly', + label: 'Friendly' + }, + hostile: { + id: 'hostile', + label: 'Hostile' + }, + any: { + id: 'any', + label: 'Any' + } +}; + +export const targetTypes = { + self: { + id: 'self', + label: 'Self' + }, + ...otherTargetTypes +}; + export const burden = { oneHanded: { value: 'oneHanded', @@ -85,10 +119,10 @@ export const healingTypes = { label: 'DAGGERHEART.CONFIG.HealingType.hope.name', abbreviation: 'DAGGERHEART.CONFIG.HealingType.hope.abbreviation' }, - armorStack: { - id: 'armorStack', - label: 'DAGGERHEART.CONFIG.HealingType.armorStack.name', - abbreviation: 'DAGGERHEART.CONFIG.HealingType.armorStack.abbreviation' + armorSlot: { + id: 'armorSlot', + label: 'DAGGERHEART.CONFIG.HealingType.armorSlot.name', + abbreviation: 'DAGGERHEART.CONFIG.HealingType.armorSlot.abbreviation' }, fear: { id: 'fear', @@ -199,7 +233,7 @@ export const defaultRestOptions = { actionType: 'action', chatDisplay: false, healing: { - applyTo: healingTypes.armorStack.id, + applyTo: healingTypes.armorSlot.id, value: { custom: { enabled: true, @@ -287,7 +321,7 @@ export const defaultRestOptions = { actionType: 'action', chatDisplay: false, healing: { - applyTo: healingTypes.armorStack.id, + applyTo: healingTypes.armorSlot.id, value: { custom: { enabled: true, @@ -425,8 +459,8 @@ export const refreshTypes = { }; export const abilityCosts = { - hp: { - id: 'hp', + hitPoints: { + id: 'hitPoints', label: 'DAGGERHEART.CONFIG.HealingType.hitPoints.name', group: 'Global' }, @@ -473,11 +507,13 @@ export const rollTypes = { }, spellcast: { id: 'spellcast', - label: 'DAGGERHEART.CONFIG.RollTypes.spellcast.name' + label: 'DAGGERHEART.CONFIG.RollTypes.spellcast.name', + playerOnly: true }, trait: { id: 'trait', - label: 'DAGGERHEART.CONFIG.RollTypes.trait.name' + label: 'DAGGERHEART.CONFIG.RollTypes.trait.name', + playerOnly: true }, diceSet: { id: 'diceSet', diff --git a/module/config/itemConfig.mjs b/module/config/itemConfig.mjs index 851ddc32..8fe33818 100644 --- a/module/config/itemConfig.mjs +++ b/module/config/itemConfig.mjs @@ -4,12 +4,29 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.description', actions: [ { - type: 'effect', + type: 'damage', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.burning.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.description', - img: 'icons/magic/fire/flame-burning-embers-yellow.webp' + name: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.burning.actions.burn.description', + img: 'icons/magic/fire/flame-burning-embers-yellow.webp', + range: 'melee', + target: { + type: 'hostile' + }, + damage: { + parts: [ + { + applyTo: 'stress', + value: { + custom: { + enabled: true, + formula: '1' + } + } + } + ] + } } ] }, @@ -18,8 +35,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.effects.channeling.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.channeling.effects.channeling.description', img: 'icons/magic/symbols/rune-sigil-horned-blue.webp', changes: [ { @@ -36,8 +53,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.effects.difficult.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.difficult.effects.difficult.description', img: 'icons/magic/control/buff-flight-wings-red.webp', changes: [ { @@ -84,8 +101,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.effects.flexible.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.flexible.effects.flexible.description', img: 'icons/magic/movement/abstract-ribbons-red-orange.webp', changes: [ { @@ -102,8 +119,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.effects.fortified.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.fortified.effects.fortified.description', img: 'icons/magic/defensive/shield-barrier-glowing-blue.webp', changes: [ { @@ -120,8 +137,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.effects.gilded.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.gilded.effects.gilded.description', img: 'icons/magic/control/control-influence-crown-gold.webp', changes: [ { @@ -138,8 +155,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.effects.heavy.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.heavy.effects.heavy.description', img: 'icons/commodities/metal/ingot-worn-iron.webp', changes: [ { @@ -159,8 +176,8 @@ export const armorFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.hopeful.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.hopeful.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.hopeful.actions.hope.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.hopeful.actions.hope.description', img: 'icons/magic/holy/barrier-shield-winged-blue.webp' } ] @@ -173,8 +190,8 @@ export const armorFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.impenetrable.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.impenetrable.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.impenetrable.actions.impenetrable.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.impenetrable.actions.impenetrable.description', img: 'icons/magic/defensive/shield-barrier-flaming-pentagon-purple-orange.webp', uses: { max: 1, @@ -183,7 +200,7 @@ export const armorFeatures = { }, cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -195,8 +212,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.magical.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.magical.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.magical.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.magical.effects.magical.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.magical.effects.magical.description', img: 'icons/magic/defensive/barrier-shield-dome-blue-purple.webp', changes: [ { @@ -208,13 +225,33 @@ export const armorFeatures = { } ] }, + painful: { + label: 'DAGGERHEART.CONFIG.ArmorFeature.painful.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.painful.description', + actions: [ + { + type: 'effect', + actionType: 'action', + chatDisplay: true, + name: 'DAGGERHEART.CONFIG.ArmorFeature.painful.actions.pain.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.painful.actions.pain.description', + img: 'icons/skills/wounds/injury-face-impact-orange.webp', + cost: [ + { + key: 'stress', + value: 1 + } + ] + } + ] + }, physical: { label: 'DAGGERHEART.CONFIG.ArmorFeature.physical.name', description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.physical.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.physical.effects.physical.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.physical.effects.physical.description', img: 'icons/commodities/stone/ore-pile-tan.webp', changes: [ { @@ -234,8 +271,8 @@ export const armorFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.quiet.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.quiet.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.quiet.actions.quiet.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.quiet.actions.quiet.description', img: 'icons/magic/perception/silhouette-stealth-shadow.webp' } ] @@ -243,31 +280,21 @@ export const armorFeatures = { reinforced: { label: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.name', description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.description', - actions: [ + effects: [ { - type: 'effect', - actionType: 'action', - chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.effects.reinforced.description', img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp', - effects: [ + changes: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.reinforced.description', - img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp', - changes: [ - { - key: 'system.bunuses.damageThresholds.major', - mode: 2, - value: '2' - }, - { - key: 'system.bunuses.damageThresholds.severe', - mode: 2, - value: '2' - } - ] + key: 'system.bunuses.damageThresholds.major', + mode: 2, + value: '2' + }, + { + key: 'system.bunuses.damageThresholds.severe', + mode: 2, + value: '2' } ] } @@ -278,39 +305,45 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.description', actions: [ { - type: 'effect', + type: 'attack', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.description', - img: 'icons/magic/life/heart-cross-purple-orange.webp' + name: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.resilient.actions.resilient.description', + img: 'icons/magic/life/heart-cross-purple-orange.webp', + roll: { + type: 'diceSet', + diceRolling: { + compare: 'equal', + dice: 'd6', + multiplier: 'flat', + flatMultiplier: 1, + treshold: 6 + } + } } ] }, sharp: { label: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.name', description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.description', - actions: [ + effects: [ { - type: 'damage', - actionType: 'action', - chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.description', - img: 'icons/skills/melee/blade-tips-triple-bent-white.webp', - damage: { - parts: [ - { - type: 'physical', - value: { - custom: { - enabled: true, - formula: '1d4' - } - } - } - ] - } + name: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.sharp.effects.sharp.description', + img: 'icons/magic/defensive/shield-barrier-glowing-triangle-green.webp', + changes: [ + { + key: 'system.bonuses.damage.primaryWeapon.dice', + mode: 2, + value: '1d4' + }, + { + key: 'system.bonuses.damage.secondaryWeapon.dice', + mode: 2, + value: '1d4' + } + ] } ] }, @@ -322,12 +355,12 @@ export const armorFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.shifting.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.shifting.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.shifting.actions.shift.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.shifting.actions.shift.description', img: 'icons/magic/defensive/illusion-evasion-echo-purple.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -339,12 +372,26 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.description', actions: [ { - type: 'effect', + type: 'attack', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.description', - img: 'icons/magic/time/hourglass-brown-orange.webp' + name: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.timeslowing.actions.slowTime.description', + img: 'icons/magic/time/hourglass-brown-orange.webp', + cost: [ + { + key: 'armorStack', + value: 1 + } + ], + roll: { + type: 'diceSet', + diceRolling: { + dice: 'd4', + multiplier: 'flat', + flatMultiplier: 1 + } + } } ] }, @@ -356,8 +403,8 @@ export const armorFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.ArmorFeature.truthseeking.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.truthseeking.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.truthseeking.actions.truthseeking.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.truthseeking.actions.truthseeking.description', img: 'icons/magic/perception/orb-crystal-ball-scrying-blue.webp' } ] @@ -367,8 +414,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.effects.veryHeavy.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.veryHeavy.effects.veryHeavy.description', img: 'icons/commodities/metal/ingot-stamped-steel.webp', changes: [ { @@ -390,8 +437,8 @@ export const armorFeatures = { description: 'DAGGERHEART.CONFIG.ArmorFeature.warded.description', effects: [ { - name: 'DAGGERHEART.CONFIG.ArmorFeature.warded.name', - description: 'DAGGERHEART.CONFIG.ArmorFeature.warded.description', + name: 'DAGGERHEART.CONFIG.ArmorFeature.warded.effects.warded.name', + description: 'DAGGERHEART.CONFIG.ArmorFeature.warded.effects.warded.description', img: 'icons/magic/defensive/barrier-shield-dome-pink.webp', changes: [ { @@ -411,16 +458,15 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.description', effects: [ { + name: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.effects.barrier.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.barrier.effects.barrier.description', + img: 'icons/skills/melee/shield-block-bash-blue.webp', changes: [ { key: 'system.armorScore', mode: 2, value: 'ITEM.@system.tier + 1' - } - ] - }, - { - changes: [ + }, { key: 'system.evasion', mode: 2, @@ -435,6 +481,9 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.bonded.description', effects: [ { + name: 'DAGGERHEART.CONFIG.WeaponFeature.bonded.effects.damage.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.bonded.effects.damage.description', + img: 'icons/magic/symbols/chevron-elipse-circle-blue.webp', changes: [ { key: 'system.bonuses.damage.primaryWeapon.bonus', @@ -453,12 +502,12 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.bouncing.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.bouncing.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.bouncing.actions.bounce.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.bouncing.actions.bounce.description', img: 'icons/skills/movement/ball-spinning-blue.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1, scalable: true, step: 1 @@ -472,16 +521,15 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.brave.description', effects: [ { + name: 'DAGGERHEART.CONFIG.WeaponFeature.brave.effects.brave.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.brave.effects.brave.description', + img: 'icons/magic/life/heart-cross-strong-flame-purple-orange.webp', changes: [ { key: 'system.evasion', mode: 2, value: '-1' - } - ] - }, - { - changes: [ + }, { key: 'system.damageThresholds.severe', mode: 2, @@ -499,12 +547,26 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.brutal.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.brutal.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.description', img: 'icons/skills/melee/strike-dagger-blood-red.webp' } ] }, + burning: { + label: 'DAGGERHEART.CONFIG.WeaponFeature.burning.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.burning.description', + actions: [ + { + type: 'effect', + actionType: 'action', + chatDisplay: true, + name: 'DAGGERHEART.CONFIG.WeaponFeature.burning.actions.burn.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.burning.actions.burn.description', + img: 'icons/magic/fire/blast-jet-stream-embers-orange.webp' + } + ] + }, charged: { label: 'DAGGERHEART.CONFIG.WeaponFeature.charged.name', description: 'DAGGERHEART.CONFIG.WeaponFeature.charged.description', @@ -513,12 +575,15 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.charged.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.charged.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.charged.actions.markStress.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.charged.actions.markStress.description', img: 'icons/magic/lightning/claws-unarmed-strike-teal.webp', + target: { + type: 'self' + }, cost: [ { - type: 'stress', + key: 'stress', value: 1 } ], @@ -547,12 +612,15 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.concussive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.concussive.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.concussive.actions.attack.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.concussive.actions.attack.description', img: 'icons/skills/melee/shield-block-bash-yellow.webp', + target: { + type: 'any' + }, cost: [ { - type: 'hope', + key: 'hope', value: 1 } ] @@ -564,8 +632,8 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.effects.cumbersome.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.cumbersome.effects.cumbersome.description', img: 'icons/commodities/metal/mail-plate-steel.webp', changes: [ { @@ -585,8 +653,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.deadly.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.deadly.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.deadly.actions.extraDamage.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.deadly.actions.extraDamage.description', img: 'icons/skills/melee/strike-sword-dagger-runes-red.webp' } ] @@ -599,19 +667,22 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.actions.deflect.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.actions.deflect.description', img: 'icons/skills/melee/hand-grip-sword-strike-orange.webp', + target: { + type: 'self' + }, cost: [ { - type: 'armorStack', + type: 'armorSlot', value: 1 } ], effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.effects.deflecting.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.deflecting.effects.deflecting.description', img: 'icons/skills/melee/hand-grip-sword-strike-orange.webp', changes: [ { @@ -630,18 +701,35 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.description', actions: [ { - type: 'effect', + type: 'damage', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.description', - img: 'icons/skills/melee/strike-flail-spiked-pink.webp' + name: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.actions.attack.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.actions.attack.descriptive', + img: 'icons/skills/melee/strike-flail-spiked-pink.webp', + range: 'veryClose', + target: { + type: 'hostile' + }, + damage: { + parts: [ + { + applyTo: 'stress', + value: { + custom: { + enabled: true, + formula: '1' + } + } + } + ] + } } ], effects: [ { name: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.description', + description: 'DAGGERHEART.CONFIG.WeaponFeature.destructive.effects.agility', img: 'icons/skills/melee/strike-flail-spiked-pink.webp', changes: [ { @@ -661,25 +749,25 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.devastating.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.devastating.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.devastating.actions.devastate.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.devastating.actions.devastate.description', img: 'icons/skills/melee/strike-flail-destructive-yellow.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] } ] }, - doubleduty: { + doubleDuty: { label: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.name', description: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.doubleDuty.effects.doubleDuty.description', img: 'icons/skills/melee/sword-shield-stylized-white.webp', changes: [ { @@ -696,7 +784,7 @@ export const weaponFeatures = { } ] }, - doubledup: { + doubledUp: { label: 'DAGGERHEART.CONFIG.WeaponFeature.doubledUp.name', description: 'DAGGERHEART.CONFIG.WeaponFeature.doubledUp.description', actions: [ @@ -704,8 +792,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.doubledUp.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.doubledUp.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.doubledUp.actions.doubleUp.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.doubledUp.actions.doubleUp.description', img: 'icons/skills/melee/strike-slashes-orange.webp' } ] @@ -718,8 +806,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.dueling.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.dueling.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.dueling.actions.duel.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.dueling.actions.duel.description', img: 'icons/skills/melee/weapons-crossed-swords-pink.webp' } ] @@ -732,8 +820,8 @@ export const weaponFeatures = { type: 'effect', // Should prompt a dc 14 reaction save on adversaries actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.eruptive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.eruptive.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.eruptive.actions.erupt.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.eruptive.actions.erupt.description', img: 'icons/skills/melee/strike-hammer-destructive-blue.webp' } ] @@ -746,12 +834,12 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.grappling.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.grappling.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.grappling.actions.grapple.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.grappling.actions.grapple.description', img: 'icons/magic/control/debuff-chains-ropes-net-white.webp', cost: [ { - type: 'hope', + key: 'hope', value: 1 } ] @@ -772,8 +860,8 @@ export const weaponFeatures = { // Should cost handfull of gold, effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.greedy.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.greedy.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.greedy.actions.greed.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.greedy.actions.greed.description', img: 'icons/commodities/currency/coins-crown-stack-gold.webp', changes: [ { @@ -795,7 +883,8 @@ export const weaponFeatures = { type: 'healing', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.healing.name', + name: 'DAGGERHEART.CONFIG.WeaponFeature.healing.actions.heal.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.healing.actions.heal.description', img: 'icons/magic/life/cross-beam-green.webp', healing: { type: 'health', @@ -814,8 +903,8 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.effects.heavy.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.heavy.effects.heavy.description', img: 'icons/commodities/metal/ingot-worn-iron.webp', changes: [ { @@ -835,8 +924,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.hooked.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.hooked.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.hooked.actions.hook.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.hooked.actions.hook.description', img: 'icons/skills/melee/strike-chain-whip-blue.webp' } ] @@ -849,8 +938,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.hot.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.hot.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.hot.actions.hot.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.hot.actions.hot.description', img: 'icons/magic/fire/dagger-rune-enchant-flame-red.webp' } ] @@ -863,8 +952,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.invigorating.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.invigorating.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.invigorating.actions.invigorate.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.invigorating.actions.invigorate.description', img: 'icons/magic/life/heart-cross-green.webp' } ] @@ -877,13 +966,13 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.lifestealing.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.lifestealing.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.lifestealing.actions.lifesteal.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.lifestealing.actions.lifesteal.description', img: 'icons/magic/unholy/hand-claw-fire-blue.webp' } ] }, - lockedon: { + lockedOn: { label: 'DAGGERHEART.CONFIG.WeaponFeature.lockedOn.name', description: 'DAGGERHEART.CONFIG.WeaponFeature.lockedOn.description', actions: [ @@ -891,25 +980,25 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.lockedOn.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.lockedOn.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.lockedOn.actions.lockOn.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.lockedOn.actions.lockOn.description', img: 'icons/skills/targeting/crosshair-arrowhead-blue.webp' } ] }, long: { label: 'DAGGERHEART.CONFIG.WeaponFeature.long.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.long.description' - // actions: [ - // { - // type: 'effect', - // actionType: 'action', - // chatDisplay: true, - // name: 'DAGGERHEART.CONFIG.WeaponFeature.long.name', - // description: 'DAGGERHEART.CONFIG.WeaponFeature.long.description', - // img: 'icons/skills/melee/strike-weapon-polearm-ice-blue.webp', - // } - // ] + description: 'DAGGERHEART.CONFIG.WeaponFeature.long.description', + actions: [ + { + type: 'effect', + actionType: 'action', + chatDisplay: true, + name: 'DAGGERHEART.CONFIG.WeaponFeature.long.actions.long.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.long.actions.long.description', + img: 'icons/skills/melee/strike-weapon-polearm-ice-blue.webp' + } + ] }, lucky: { label: 'DAGGERHEART.CONFIG.WeaponFeature.lucky.name', @@ -919,12 +1008,12 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.lucky.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.lucky.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.lucky.actions.luck.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.lucky.actions.luck.description', img: 'icons/magic/control/buff-luck-fortune-green.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -936,9 +1025,9 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.massive.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.massive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.massive.description', - img: '', + name: 'DAGGERHEART.CONFIG.WeaponFeature.massive.effects.massive.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.massive.effects.massive.description', + img: 'icons/skills/melee/strike-flail-destructive-yellow.webp', changes: [ { key: 'system.evasion', @@ -967,12 +1056,12 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.painful.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.painful.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.painful.actions.pain.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.painful.actions.pain.description', img: 'icons/skills/wounds/injury-face-impact-orange.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -982,14 +1071,18 @@ export const weaponFeatures = { paired: { label: 'DAGGERHEART.CONFIG.WeaponFeature.paired.name', description: 'DAGGERHEART.CONFIG.WeaponFeature.paired.description', - actions: [ + effects: [ { - type: 'effect', - actionType: 'action', - chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.paired.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.paired.description', - img: 'icons/skills/melee/strike-flail-spiked-red.webp' + name: 'DAGGERHEART.CONFIG.WeaponFeature.paired.effects.paired.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.paired.effects.paired.description', + img: 'icons/skills/melee/weapons-crossed-swords-yellow-teal.webp', + changes: [ + { + key: 'system.bonuses.damage.primaryWeapon.bonus', + mode: 2, + value: 'ITEM.@system.tier + 1' + } + ] } ] }, @@ -1001,8 +1094,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.parry.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.parry.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.parry.actions.parry.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.parry.actions.parry.description', img: 'icons/skills/melee/shield-block-fire-orange.webp' } ] @@ -1015,19 +1108,22 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.actions.persuade.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.actions.persuade.description', img: 'icons/magic/control/hypnosis-mesmerism-eye.webp', + target: { + type: 'self' + }, cost: [ { - type: 'stress', + key: 'stress', value: 1 } ], effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.effects.persuasive.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.persuasive.effects.persuasive.description', img: 'icons/magic/control/hypnosis-mesmerism-eye.webp', changes: [ { @@ -1043,36 +1139,36 @@ export const weaponFeatures = { }, pompous: { label: 'DAGGERHEART.CONFIG.WeaponFeature.pompous.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.pompous.description' - }, - powerful: { - label: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.description', + description: 'DAGGERHEART.CONFIG.WeaponFeature.pompous.description', actions: [ { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.pompous.actions.pompous.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.pompous.actions.pompous.description', + img: 'icons/magic/control/control-influence-crown-gold.webp' + } + ] + }, + powerful: { + label: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.description', + effects: [ + { + name: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.effects.powerful.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.effects.powerful.description', img: 'icons/magic/control/buff-flight-wings-runes-red-yellow.webp', - effects: [ + changes: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.powerful.description', - img: 'icons/magic/control/buff-flight-wings-runes-red-yellow.webp', - changes: [ - { - key: 'system.bonuses.damage.primaryWeapon.extraDice', - mode: 2, - value: '1' - }, - { - key: 'system.rules.weapon.dropLowestDamageDice', - mode: 5, - value: '1' - } - ] + key: 'system.bonuses.damage.primaryWeapon.extraDice', + mode: 2, + value: '1' + }, + { + key: 'system.rules.weapon.dropLowestDamageDice', + mode: 5, + value: '1' } ] } @@ -1083,14 +1179,14 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.protective.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.protective.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.protective.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.protective.effects.protective.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.protective.effects.protective.description', img: 'icons/skills/melee/shield-block-gray-orange.webp', changes: [ { key: 'system.armorScore', mode: 2, - value: '1' + value: 'ITEM.@system.tier' } ] } @@ -1104,12 +1200,12 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.quick.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.quick.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.quick.actions.quick.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.quick.actions.quick.description', img: 'icons/skills/movement/arrow-upward-yellow.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -1121,8 +1217,8 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.effects.reliable.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.reliable.effects.reliable.description', img: 'icons/skills/melee/strike-sword-slashing-red.webp', changes: [ { @@ -1142,35 +1238,37 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.reloading.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.reloading.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.reloading.actions.reload.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.reloading.actions.reload.description', img: 'icons/weapons/ammunition/shot-round-blue.webp' } ] }, retractable: { label: 'DAGGERHEART.CONFIG.WeaponFeature.retractable.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.retractable.description' + description: 'DAGGERHEART.CONFIG.WeaponFeature.retractable.description', + actions: [ + { + type: 'effect', + actionType: 'action', + chatDisplay: true, + name: 'DAGGERHEART.CONFIG.WeaponFeature.retractable.actions.retract.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.retractable.actions.retract.description', + img: 'icons/skills/melee/blade-tip-smoke-green.webp' + } + ] }, returning: { label: 'DAGGERHEART.CONFIG.WeaponFeature.returning.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.returning.description' - }, - selfCorrecting: { - label: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.description', - effects: [ + description: 'DAGGERHEART.CONFIG.WeaponFeature.returning.description', + actions: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.description', - img: 'icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp', - changes: [ - { - key: 'system.rules.damage.flipMinDiceValue', - mode: 5, - value: 1 - } - ] + type: 'effect', + actionType: 'action', + chatDisplay: true, + name: 'DAGGERHEART.CONFIG.WeaponFeature.returning.actions.return.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.returning.actions.return.description', + img: 'icons/magic/movement/trail-streak-pink.webp' } ] }, @@ -1182,19 +1280,37 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.scary.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.scary.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.scary.actions.scare.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.scary.actions.scare.description', img: 'icons/magic/death/skull-energy-light-purple.webp' } ] }, + selfCorrecting: { + label: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.description', + effects: [ + { + name: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.effects.selfCorrecting.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.selfCorrecting.effects.selfCorrecting.description', + img: 'icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp', + changes: [ + { + key: 'system.rules.damage.flipMinDiceValue', + mode: 5, + value: 1 + } + ] + } + ] + }, serrated: { label: 'DAGGERHEART.CONFIG.WeaponFeature.serrated.name', description: 'DAGGERHEART.CONFIG.WeaponFeature.serrated.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.serrated.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.serrated.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.serrated.effects.serrated.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.serrated.effects.serrated.description', img: 'icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp', changes: [ { @@ -1211,8 +1327,8 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.sharpwing.description', effects: [ { - name: 'DAGGERHEART.CONFIG.WeaponFeature.sharpwing.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.sharpwing.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.sharpwing.effects.sharpwing.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.sharpwing.effects.sharpwing.description', img: 'icons/weapons/swords/sword-winged-pink.webp', changes: [ { @@ -1232,8 +1348,8 @@ export const weaponFeatures = { type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.sheltering.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.sheltering.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.sheltering.actions.shelter.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.sheltering.actions.shelter.description', img: 'icons/skills/melee/shield-block-gray-yellow.webp' } ] @@ -1243,15 +1359,15 @@ export const weaponFeatures = { description: 'DAGGERHEART.CONFIG.WeaponFeature.startling.description', actions: [ { - type: 'resource', + type: 'effect', actionType: 'action', chatDisplay: true, - name: 'DAGGERHEART.CONFIG.WeaponFeature.startling.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.startling.description', + name: 'DAGGERHEART.CONFIG.WeaponFeature.startling.actions.startle.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.startling.actions.startle.description', img: 'icons/magic/control/fear-fright-mask-orange.webp', cost: [ { - type: 'stress', + key: 'stress', value: 1 } ] @@ -1260,7 +1376,17 @@ export const weaponFeatures = { }, timebending: { label: 'DAGGERHEART.CONFIG.WeaponFeature.timebending.name', - description: 'DAGGERHEART.CONFIG.WeaponFeature.timebending.description' + description: 'DAGGERHEART.CONFIG.WeaponFeature.timebending.description', + actions: [ + { + type: 'effect', + actionType: 'action', + chatDisplay: true, + name: 'DAGGERHEART.CONFIG.WeaponFeature.timebending.actions.bendTime.name', + description: 'DAGGERHEART.CONFIG.WeaponFeature.actions.bendTime.description', + img: 'icons/magic/time/clock-spinning-gold-pink.webp' + } + ] } }; diff --git a/module/data/action/baseAction.mjs b/module/data/action/baseAction.mjs index 1cc370d5..8376447a 100644 --- a/module/data/action/baseAction.mjs +++ b/module/data/action/baseAction.mjs @@ -185,13 +185,11 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel prepareRoll() { const roll = { - modifiers: this.modifiers, - trait: this.roll?.trait, + baseModifiers: this.roll.getModifier(), label: 'Attack', type: this.actionType, difficulty: this.roll?.difficulty, formula: this.roll.getFormula(), - bonus: this.roll.bonus, advantage: CONFIG.DH.ACTIONS.advantageState[this.roll.advState].value }; if (this.roll?.type === 'diceSet') roll.lite = true; @@ -205,6 +203,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel async consume(config) { const usefulResources = foundry.utils.deepClone(this.actor.system.resources); + for (var cost of config.costs) { if (cost.keyIsID) { usefulResources[cost.key] = { @@ -227,17 +226,13 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel }); await this.actor.modifyResource(resources); - if (config.uses?.enabled) { - const newActions = foundry.utils.getProperty(this.item.system, this.systemPath).map(x => x.toObject()); - newActions[this.index].uses.value++; - await this.item.update({ [`system.${this.systemPath}`]: newActions }); - } + if (config.uses?.enabled) this.update({ 'uses.value': this.uses.value + 1 }); } /* */ /* ROLL */ get hasRoll() { - return !!this.roll?.type || !!this.roll?.bonus; + return !!this.roll?.type; } get modifiers() { @@ -301,17 +296,16 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel /* SAVE */ async rollSave(actor, event, message) { if (!actor) return; - return actor - .diceRoll({ - event, - title: 'Roll Save', - roll: { - trait: this.save.trait, - difficulty: this.save.difficulty ?? this.actor?.baseSaveDifficulty, - type: 'reaction' - }, - data: actor.getRollData() - }); + return actor.diceRoll({ + event, + title: 'Roll Save', + roll: { + trait: this.save.trait, + difficulty: this.save.difficulty ?? this.actor?.baseSaveDifficulty, + type: 'reaction' + }, + data: actor.getRollData() + }); } updateSaveMessage(result, message, targetId) { @@ -324,7 +318,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel else updateMsg(); } - static rollSaveQuery({ actionId, actorId, event, message }) { + static rollSaveQuery({ actionId, actorId, event, message }) { return new Promise(async (resolve, reject) => { const actor = await fromUuid(actorId), action = await fromUuid(actionId); diff --git a/module/data/action/beastformAction.mjs b/module/data/action/beastformAction.mjs index ee5f3c6a..836024ff 100644 --- a/module/data/action/beastformAction.mjs +++ b/module/data/action/beastformAction.mjs @@ -4,15 +4,25 @@ import DHBaseAction from './baseAction.mjs'; export default class DhBeastformAction extends DHBaseAction { static extraSchemas = [...super.extraSchemas, 'beastform']; - async use(_event, ...args) { + async use(event, ...args) { const beastformConfig = this.prepareBeastformConfig(); const abort = await this.handleActiveTransformations(); if (abort) return; + const calcCosts = game.system.api.fields.ActionFields.CostField.calcCosts.call(this, this.cost); + const hasCost = game.system.api.fields.ActionFields.CostField.hasCost.call(this, calcCosts); + if (!hasCost) { + ui.notifications.warn(game.i18n.localize('DAGGERHEART.UI.Notifications.insufficientResources')); + return; + } + const { selected, evolved, hybrid } = await BeastformDialog.configure(beastformConfig, this.item); if (!selected) return; + const result = await super.use(event, args); + if (!result) return; + await this.transform(selected, evolved, hybrid); } diff --git a/module/data/activeEffect/_module.mjs b/module/data/activeEffect/_module.mjs index 126aec5e..79ad7813 100644 --- a/module/data/activeEffect/_module.mjs +++ b/module/data/activeEffect/_module.mjs @@ -1,7 +1,9 @@ +import BaseEffect from './baseEffect.mjs'; import BeastformEffect from './beastformEffect.mjs'; -export { BeastformEffect }; +export { BaseEffect, BeastformEffect }; export const config = { + base: BaseEffect, beastform: BeastformEffect }; diff --git a/module/data/activeEffect/baseEffect.mjs b/module/data/activeEffect/baseEffect.mjs new file mode 100644 index 00000000..0ac87de0 --- /dev/null +++ b/module/data/activeEffect/baseEffect.mjs @@ -0,0 +1,33 @@ +export default class BaseEffect extends foundry.abstract.TypeDataModel { + static defineSchema() { + const fields = foundry.data.fields; + + return { + rangeDependence: new fields.SchemaField({ + enabled: new fields.BooleanField({ + required: true, + initial: false, + label: 'DAGGERHEART.GENERAL.enabled' + }), + type: new fields.StringField({ + required: true, + choices: CONFIG.DH.GENERAL.rangeInclusion, + initial: CONFIG.DH.GENERAL.rangeInclusion.withinRange.id, + label: 'DAGGERHEART.GENERAL.type' + }), + target: new fields.StringField({ + required: true, + choices: CONFIG.DH.GENERAL.otherTargetTypes, + initial: CONFIG.DH.GENERAL.otherTargetTypes.hostile.id, + label: 'DAGGERHEART.GENERAL.Target.single' + }), + range: new fields.StringField({ + required: true, + choices: CONFIG.DH.GENERAL.range, + initial: CONFIG.DH.GENERAL.range.melee.id, + label: 'DAGGERHEART.GENERAL.range' + }) + }) + }; + } +} diff --git a/module/data/activeEffect/beastformEffect.mjs b/module/data/activeEffect/beastformEffect.mjs index 91b84614..e040d8d8 100644 --- a/module/data/activeEffect/beastformEffect.mjs +++ b/module/data/activeEffect/beastformEffect.mjs @@ -1,6 +1,7 @@ import { updateActorTokens } from '../../helpers/utils.mjs'; +import BaseEffect from './baseEffect.mjs'; -export default class BeastformEffect extends foundry.abstract.TypeDataModel { +export default class BeastformEffect extends BaseEffect { static defineSchema() { const fields = foundry.data.fields; return { diff --git a/module/data/actor/character.mjs b/module/data/actor/character.mjs index ec6e5c7c..7fc7c5d7 100644 --- a/module/data/actor/character.mjs +++ b/module/data/actor/character.mjs @@ -397,14 +397,16 @@ export default class DhCharacter extends BaseDataActor { } else if (item.system.originItemType === CONFIG.DH.ITEM.featureTypes.class.id) { classFeatures.push(item); } else if (item.system.originItemType === CONFIG.DH.ITEM.featureTypes.subclass.id) { - const subclassState = this.class.subclass.system.featureState; - const subType = item.system.subType; - if ( - subType === CONFIG.DH.ITEM.featureSubTypes.foundation || - (subType === CONFIG.DH.ITEM.featureSubTypes.specialization && subclassState >= 2) || - (subType === CONFIG.DH.ITEM.featureSubTypes.mastery && subclassState >= 3) - ) { - subclassFeatures.push(item); + if (this.class.subclass) { + const subclassState = this.class.subclass.system.featureState; + const subType = item.system.subType; + if ( + subType === CONFIG.DH.ITEM.featureSubTypes.foundation || + (subType === CONFIG.DH.ITEM.featureSubTypes.specialization && subclassState >= 2) || + (subType === CONFIG.DH.ITEM.featureSubTypes.mastery && subclassState >= 3) + ) { + subclassFeatures.push(item); + } } } else if (item.system.originItemType === CONFIG.DH.ITEM.featureTypes.companion.id) { companionFeatures.push(item); @@ -563,6 +565,12 @@ export default class DhCharacter extends BaseDataActor { this.resources.hope.value = Math.min(baseHope, this.resources.hope.max); this.attack.roll.trait = this.rules.attack.roll.trait ?? this.attack.roll.trait; + this.resources.armor = { + value: this.armor?.system?.marks?.value ?? 0, + max: this.armorScore, + isReversed: true + }; + this.attack.damage.parts[0].value.custom.formula = `@prof${this.basicAttackDamageDice}${this.rules.attack.damage.bonus ? ` + ${this.rules.attack.damage.bonus}` : ''}`; } diff --git a/module/data/fields/action/costField.mjs b/module/data/fields/action/costField.mjs index f5e1999c..ef51e086 100644 --- a/module/data/fields/action/costField.mjs +++ b/module/data/fields/action/costField.mjs @@ -26,11 +26,20 @@ export default class CostField extends fields.ArrayField { } static calcCosts(costs) { + console.log(costs, CostField.getResources.call(this, costs)); + const resources = CostField.getResources.call(this, costs); return costs.map(c => { c.scale = c.scale ?? 1; c.step = c.step ?? 1; - c.total = c.value * c.scale * c.step; + c.total = c.value + (c.scale - 1) * c.step; c.enabled = c.hasOwnProperty('enabled') ? c.enabled : true; + c.max = + c.key === 'fear' + ? game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Resources.Fear) + : resources[c.key].isReversed + ? resources[c.key].max + : resources[c.key].value; + if (c.scalable) c.maxStep = Math.floor(c.max / c.step); return c; }); } @@ -51,9 +60,11 @@ export default class CostField extends fields.ArrayField { const resources = CostField.getResources.call(this, realCosts); return realCosts.reduce( (a, c) => - a && resources[c.key].isReversed - ? resources[c.key].value + (c.total ?? c.value) <= resources[c.key].max - : resources[c.key]?.value >= (c.total ?? c.value), + !resources[c.key] + ? a + : a && resources[c.key].isReversed + ? resources[c.key].value + (c.total ?? c.value) <= resources[c.key].max + : resources[c.key]?.value >= (c.total ?? c.value), true ); } @@ -61,10 +72,11 @@ export default class CostField extends fields.ArrayField { static getResources(costs) { const actorResources = this.actor.system.resources; const itemResources = {}; - for (var itemResource of costs) { + for (let itemResource of costs) { if (itemResource.keyIsID) { itemResources[itemResource.key] = { - value: this.parent.resource.value ?? 0 + value: this.parent.resource.value ?? 0, + max: CostField.formatMax.call(this, this.parent?.resource?.max) }; } } @@ -79,4 +91,13 @@ export default class CostField extends fields.ArrayField { const realCosts = costs?.length ? costs.filter(c => c.enabled) : []; return realCosts; } + + static formatMax(max) { + max ??= 0; + if (isNaN(max)) { + const roll = Roll.replaceFormulaData(max, this.getRollData()); + max = roll.total; + } + return Number(max); + } } diff --git a/module/data/fields/action/rollField.mjs b/module/data/fields/action/rollField.mjs index 511e0660..7522ebc5 100644 --- a/module/data/fields/action/rollField.mjs +++ b/module/data/fields/action/rollField.mjs @@ -66,6 +66,43 @@ export class DHActionRollData extends foundry.abstract.DataModel { } return formula; } + + getModifier() { + const modifiers = []; + if (!this.parent?.actor) return modifiers; + switch (this.parent.actor.type) { + case 'character': + const trait = + this.useDefault || !this.trait + ? (this.parent.item.system.attack.roll.trait ?? 'agility') + : this.trait; + if ( + this.type === CONFIG.DH.GENERAL.rollTypes.attack.id || + this.type === CONFIG.DH.GENERAL.rollTypes.trait.id + ) + modifiers.push({ + label: `DAGGERHEART.CONFIG.Traits.${trait}.name`, + value: this.parent.actor.system.traits[trait].value + }); + else if (this.type === CONFIG.DH.GENERAL.rollTypes.spellcast.id) + modifiers.push({ + label: `DAGGERHEART.CONFIG.RollTypes.spellcast.name`, + value: this.parent.actor.system.spellcastModifier + }); + break; + case 'companion': + case 'adversary': + if (this.type === CONFIG.DH.GENERAL.rollTypes.attack.id) + modifiers.push({ + label: 'Bonus to Hit', + value: this.bonus ?? this.parent.actor.system.attack.roll.bonus + }); + break; + default: + break; + } + return modifiers; + } } export default class RollField extends fields.EmbeddedDataField { diff --git a/module/data/fields/action/targetField.mjs b/module/data/fields/action/targetField.mjs index 1024d5d7..f54cd6fe 100644 --- a/module/data/fields/action/targetField.mjs +++ b/module/data/fields/action/targetField.mjs @@ -4,8 +4,8 @@ export default class TargetField extends fields.SchemaField { constructor(options = {}, context = {}) { const targetFields = { type: new fields.StringField({ - choices: CONFIG.DH.ACTIONS.targetTypes, - initial: CONFIG.DH.ACTIONS.targetTypes.any.id, + choices: CONFIG.DH.GENERAL.targetTypes, + initial: CONFIG.DH.GENERAL.targetTypes.any.id, nullable: true }), amount: new fields.NumberField({ nullable: true, initial: null, integer: true, min: 0 }) @@ -16,11 +16,11 @@ export default class TargetField extends fields.SchemaField { static prepareConfig(config) { if (!this.target?.type) return []; let targets; - if (this.target?.type === CONFIG.DH.ACTIONS.targetTypes.self.id) + if (this.target?.type === CONFIG.DH.GENERAL.targetTypes.self.id) targets = [this.actor.token ?? this.actor.prototypeToken]; else { targets = Array.from(game.user.targets); - if (this.target.type !== CONFIG.DH.ACTIONS.targetTypes.any.id) { + if (this.target.type !== CONFIG.DH.GENERAL.targetTypes.any.id) { targets = targets.filter(t => TargetField.isTargetFriendly.call(this, t)); if (this.target.amount && targets.length > this.target.amount) targets = []; } @@ -43,9 +43,9 @@ export default class TargetField extends fields.SchemaField { : this.actor.prototypeToken.disposition, targetDisposition = target.document.disposition; return ( - (this.target.type === CONFIG.DH.ACTIONS.targetTypes.friendly.id && + (this.target.type === CONFIG.DH.GENERAL.targetTypes.friendly.id && actorDisposition === targetDisposition) || - (this.target.type === CONFIG.DH.ACTIONS.targetTypes.hostile.id && + (this.target.type === CONFIG.DH.GENERAL.targetTypes.hostile.id && actorDisposition + targetDisposition === 0) ); } diff --git a/module/data/fields/action/usesField.mjs b/module/data/fields/action/usesField.mjs index df6c5d0c..d06e0009 100644 --- a/module/data/fields/action/usesField.mjs +++ b/module/data/fields/action/usesField.mjs @@ -1,10 +1,12 @@ +import FormulaField from '../formulaField.mjs'; + const fields = foundry.data.fields; export default class UsesField extends fields.SchemaField { constructor(options = {}, context = {}) { const usesFields = { value: new fields.NumberField({ nullable: true, initial: null }), - max: new fields.NumberField({ nullable: true, initial: null }), + max: new FormulaField({ nullable: true, initial: null, deterministic: true }), recovery: new fields.StringField({ choices: CONFIG.DH.GENERAL.refreshTypes, initial: null, @@ -33,6 +35,11 @@ export default class UsesField extends fields.SchemaField { static hasUses(uses) { if (!uses) return true; - return (uses.hasOwnProperty('enabled') && !uses.enabled) || uses.value + 1 <= uses.max; + let max = uses.max ?? 0; + if (isNaN(max)) { + const roll = new Roll(Roll.replaceFormulaData(uses.max, this.getRollData())).evaluateSync(); + max = roll.total; + } + return (uses.hasOwnProperty('enabled') && !uses.enabled) || uses.value + 1 <= max; } } diff --git a/module/data/item/armor.mjs b/module/data/item/armor.mjs index e77d18f9..e8a6e35b 100644 --- a/module/data/item/armor.mjs +++ b/module/data/item/armor.mjs @@ -71,13 +71,14 @@ export default class DHArmor extends AttachableItem { for (var feature of added) { const featureData = armorFeatures[feature.value]; if (featureData.effects?.length > 0) { - const embeddedItems = await this.parent.createEmbeddedDocuments('ActiveEffect', [ - { - name: game.i18n.localize(featureData.label), - description: game.i18n.localize(featureData.description), - changes: featureData.effects.flatMap(x => x.changes) - } - ]); + const embeddedItems = await this.parent.createEmbeddedDocuments( + 'ActiveEffect', + featureData.effects.map(effect => ({ + ...effect, + name: game.i18n.localize(effect.name), + description: game.i18n.localize(effect.description) + })) + ); feature.effectIds = embeddedItems.map(x => x.id); } @@ -93,6 +94,7 @@ export default class DHArmor extends AttachableItem { description: game.i18n.localize(effect.description) })) ); + feature.effectIds = [...(feature.effectIds ?? []), ...embeddedEffects.map(x => x.id)]; const cls = game.system.api.models.actions.actionsTypes[action.type]; const actionId = foundry.utils.randomID(); diff --git a/module/data/item/base.mjs b/module/data/item/base.mjs index 5b95a810..1839a983 100644 --- a/module/data/item/base.mjs +++ b/module/data/item/base.mjs @@ -10,6 +10,7 @@ import { addLinkedItemsDiff, updateLinkedItemApps } from '../../helpers/utils.mjs'; import { ActionsField } from '../fields/actionField.mjs'; +import FormulaField from '../fields/formulaField.mjs'; const fields = foundry.data.fields; @@ -48,7 +49,7 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { initial: CONFIG.DH.ITEM.itemResourceTypes.simple }), value: new fields.NumberField({ integer: true, min: 0, initial: 0 }), - max: new fields.StringField({ nullable: true, initial: null }), + max: new FormulaField({ nullable: true, initial: null, deterministic: true }), icon: new fields.StringField(), recovery: new fields.StringField({ choices: CONFIG.DH.GENERAL.refreshTypes, @@ -122,26 +123,21 @@ export default class BaseDataItem extends foundry.abstract.TypeDataModel { this.updateSource({ actions: [action] }); } - } - _onCreate(data, _, userId) { - if (userId !== game.user.id) return; - - if (!this.actor || this.actor.type !== 'character' || !this.features) return; - - this.actor.createEmbeddedDocuments( - 'Item', - this.features.map(feature => ({ - ...(feature.item ?? feature), - system: { - ...(feature.item?.system ?? feature.system), - originItemType: this.parent.type, - originId: data._id, - identifier: feature.identifier, - subType: feature.item ? feature.type : undefined - } - })) - ); + if (this.actor && this.actor.type === 'character' && this.features) { + for (let f of this.features) { + const feature = f.item ?? f; + const createData = foundry.utils.mergeObject(feature.toObject(), { + system: { + originItemType: this.parent.type, + originId: data._id, + identifier: feature.identifier, + subType: feature.item ? feature.type : undefined + } + }, { inplace: false }); + await this.actor.createEmbeddedDocuments('Item', [createData]); + } + } } async _preDelete() { diff --git a/module/data/item/weapon.mjs b/module/data/item/weapon.mjs index cf31a70f..aab5a895 100644 --- a/module/data/item/weapon.mjs +++ b/module/data/item/weapon.mjs @@ -118,13 +118,14 @@ export default class DHWeapon extends AttachableItem { for (let weaponFeature of added) { const featureData = CONFIG.DH.ITEM.weaponFeatures[weaponFeature.value]; if (featureData.effects?.length > 0) { - const embeddedItems = await this.parent.createEmbeddedDocuments('ActiveEffect', [ - { - name: game.i18n.localize(featureData.label), - description: game.i18n.localize(featureData.description), - changes: featureData.effects.flatMap(x => x.changes) - } - ]); + const embeddedItems = await this.parent.createEmbeddedDocuments( + 'ActiveEffect', + featureData.effects.map(effect => ({ + ...effect, + name: game.i18n.localize(effect.name), + description: game.i18n.localize(effect.description) + })) + ); weaponFeature.effectIds = embeddedItems.map(x => x.id); } @@ -140,6 +141,10 @@ export default class DHWeapon extends AttachableItem { description: game.i18n.localize(effect.description) })) ); + weaponFeature.effectIds = [ + ...(weaponFeature.effectIds ?? []), + ...embeddedEffects.map(x => x.id) + ]; const cls = game.system.api.models.actions.actionsTypes[action.type]; const actionId = foundry.utils.randomID(); diff --git a/module/data/settings/Automation.mjs b/module/data/settings/Automation.mjs index 63377b26..d4d6a2a7 100644 --- a/module/data/settings/Automation.mjs +++ b/module/data/settings/Automation.mjs @@ -23,6 +23,12 @@ export default class DhAutomation extends foundry.abstract.DataModel { required: true, initial: true, label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.hordeDamage.label' + }), + effects: new fields.SchemaField({ + rangeDependent: new fields.BooleanField({ + initial: true, + label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.effects.rangeDependent.label' + }) }) }; } diff --git a/module/dice/d20Roll.mjs b/module/dice/d20Roll.mjs index ce400110..8cec2669 100644 --- a/module/dice/d20Roll.mjs +++ b/module/dice/d20Roll.mjs @@ -124,13 +124,7 @@ export default class D20Roll extends DHRoll { } applyBaseBonus() { - const modifiers = []; - - if (this.options.roll.bonus) - modifiers.push({ - label: 'Bonus to Hit', - value: this.options.roll.bonus - }); + const modifiers = foundry.utils.deepClone(this.options.roll.baseModifiers) ?? []; modifiers.push(...this.getBonus(`roll.${this.options.type}`, `${this.options.type?.capitalize()} Bonus`)); modifiers.push( @@ -151,6 +145,7 @@ export default class D20Roll extends DHRoll { data.difficulty = config.roll.difficulty; data.success = roll.isCritical || roll.total >= config.roll.difficulty; } + data.type = config.roll.type; data.advantage = { type: config.roll.advantage, dice: roll.dAdvantage?.denomination, diff --git a/module/dice/damageRoll.mjs b/module/dice/damageRoll.mjs index d74ae410..b805bdbd 100644 --- a/module/dice/damageRoll.mjs +++ b/module/dice/damageRoll.mjs @@ -85,9 +85,9 @@ export default class DamageRoll extends DHRoll { const modifiers = [], type = this.options.messageType ?? (this.options.isHealing ? 'healing' : 'damage'), options = part ?? this.options; - + modifiers.push(...this.getBonus(`${type}`, `${type.capitalize()} Bonus`)); - if(!this.options.isHealing) { + if (!this.options.isHealing) { options.damageTypes?.forEach(t => { modifiers.push(...this.getBonus(`${type}.${t}`, `${t.capitalize()} ${type.capitalize()} Bonus`)); }); diff --git a/module/dice/dhRoll.mjs b/module/dice/dhRoll.mjs index aa1ebb68..bacaf47b 100644 --- a/module/dice/dhRoll.mjs +++ b/module/dice/dhRoll.mjs @@ -194,11 +194,12 @@ export const registerRollDiceHooks = () => { if (config.roll.result.duality === -1) updates.push({ key: 'fear', value: 1 }); if (config.rerolledRoll) { - if (config.rerolledRoll.isCritical || config.rerolledRoll.result.duality === 1) updates.push({ key: 'hope', value: -1 }); + if (config.rerolledRoll.isCritical || config.rerolledRoll.result.duality === 1) + updates.push({ key: 'hope', value: -1 }); if (config.rerolledRoll.isCritical) updates.push({ key: 'stress', value: 1 }); if (config.rerolledRoll.result.duality === -1) updates.push({ key: 'fear', value: -1 }); } - + if (updates.length) { const target = actor.system.partner ?? actor; if (!['dead', 'unconcious'].some(x => actor.statuses.has(x))) { diff --git a/module/dice/dualityRoll.mjs b/module/dice/dualityRoll.mjs index 8ad61996..ab6264c6 100644 --- a/module/dice/dualityRoll.mjs +++ b/module/dice/dualityRoll.mjs @@ -64,7 +64,7 @@ export default class DualityRoll extends D20Roll { } setRallyChoices() { - return this.data?.parent?.effects.reduce((a, c) => { + return this.data?.parent?.appliedEffects.reduce((a, c) => { const change = c.changes.find(ch => ch.key === 'system.bonuses.rally'); if (change) a.push({ value: c.id, label: change.value }); return a; diff --git a/module/documents/actor.mjs b/module/documents/actor.mjs index ec464ddb..d7760637 100644 --- a/module/documents/actor.mjs +++ b/module/documents/actor.mjs @@ -481,7 +481,9 @@ export default class DhpActor extends Actor { this.system.armor && this.#canReduceDamage(hpDamage.value, hpDamage.damageTypes) ) { - const armorStackResult = await this.owner.query('armorStack', { + const armorSlotResult = await this.owner.query( + 'armorSlot', + { actorId: this.uuid, damage: hpDamage.value, type: [...hpDamage.damageTypes] @@ -490,11 +492,11 @@ export default class DhpActor extends Actor { timeout: 30000 } ); - if (armorStackResult) { - const { modifiedDamage, armorSpent, stressSpent } = armorStackResult; + if (armorSlotResult) { + const { modifiedDamage, armorSpent, stressSpent } = armorSlotResult; updates.find(u => u.key === 'hitPoints').value = modifiedDamage; updates.push( - ...(armorSpent ? [{ value: armorSpent, key: 'armorStack' }] : []), + ...(armorSpent ? [{ value: armorSpent, key: 'armor' }] : []), ...(stressSpent ? [{ value: stressSpent, key: 'stress' }] : []) ); } @@ -569,6 +571,7 @@ export default class DhpActor extends Actor { armor: { target: this.system.armor, resources: {} }, items: {} }; + resources.forEach(r => { if (r.keyIsID) { updates.items[r.key] = { @@ -584,7 +587,7 @@ export default class DhpActor extends Actor { game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Resources.Fear) + r.value ); break; - case 'armorStack': + case 'armor': updates.armor.resources['system.marks.value'] = Math.max( Math.min(this.system.armor.system.marks.value + r.value, this.system.armorScore), 0 diff --git a/module/documents/token.mjs b/module/documents/token.mjs index b6c47450..becf80b8 100644 --- a/module/documents/token.mjs +++ b/module/documents/token.mjs @@ -52,7 +52,8 @@ export default class DHToken extends TokenDocument { for (const [name, field] of Object.entries(schema.fields)) { const p = _path.concat([name]); if (field instanceof foundry.data.fields.NumberField) attributes.value.push(p); - if (field instanceof foundry.data.fields.BooleanField && field.options.isAttributeChoice) attributes.value.push(p); + if (field instanceof foundry.data.fields.BooleanField && field.options.isAttributeChoice) + attributes.value.push(p); if (field instanceof foundry.data.fields.StringField) attributes.value.push(p); if (field instanceof foundry.data.fields.ArrayField) attributes.value.push(p); const isSchema = field instanceof foundry.data.fields.SchemaField; diff --git a/module/enrichers/DualityRollEnricher.mjs b/module/enrichers/DualityRollEnricher.mjs index 24dd0602..4a6fac23 100644 --- a/module/enrichers/DualityRollEnricher.mjs +++ b/module/enrichers/DualityRollEnricher.mjs @@ -2,22 +2,23 @@ import { abilities } from '../config/actorConfig.mjs'; import { getCommandTarget, rollCommandToJSON } from '../helpers/utils.mjs'; export default function DhDualityRollEnricher(match, _options) { - const roll = rollCommandToJSON(match[1]); + const roll = rollCommandToJSON(match[1], match[0]); if (!roll) return match[0]; - return getDualityMessage(roll); + return getDualityMessage(roll.result, roll.flavor); } -function getDualityMessage(roll) { - const traitLabel = - roll.trait && abilities[roll.trait] - ? game.i18n.format('DAGGERHEART.GENERAL.check', { - check: game.i18n.localize(abilities[roll.trait].label) - }) - : null; +function getDualityMessage(roll, flavor) { + const trait = roll.trait && abilities[roll.trait] ? game.i18n.localize(abilities[roll.trait].label) : null; + const label = + flavor ?? + (roll.trait + ? game.i18n.format('DAGGERHEART.GENERAL.rollWith', { roll: trait }) + : roll.reaction + ? game.i18n.localize('DAGGERHEART.GENERAL.reactionRoll') + : game.i18n.localize('DAGGERHEART.GENERAL.duality')); - const label = traitLabel ?? game.i18n.localize('DAGGERHEART.GENERAL.duality'); - const dataLabel = traitLabel + const dataLabel = trait ? game.i18n.localize(abilities[roll.trait].label) : game.i18n.localize('DAGGERHEART.GENERAL.duality'); @@ -38,6 +39,7 @@ function getDualityMessage(roll) { `; @@ -57,6 +59,7 @@ function getDualityMessage(roll) { export const renderDualityButton = async event => { const button = event.currentTarget, + reaction = button.dataset.reaction === 'true', traitValue = button.dataset.trait?.toLowerCase(), target = getCommandTarget({ allowNull: true }), difficulty = button.dataset.difficulty, @@ -64,12 +67,12 @@ export const renderDualityButton = async event => { await enrichedDualityRoll( { + reaction, traitValue, target, difficulty, title: button.dataset.title, label: button.dataset.label, - actionType: button.dataset.actionType, advantage }, event @@ -77,7 +80,7 @@ export const renderDualityButton = async event => { }; export const enrichedDualityRoll = async ( - { traitValue, target, difficulty, title, label, actionType, advantage }, + { reaction, traitValue, target, difficulty, title, label, advantage }, event ) => { const config = { @@ -88,7 +91,7 @@ export const enrichedDualityRoll = async ( label: label, difficulty: difficulty, advantage, - type: actionType ?? null // Need check, + type: reaction ? 'reaction' : null }, chatMessage: { template: 'systems/daggerheart/templates/ui/chat/duality-roll.hbs' diff --git a/module/enrichers/_module.mjs b/module/enrichers/_module.mjs index abfd8158..3b597dd5 100644 --- a/module/enrichers/_module.mjs +++ b/module/enrichers/_module.mjs @@ -7,19 +7,19 @@ export { DhDamageEnricher, DhDualityRollEnricher, DhEffectEnricher, DhTemplateEn export const enricherConfig = [ { - pattern: /^@Damage\[(.*)\]$/g, + pattern: /^@Damage\[(.*)\]({.*})?$/g, enricher: DhDamageEnricher }, { - pattern: /\[\[\/dr\s?(.*?)\]\]/g, + pattern: /\[\[\/dr\s?(.*?)\]\]({.*})?/g, enricher: DhDualityRollEnricher }, { - pattern: /^@Effect\[(.*)\]$/g, + pattern: /^@Effect\[(.*)\]({.*})?$/g, enricher: DhEffectEnricher }, { - pattern: /^@Template\[(.*)\]$/g, + pattern: /^@Template\[(.*)\]({.*})?$/g, enricher: DhTemplateEnricher } ]; diff --git a/module/helpers/handlebarsHelper.mjs b/module/helpers/handlebarsHelper.mjs index 751b2c38..7c862f92 100644 --- a/module/helpers/handlebarsHelper.mjs +++ b/module/helpers/handlebarsHelper.mjs @@ -7,6 +7,7 @@ export default class RegisterHandlebarsHelpers { includes: this.includes, times: this.times, damageFormula: this.damageFormula, + formulaValue: this.formulaValue, damageSymbols: this.damageSymbols, rollParsed: this.rollParsed, hasProperty: foundry.utils.hasProperty, @@ -39,6 +40,15 @@ export default class RegisterHandlebarsHelpers { return instances.join(traitTotal > 0 ? ' + ' : ' - '); } + static formulaValue(formula, item) { + if (isNaN(formula)) { + const data = item.getRollData.bind(item)(), + roll = new Roll(Roll.replaceFormulaData(formula, data)).evaluateSync(); + formula = roll.total; + } + return formula; + } + static damageSymbols(damageParts) { const symbols = [...new Set(damageParts.reduce((a, c) => a.concat([...c.type]), []))].map( p => CONFIG.DH.GENERAL.damageTypes[p].icon diff --git a/module/helpers/utils.mjs b/module/helpers/utils.mjs index 2bfbc3c2..34de5a5c 100644 --- a/module/helpers/utils.mjs +++ b/module/helpers/utils.mjs @@ -5,9 +5,12 @@ export const capitalize = string => { return string.charAt(0).toUpperCase() + string.slice(1); }; -export function rollCommandToJSON(text) { +export function rollCommandToJSON(text, raw) { if (!text) return {}; + const flavorMatch = raw?.match(/{(.*)}$/); + const flavor = flavorMatch ? flavorMatch[1] : null; + // Match key="quoted string" OR key=unquotedValue const PAIR_RE = /(\w+)=("(?:[^"\\]|\\.)*"|\S+)/g; const result = {}; @@ -28,7 +31,7 @@ export function rollCommandToJSON(text) { } result[key] = value; } - return Object.keys(result).length > 0 ? result : null; + return Object.keys(result).length > 0 ? { result, flavor } : null; } export const getCommandTarget = (options = {}) => { @@ -307,8 +310,8 @@ export function updateLinkedItemApps(options, sheet) { export const itemAbleRollParse = (value, actor, item) => { if (!value) return value; - const isItemTarget = value.toLowerCase().startsWith('item.'); - const slicedValue = isItemTarget ? value.slice(5) : value; + const isItemTarget = value.toLowerCase().includes('item.@'); + const slicedValue = isItemTarget ? value.replaceAll(/item\.@/gi, '@') : value; try { return Roll.replaceFormulaData(slicedValue, isItemTarget ? item : actor); } catch (_) { diff --git a/module/systemRegistration/socket.mjs b/module/systemRegistration/socket.mjs index e97fe5b0..b47fee85 100644 --- a/module/systemRegistration/socket.mjs +++ b/module/systemRegistration/socket.mjs @@ -60,7 +60,7 @@ export const registerSocketHooks = () => { case GMUpdateEvent.UpdateSaveMessage: const action = await fromUuid(data.update.action), message = game.messages.get(data.update.message); - if(!action || !message) return; + if (!action || !message) return; action.updateSaveMessage(data.update.result, message, data.update.token); break; } @@ -77,9 +77,9 @@ export const registerSocketHooks = () => { }; export const registerUserQueries = () => { - CONFIG.queries.armorStack = DamageReductionDialog.armorStackQuery; + CONFIG.queries.armorSlot = DamageReductionDialog.armorSlotQuery; CONFIG.queries.reactionRoll = game.system.api.models.actions.actionsTypes.base.rollSaveQuery; -} +}; export const emitAsGM = async (eventName, callback, update, uuid = null) => { if (!game.user.isGM) { diff --git a/package-lock.json b/package-lock.json index 864d027c..35dab92f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "autocompleter": "^9.3.2", "gulp": "^5.0.0", "gulp-less": "^5.0.0", + "readline": "^1.3.0", "rollup": "^4.40.0" }, "devDependencies": { @@ -4263,6 +4264,11 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + }, "node_modules/rechoir": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", diff --git a/package.json b/package.json index a7dd69b9..af5adfd6 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "build": "npm run rollup && npm run gulp", "rollup": "rollup -c", "gulp": "gulp less", + "readline": "^1.3.0", "pushLDBtoYML": "node ./tools/pushLDBtoYML.mjs", "pullYMLtoLDB": "node ./tools/pullYMLtoLDB.mjs", "createSymlink": "node ./tools/create-symlink.mjs" diff --git a/src/packs/adversaries/adversary_Acid_Burrower_aKVLLjMb35om4QbJ.json b/src/packs/adversaries/adversary_Acid_Burrower_aKVLLjMb35om4QbJ.json new file mode 100644 index 00000000..a8b3d14f --- /dev/null +++ b/src/packs/adversaries/adversary_Acid_Burrower_aKVLLjMb35om4QbJ.json @@ -0,0 +1,186 @@ +{ + "name": "Acid Burrower", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Burrow, drag away, feed, reposition", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "
A horse-sized insect with digging claws and acidic blood.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784217, + "modifiedTime": 1753922784217, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "aKVLLjMb35om4QbJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Acid Burrower", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!aKVLLjMb35om4QbJ" +} diff --git a/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json b/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json new file mode 100644 index 00000000..5c01258b --- /dev/null +++ b/src/packs/adversaries/adversary_Adult_Flickerfly_G7jiltRjgvVhZewm.json @@ -0,0 +1,186 @@ +{ + "name": "Adult Flickerfly", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 20, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 12, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Collect shiny things, hunt, nest, swoop", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A winged insect the size of a large house with iridescent scales and wings that move too fast to track.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784219, + "modifiedTime": 1753922784219, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "G7jiltRjgvVhZewm", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Adult Flickerfly", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!G7jiltRjgvVhZewm" +} diff --git a/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json b/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json new file mode 100644 index 00000000..9d81e832 --- /dev/null +++ b/src/packs/adversaries/adversary_Apprentice_Assassin_vNIbYQ4YSzNf0WPE.json @@ -0,0 +1,170 @@ +{ + "name": "Apprentice Assassin", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "motivesAndTactics": "Act reckless, kill, prove their worth, show off", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 13, + "tier": 2, + "description": "A young trainee eager to prove themselves.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784220, + "modifiedTime": 1753922784220, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "vNIbYQ4YSzNf0WPE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Apprentice Assassin", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!vNIbYQ4YSzNf0WPE" +} diff --git a/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json b/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json new file mode 100644 index 00000000..255e4052 --- /dev/null +++ b/src/packs/adversaries/adversary_Arch_Necromancer_WPEOIGfclNJxWb87.json @@ -0,0 +1,186 @@ +{ + "name": "Arch-Necromancer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 21, + "damageThresholds": { + "major": 33, + "severe": 66 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 8, + "isReversed": true + } + }, + "motivesAndTactics": "Corrupt, decay, flee to fight another day, resurrect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A decaying mage adorned in dark, tattered robes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784221, + "modifiedTime": 1753922784221, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "WPEOIGfclNJxWb87", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Arch-Necromancer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!WPEOIGfclNJxWb87" +} diff --git a/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json b/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json new file mode 100644 index 00000000..e23f3832 --- /dev/null +++ b/src/packs/adversaries/adversary_Archer_Guard_JRhrrEg5UroURiAD.json @@ -0,0 +1,185 @@ +{ + "name": "Archer Guard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A tall guard bearing a longbow and quiver with arrows fletched in the settlement’s colors.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784222, + "modifiedTime": 1753922784222, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "JRhrrEg5UroURiAD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Archer Guard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!JRhrrEg5UroURiAD" +} diff --git a/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json b/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json new file mode 100644 index 00000000..ca6de062 --- /dev/null +++ b/src/packs/adversaries/adversary_Archer_Squadron_0ts6CGd93lLqGZI5.json @@ -0,0 +1,186 @@ +{ + "name": "Archer Squadron", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 16 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Stick together, survive, volley fire", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A group of trained archers bearing massive bows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784223, + "modifiedTime": 1753922784223, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "0ts6CGd93lLqGZI5", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Archer Squadron", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!0ts6CGd93lLqGZI5" +} diff --git a/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json b/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json new file mode 100644 index 00000000..6359da4b --- /dev/null +++ b/src/packs/adversaries/adversary_Assassin_Poisoner_h5RuhzGL17dW5FBT.json @@ -0,0 +1,186 @@ +{ + "name": "Assassin Poisoner", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 16 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Anticipate, get paid, kill, taint food and water", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A cunning scoundrel skilled in both poisons and ambushing.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784224, + "modifiedTime": 1753922784224, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "h5RuhzGL17dW5FBT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Assassin Poisoner", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!h5RuhzGL17dW5FBT" +} diff --git a/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json b/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json new file mode 100644 index 00000000..e79a3b03 --- /dev/null +++ b/src/packs/adversaries/adversary_Battle_Box_dgH3fW9FTYLaIDvS.json @@ -0,0 +1,185 @@ +{ + "name": "Battle Box", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 10, + "severe": 20 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A cube-shaped construct with a different rune on each of their six sides.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784224, + "modifiedTime": 1753922784224, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dgH3fW9FTYLaIDvS", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Battle Box", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dgH3fW9FTYLaIDvS" +} diff --git a/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json b/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json new file mode 100644 index 00000000..471df7bd --- /dev/null +++ b/src/packs/adversaries/adversary_Bear_71qKDLKO3CsrNkdy.json @@ -0,0 +1,186 @@ +{ + "name": "Bear", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 9, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Climb, defend territory, pummel, track", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large bear with thick fur and powerful claws.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784226, + "modifiedTime": 1753922784226, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "71qKDLKO3CsrNkdy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Bear", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!71qKDLKO3CsrNkdy" +} diff --git a/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json b/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json new file mode 100644 index 00000000..80de6400 --- /dev/null +++ b/src/packs/adversaries/adversary_Bladed_Guard_B4LZcGuBAHzyVdzy.json @@ -0,0 +1,186 @@ +{ + "name": "Bladed Guard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Arrest, close gates, make it through the day, pin down", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An armored guard bearing a sword and shield painted in the settlement’s colors.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784226, + "modifiedTime": 1753922784226, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "B4LZcGuBAHzyVdzy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Bladed Guard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!B4LZcGuBAHzyVdzy" +} diff --git a/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json b/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json new file mode 100644 index 00000000..3ad8ff69 --- /dev/null +++ b/src/packs/adversaries/adversary_Brawny_Zombie_2UeZ0tEe7AzgSJNd.json @@ -0,0 +1,186 @@ +{ + "name": "Brawny Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Crush, destroy, hail debris, slam", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large corpse, decay-bloated and angry.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784231, + "modifiedTime": 1753922784231, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2UeZ0tEe7AzgSJNd", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Brawny Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2UeZ0tEe7AzgSJNd" +} diff --git a/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json b/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json new file mode 100644 index 00000000..21574d5f --- /dev/null +++ b/src/packs/adversaries/adversary_Cave_Ogre_8Zkqk1jU09nKL2fy.json @@ -0,0 +1,185 @@ +{ + "name": "Cave Ogre", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A massive humanoid who sees all sapient life as food.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784233, + "modifiedTime": 1753922784233, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8Zkqk1jU09nKL2fy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cave Ogre", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8Zkqk1jU09nKL2fy" +} diff --git a/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json b/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json new file mode 100644 index 00000000..b63e637a --- /dev/null +++ b/src/packs/adversaries/adversary_Chaos_Skull_jDmHqGvzg5wjgmxE.json @@ -0,0 +1,186 @@ +{ + "name": "Chaos Skull", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 8, + "severe": 16 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Cackle, consume magic, serve creator", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A floating humanoid skull animated by scintillating magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784233, + "modifiedTime": 1753922784233, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "jDmHqGvzg5wjgmxE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Chaos Skull", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!jDmHqGvzg5wjgmxE" +} diff --git a/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json b/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json new file mode 100644 index 00000000..b35e88fc --- /dev/null +++ b/src/packs/adversaries/adversary_Conscript_99TqczuQipBmaB8i.json @@ -0,0 +1,169 @@ +{ + "name": "Conscript", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 12, + "tier": 2, + "description": "A poorly trained civilian pressed into war.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784234, + "modifiedTime": 1753922784234, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "99TqczuQipBmaB8i", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Conscript", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!99TqczuQipBmaB8i" +} diff --git a/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json b/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json new file mode 100644 index 00000000..ea4409f1 --- /dev/null +++ b/src/packs/adversaries/adversary_Construct_uOP5oT9QzXPlnf3p.json @@ -0,0 +1,186 @@ +{ + "name": "Construct", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Destroy environment, serve creator, smash target, trample groups", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A roughly humanoid being of stone and steel, assembled and animated by magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784236, + "modifiedTime": 1753922784236, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uOP5oT9QzXPlnf3p", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Construct", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uOP5oT9QzXPlnf3p" +} diff --git a/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json b/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json new file mode 100644 index 00000000..af2c3e22 --- /dev/null +++ b/src/packs/adversaries/adversary_Courtesan_ZxWaWPdzFIUPNC62.json @@ -0,0 +1,185 @@ +{ + "name": "Courtesan", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An accomplished manipulator and master of the social arts.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784237, + "modifiedTime": 1753922784237, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ZxWaWPdzFIUPNC62", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Courtesan", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ZxWaWPdzFIUPNC62" +} diff --git a/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json b/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json new file mode 100644 index 00000000..f16cbfec --- /dev/null +++ b/src/packs/adversaries/adversary_Courtier_CBBuEXAlLKFMJdjg.json @@ -0,0 +1,186 @@ +{ + "name": "Courtier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Discredit, gain favor, maneuver, scheme", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An ambitious and ostentatiously dressed socialite.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784237, + "modifiedTime": 1753922784237, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CBBuEXAlLKFMJdjg", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Courtier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!CBBuEXAlLKFMJdjg" +} diff --git a/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json b/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json new file mode 100644 index 00000000..90c6edc3 --- /dev/null +++ b/src/packs/adversaries/adversary_Cult_Adept_0NxCSugvKQ4W8OYZ.json @@ -0,0 +1,186 @@ +{ + "name": "Cult Adept", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 9, + "severe": 18 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Curry favor, hinder foes, uncover knowledge", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An experienced mage wielding shadow and fear.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784239, + "modifiedTime": 1753922784239, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "0NxCSugvKQ4W8OYZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Adept", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!0NxCSugvKQ4W8OYZ" +} diff --git a/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json b/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json new file mode 100644 index 00000000..af010009 --- /dev/null +++ b/src/packs/adversaries/adversary_Cult_Fang_tyBOpLfigAhI9bU3.json @@ -0,0 +1,186 @@ +{ + "name": "Cult Fang", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 9, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Capture sacrifices, isolate prey, rise in the ranks", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A professional killer-turned-cultist.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784239, + "modifiedTime": 1753922784239, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "tyBOpLfigAhI9bU3", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Fang", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!tyBOpLfigAhI9bU3" +} diff --git a/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json b/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json new file mode 100644 index 00000000..a8375235 --- /dev/null +++ b/src/packs/adversaries/adversary_Cult_Initiate_zx99sOGTXicP4SSD.json @@ -0,0 +1,170 @@ +{ + "name": "Cult Initiate", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "motivesAndTactics": "Follow orders, gain power, seek forbidden knowledge", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 13, + "tier": 2, + "description": "A low-ranking cultist in simple robes, eager to gain power.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784240, + "modifiedTime": 1753922784240, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "zx99sOGTXicP4SSD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Initiate", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!zx99sOGTXicP4SSD" +} diff --git a/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json b/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json new file mode 100644 index 00000000..9f3b146d --- /dev/null +++ b/src/packs/adversaries/adversary_Deeproot_Defender_9x2xY9zwc3xzbXo5.json @@ -0,0 +1,186 @@ +{ + "name": "Deeproot Defender", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 8, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, grab, protect, pummel", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A burly vegetable-person with grasping vines.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784246, + "modifiedTime": 1753922784246, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "9x2xY9zwc3xzbXo5", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Deeproot Defender", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!9x2xY9zwc3xzbXo5" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json b/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json new file mode 100644 index 00000000..24e359bd --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Avarice_pnyjIGxxvurcWmTv.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Avarice", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 15, + "severe": 29 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, fuel greed, sow dissent", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A regal cloaked monstrosity with circular horns adorned with treasure.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784247, + "modifiedTime": 1753922784247, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "pnyjIGxxvurcWmTv", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Avarice", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!pnyjIGxxvurcWmTv" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json b/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json new file mode 100644 index 00000000..2a09f010 --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Despair_kE4dfhqmIQpNd44e.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Despair", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 18, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Make fear contagious, stick to the shadows, undermine resolve", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A cloaked demon-creature with long limbs, seeping shadows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784248, + "modifiedTime": 1753922784248, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "kE4dfhqmIQpNd44e", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Despair", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!kE4dfhqmIQpNd44e" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json b/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json new file mode 100644 index 00000000..6bf515d8 --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Hubris_2VN3BftageoTTIzu.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Hubris", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 18, + "damageThresholds": { + "major": 18, + "severe": 36 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Condescend, declare premature victory, prove superiority", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A perfectly beautiful and infinitely cruel demon with a gleaming spear and elegant robes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784249, + "modifiedTime": 1753922784249, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2VN3BftageoTTIzu", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Hubris", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2VN3BftageoTTIzu" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json b/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json new file mode 100644 index 00000000..61c5621a --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Jealousy_SxSOkM4bcVOFyjbo.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Jealousy", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 17, + "severe": 30 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Join in on others’ success, take what belongs to others, hold grudges", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "fickle creature of spindly limbs and insatiable desires.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784249, + "modifiedTime": 1753922784249, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "SxSOkM4bcVOFyjbo", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Jealousy", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!SxSOkM4bcVOFyjbo" +} diff --git a/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json b/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json new file mode 100644 index 00000000..e5cd0cf0 --- /dev/null +++ b/src/packs/adversaries/adversary_Demon_of_Wrath_5lphJAgzoqZI3VoG.json @@ -0,0 +1,186 @@ +{ + "name": "Demon of Wrath", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Fuel anger, impress rivals, wreak havoc", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A hulking demon with boulder-sized fists, driven by endless rage.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784252, + "modifiedTime": 1753922784252, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5lphJAgzoqZI3VoG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demon of Wrath", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5lphJAgzoqZI3VoG" +} diff --git a/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json b/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json new file mode 100644 index 00000000..db0de9d2 --- /dev/null +++ b/src/packs/adversaries/adversary_Demonic_Hound_Pack_NoRZ1PqB8N5wcIw0.json @@ -0,0 +1,185 @@ +{ + "name": "Demonic Hound Pack", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 11, + "severe": 23 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "Unnatural hounds lit from within by hellfire.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784253, + "modifiedTime": 1753922784253, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "NoRZ1PqB8N5wcIw0", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Demonic Hound Pack", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!NoRZ1PqB8N5wcIw0" +} diff --git a/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json b/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json new file mode 100644 index 00000000..a7fc4c03 --- /dev/null +++ b/src/packs/adversaries/adversary_Dire_Bat_tBWHW00epmMnkawe.json @@ -0,0 +1,186 @@ +{ + "name": "Dire Bat", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 16, + "severe": 30 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Dive-bomb, hide, protect leader", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A wide-winged pet endlessly loyal to their vampire owner.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784253, + "modifiedTime": 1753922784253, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "tBWHW00epmMnkawe", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Dire Bat", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!tBWHW00epmMnkawe" +} diff --git a/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json b/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json new file mode 100644 index 00000000..32b29f30 --- /dev/null +++ b/src/packs/adversaries/adversary_Dire_Wolf_wNzeuQLfLUMvgHlQ.json @@ -0,0 +1,186 @@ +{ + "name": "Dire Wolf", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Defend territory, harry, protect pack, surround, trail", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large wolf with menacing teeth, seldom encountered alone.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784257, + "modifiedTime": 1753922784257, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wNzeuQLfLUMvgHlQ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Dire Wolf", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!wNzeuQLfLUMvgHlQ" +} diff --git a/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json b/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json new file mode 100644 index 00000000..1ad08162 --- /dev/null +++ b/src/packs/adversaries/adversary_Dryad_wR7cFKrHvRzbzhBT.json @@ -0,0 +1,186 @@ +{ + "name": "Dryad", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 24, + "severe": 38 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Command, cultivate, drive out, preserve the forest", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A nature spirit in the form of a humanoid tree.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784258, + "modifiedTime": 1753922784258, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wR7cFKrHvRzbzhBT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Dryad", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!wR7cFKrHvRzbzhBT" +} diff --git a/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json b/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json new file mode 100644 index 00000000..aacdeacd --- /dev/null +++ b/src/packs/adversaries/adversary_Electric_Eels_TLzY1nDw0Bu9Ud40.json @@ -0,0 +1,185 @@ +{ + "name": "Electric Eels", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 10, + "severe": 20 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A swarm of eels that encircle and electrocute.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784258, + "modifiedTime": 1753922784258, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "TLzY1nDw0Bu9Ud40", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Electric Eels", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!TLzY1nDw0Bu9Ud40" +} diff --git a/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json b/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json new file mode 100644 index 00000000..2d30137f --- /dev/null +++ b/src/packs/adversaries/adversary_Elemental_Spark_P7h54ZePFPHpYwvB.json @@ -0,0 +1,170 @@ +{ + "name": "Elemental Spark", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "motivesAndTactics": "Blast, consume, gain mass", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 15, + "tier": 3, + "description": "A blazing mote of elemental fire.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784259, + "modifiedTime": 1753922784259, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "P7h54ZePFPHpYwvB", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Elemental Spark", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!P7h54ZePFPHpYwvB" +} diff --git a/src/packs/adversaries/adversary_Elite_Soldier_9F1JdXtcmxfWyoKa.json b/src/packs/adversaries/adversary_Elite_Soldier_9F1JdXtcmxfWyoKa.json new file mode 100644 index 00000000..a0761e1a --- /dev/null +++ b/src/packs/adversaries/adversary_Elite_Soldier_9F1JdXtcmxfWyoKa.json @@ -0,0 +1,186 @@ +{ + "name": "Elite Soldier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 9, + "severe": 18 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Gain glory, keep order, make alliances", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An armored squire or experienced commoner looking to advance.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784260, + "modifiedTime": 1753922784260, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "9F1JdXtcmxfWyoKa", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Elite Soldier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!9F1JdXtcmxfWyoKa" +} diff --git a/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json b/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json new file mode 100644 index 00000000..a99887d3 --- /dev/null +++ b/src/packs/adversaries/adversary_Failed_Experiment_ChwwVqowFw8hJQwT.json @@ -0,0 +1,185 @@ +{ + "name": "Failed Experiment", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 12, + "severe": 23 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A magical necromantic experiment gone wrong, leaving them warped and ungainly.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784262, + "modifiedTime": 1753922784262, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ChwwVqowFw8hJQwT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Failed Experiment", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ChwwVqowFw8hJQwT" +} diff --git a/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json b/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json new file mode 100644 index 00000000..6ad113c2 --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Shock_Troop_OsLG2BjaEdTZUJU9.json @@ -0,0 +1,170 @@ +{ + "name": "Fallen Shock Troop", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "motivesAndTactics": "Crush, dominate, earn relief, punish", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 18, + "tier": 4, + "description": "A cursed soul bound to the Fallen’s will.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784264, + "modifiedTime": 1753922784264, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "OsLG2BjaEdTZUJU9", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Fallen Shock Troop", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!OsLG2BjaEdTZUJU9" +} diff --git a/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json b/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json new file mode 100644 index 00000000..361f48df --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Sorcerer_PELRry1vqjBzSAlr.json @@ -0,0 +1,186 @@ +{ + "name": "Fallen Sorcerer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 26, + "severe": 42 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Acquire, dishearten, dominate, torment", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A powerful mage bound by the bargains they made in life.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784265, + "modifiedTime": 1753922784265, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "PELRry1vqjBzSAlr", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Fallen Sorcerer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!PELRry1vqjBzSAlr" +} diff --git a/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json b/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json new file mode 100644 index 00000000..5ad077d3 --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Warlord__Realm_Breaker_hxZ0sgoFJubh5aj6.json @@ -0,0 +1,271 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Fallen Warlord: Realm Breaker", + "type": "adversary", + "_id": "hxZ0sgoFJubh5aj6", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "A Fallen God, wreathed in rage and resentment, bearing millennia of experience in breaking heroes’ spirits.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 20, + "hordeHp": 1, + "damageThresholds": { + "major": 36, + "severe": 66 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Barbed Whip", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 7, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d8", + "bonus": 7, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "xmyO4KEYcwlFc0Xk": { + "name": "Conquest", + "value": 3 + }, + "DKyCdPkOjtgaCsjU": { + "name": "History", + "value": 2 + }, + "v1rgbqkBK4goqrl3": { + "name": "Intimidation", + "value": 3 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Corrupt, dominate, punish, break the weak" + }, + "prototypeToken": { + "name": "Fallen Warlord: Realm Breaker", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929378070, + "modifiedTime": 1753929456120, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!hxZ0sgoFJubh5aj6" +} diff --git a/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json b/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json new file mode 100644 index 00000000..c90ca881 --- /dev/null +++ b/src/packs/adversaries/adversary_Fallen_Warlord__Undefeated_Champion_RXkZTwBRi4dJ3JE5.json @@ -0,0 +1,271 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Fallen Warlord: Undefeated Champion", + "type": "adversary", + "_id": "RXkZTwBRi4dJ3JE5", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "That which only the most feared have a chance to fear.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 18, + "hordeHp": 1, + "damageThresholds": { + "major": 35, + "severe": 58 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 11, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Heart-Shattering Sword", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 8, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d12", + "bonus": 13, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "94xNhHTol94phqUY": { + "name": "Conquest", + "value": 3 + }, + "FNgjrxzFVeMzwMtZ": { + "name": "History", + "value": 2 + }, + "hxCjuOCUqJpKRER8": { + "name": "Intimidation", + "value": 3 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Dispatch merciless death, punish the defi ant, secure victory at any cost" + }, + "prototypeToken": { + "name": "Fallen Warlord: Undefeated Champion", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929476879, + "modifiedTime": 1753929583772, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!RXkZTwBRi4dJ3JE5" +} diff --git a/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json b/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json new file mode 100644 index 00000000..2d4ead16 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Beastmaster_8VZIgU12cB3cvlyH.json @@ -0,0 +1,185 @@ +{ + "name": "Giant Beastmaster", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 12, + "severe": 24 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A leather-clad warrior bearing a whip and massive bow.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784268, + "modifiedTime": 1753922784268, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8VZIgU12cB3cvlyH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Beastmaster", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8VZIgU12cB3cvlyH" +} diff --git a/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json b/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json new file mode 100644 index 00000000..097e0162 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Brawler_YnObCleGjPT7yqEc.json @@ -0,0 +1,186 @@ +{ + "name": "Giant Brawler", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 14, + "severe": 28 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Make a living, overwhelm, slam, topple", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An especially muscular giant wielding a warhammer larger than a human.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784268, + "modifiedTime": 1753922784268, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YnObCleGjPT7yqEc", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Brawler", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YnObCleGjPT7yqEc" +} diff --git a/src/packs/adversaries/adversary_Giant_Eagle_DnJ5ViDkhhCsr0cC.json b/src/packs/adversaries/adversary_Giant_Eagle_DnJ5ViDkhhCsr0cC.json new file mode 100644 index 00000000..7cd5fd1e --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Eagle_DnJ5ViDkhhCsr0cC.json @@ -0,0 +1,186 @@ +{ + "name": "Giant Eagle", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 19 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Hunt prey, stay mobile, strike decisively", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A giant bird of prey with blood-stained talons.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784269, + "modifiedTime": 1753922784269, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DnJ5ViDkhhCsr0cC", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Eagle", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!DnJ5ViDkhhCsr0cC" +} diff --git a/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json b/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json new file mode 100644 index 00000000..4e94be24 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Mosquitoes_IIWV4ysJPFPnTP7W.json @@ -0,0 +1,185 @@ +{ + "name": "Giant Mosquitoes", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "Dozens of fist-sized mosquitoes, flying together for protection.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784269, + "modifiedTime": 1753922784269, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "IIWV4ysJPFPnTP7W", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Mosquitoes", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!IIWV4ysJPFPnTP7W" +} diff --git a/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json b/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json new file mode 100644 index 00000000..db6985ce --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Rat_4PfLnaCrOcMdb4dK.json @@ -0,0 +1,170 @@ +{ + "name": "Giant Rat", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Burrow, hunger, scavenge, wear down", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 10, + "tier": 1, + "description": "A cat-sized rodent skilled at scavenging and survival.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784270, + "modifiedTime": 1753922784270, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "4PfLnaCrOcMdb4dK", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Rat", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!4PfLnaCrOcMdb4dK" +} diff --git a/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json b/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json new file mode 100644 index 00000000..9be5ff60 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Recruit_5s8wSvpyC5rxY5aD.json @@ -0,0 +1,169 @@ +{ + "name": "Giant Recruit", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 13, + "tier": 2, + "description": "A giant fighter wearing borrowed armor.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784271, + "modifiedTime": 1753922784271, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5s8wSvpyC5rxY5aD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Recruit", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5s8wSvpyC5rxY5aD" +} diff --git a/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json b/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json new file mode 100644 index 00000000..20590d90 --- /dev/null +++ b/src/packs/adversaries/adversary_Giant_Scorpion_fmfntuJ8mHRCAktP.json @@ -0,0 +1,186 @@ +{ + "name": "Giant Scorpion", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, feed, grapple, poison", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A human-sized insect with tearing claws and a stinging tail.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784272, + "modifiedTime": 1753922784272, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "fmfntuJ8mHRCAktP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Giant Scorpion", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!fmfntuJ8mHRCAktP" +} diff --git a/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json b/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json new file mode 100644 index 00000000..da8dea2e --- /dev/null +++ b/src/packs/adversaries/adversary_Glass_Snake_8KWVLWXFhlY2kYx0.json @@ -0,0 +1,186 @@ +{ + "name": "Glass Snake", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 6, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Climb, feed, keep distance, scare", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A clear serpent with a massive head that leaves behind a glass shard trail wherever they go.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784273, + "modifiedTime": 1753922784273, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8KWVLWXFhlY2kYx0", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Glass Snake", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8KWVLWXFhlY2kYx0" +} diff --git a/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json b/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json new file mode 100644 index 00000000..12867fb9 --- /dev/null +++ b/src/packs/adversaries/adversary_Gorgon_8mJYMpbLTb8qIOrr.json @@ -0,0 +1,186 @@ +{ + "name": "Gorgon", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 13, + "severe": 25 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Corner, hit-and-run, petrify, seek vengeance", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A snake-headed, scaled humanoid with a gilded bow, enraged that their peace has been disturbed.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784274, + "modifiedTime": 1753922784274, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8mJYMpbLTb8qIOrr", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Gorgon", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8mJYMpbLTb8qIOrr" +} diff --git a/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json b/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json new file mode 100644 index 00000000..ff37b2f6 --- /dev/null +++ b/src/packs/adversaries/adversary_Greater_Earth_Elemental_dsfB3YhoL5SudvS2.json @@ -0,0 +1,186 @@ +{ + "name": "Greater Earth Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Avalanche, knock over, pummel", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A living landslide of boulders and dust, as large as a house.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784275, + "modifiedTime": 1753922784275, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dsfB3YhoL5SudvS2", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Greater Earth Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dsfB3YhoL5SudvS2" +} diff --git a/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json b/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json new file mode 100644 index 00000000..6d71aedd --- /dev/null +++ b/src/packs/adversaries/adversary_Greater_Water_Elemental_xIICT6tEdnA7dKDV.json @@ -0,0 +1,186 @@ +{ + "name": "Greater Water Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 17, + "severe": 34 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Deluge, disperse, drown", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A huge living wave that crashes down upon enemies.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784278, + "modifiedTime": 1753922784278, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "xIICT6tEdnA7dKDV", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Greater Water Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!xIICT6tEdnA7dKDV" +} diff --git a/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json b/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json new file mode 100644 index 00000000..8296e7d2 --- /dev/null +++ b/src/packs/adversaries/adversary_Green_Ooze_SHXedd9zZPVfUgUa.json @@ -0,0 +1,186 @@ +{ + "name": "Green Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 8, + "damageThresholds": { + "major": 5, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Camouflage, consume and multiply, creep up, envelop", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A moving mound of translucent green slime.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784278, + "modifiedTime": 1753922784278, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "SHXedd9zZPVfUgUa", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Green Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!SHXedd9zZPVfUgUa" +} diff --git a/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json b/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json new file mode 100644 index 00000000..d9f94872 --- /dev/null +++ b/src/packs/adversaries/adversary_Hallowed_Archer_kabueAo6BALApWqp.json @@ -0,0 +1,186 @@ +{ + "name": "Hallowed Archer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 25, + "severe": 45 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Focus fire, obey, reposition, volley", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "Spirit soldiers with sanctified bows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784279, + "modifiedTime": 1753922784279, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "kabueAo6BALApWqp", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hallowed Archer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!kabueAo6BALApWqp" +} diff --git a/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json b/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json new file mode 100644 index 00000000..5f49bfe2 --- /dev/null +++ b/src/packs/adversaries/adversary_Hallowed_Soldier_VENwg7xEFcYObjmT.json @@ -0,0 +1,170 @@ +{ + "name": "Hallowed Soldier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "motivesAndTactics": "Obey, outmaneuver, punish, swarm", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 18, + "tier": 4, + "description": "Souls of the faithful, lifted up with divine weaponry.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784279, + "modifiedTime": 1753922784279, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "VENwg7xEFcYObjmT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hallowed Soldier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!VENwg7xEFcYObjmT" +} diff --git a/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json b/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json new file mode 100644 index 00000000..967815cd --- /dev/null +++ b/src/packs/adversaries/adversary_Harrier_uRtghKE9mHlII4rs.json @@ -0,0 +1,186 @@ +{ + "name": "Harrier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Flank, harry, kite, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A nimble fighter armed with javelins.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784281, + "modifiedTime": 1753922784281, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uRtghKE9mHlII4rs", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Harrier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uRtghKE9mHlII4rs" +} diff --git a/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json b/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json new file mode 100644 index 00000000..2d8c658e --- /dev/null +++ b/src/packs/adversaries/adversary_Head_Guard_mK3A5FTx6k8iPU3F.json @@ -0,0 +1,186 @@ +{ + "name": "Head Guard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Arrest, close gates, pin down, seek glory", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A seasoned guard with a mace, a whistle, and a bellowing voice.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784282, + "modifiedTime": 1753922784282, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "mK3A5FTx6k8iPU3F", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Head Guard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!mK3A5FTx6k8iPU3F" +} diff --git a/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json b/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json new file mode 100644 index 00000000..aca5cf42 --- /dev/null +++ b/src/packs/adversaries/adversary_Head_Vampire_i2UNbRvgyoSs07M6.json @@ -0,0 +1,186 @@ +{ + "name": "Head Vampire", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 42 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Create thralls, charm, command, fly, intimidate", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A captivating undead dressed in aristocratic finery.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784283, + "modifiedTime": 1753922784283, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "i2UNbRvgyoSs07M6", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Head Vampire", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!i2UNbRvgyoSs07M6" +} diff --git a/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json b/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json new file mode 100644 index 00000000..02f3015c --- /dev/null +++ b/src/packs/adversaries/adversary_High_Seraph_r1mbfSSwKWdcFdAU.json @@ -0,0 +1,185 @@ +{ + "name": "High Seraph", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 37, + "severe": 70 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A divine champion, head of a hallowed host of warriors who enforce their god’s will.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784283, + "modifiedTime": 1753922784283, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "r1mbfSSwKWdcFdAU", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "High Seraph", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!r1mbfSSwKWdcFdAU" +} diff --git a/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json b/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json new file mode 100644 index 00000000..d920023b --- /dev/null +++ b/src/packs/adversaries/adversary_Huge_Green_Ooze_6hbqmxDXFOzZJDk4.json @@ -0,0 +1,186 @@ +{ + "name": "Huge Green Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 15, + "severe": 30 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Camouflage, creep up, envelop, multiply", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A translucent green mound of acid taller than most humans.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784284, + "modifiedTime": 1753922784284, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "6hbqmxDXFOzZJDk4", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Huge Green Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!6hbqmxDXFOzZJDk4" +} diff --git a/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json b/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json new file mode 100644 index 00000000..70221058 --- /dev/null +++ b/src/packs/adversaries/adversary_Hydra_MI126iMOOobQ1Obn.json @@ -0,0 +1,186 @@ +{ + "name": "Hydra", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 18, + "damageThresholds": { + "major": 19, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Devour, regenerate, terrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A quadrupedal scaled beast with multiple long-necked heads, each filled with menacing fangs.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784285, + "modifiedTime": 1753922784285, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "MI126iMOOobQ1Obn", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hydra", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!MI126iMOOobQ1Obn" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json b/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json new file mode 100644 index 00000000..39a4d45c --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Bandit_5Lh1T0zaT8Pkr2U2.json @@ -0,0 +1,185 @@ +{ + "name": "Jagged Knife Bandit", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 8, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A cunning criminal in a cloak bearing one of the gang’s iconic knives.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784290, + "modifiedTime": 1753922784290, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5Lh1T0zaT8Pkr2U2", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Bandit", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5Lh1T0zaT8Pkr2U2" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json b/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json new file mode 100644 index 00000000..2e68c2c2 --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Hexer_MbBPIOxaxXYNApXz.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Hexer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 5, + "severe": 9 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Command, hex, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A staff-wielding bandit in a cloak adorned with magical paraphernalia, using curses to vex their foes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784291, + "modifiedTime": 1753922784291, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "MbBPIOxaxXYNApXz", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Hexer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!MbBPIOxaxXYNApXz" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json b/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json new file mode 100644 index 00000000..ebd5d2fc --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Kneebreaker_CBKixLH3yhivZZuL.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Kneebreaker", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Grapple, intimidate, profit, steal", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An imposing brawler carrying a large club.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784292, + "modifiedTime": 1753922784292, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CBKixLH3yhivZZuL", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Kneebreaker", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!CBKixLH3yhivZZuL" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json b/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json new file mode 100644 index 00000000..13e61cf3 --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Lackey_C0OMQqV7pN6t7ouR.json @@ -0,0 +1,170 @@ +{ + "name": "Jagged Knife Lackey", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Escape, profit, throw smoke", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 9, + "tier": 1, + "description": "A thief with simple clothes and small daggers, eager to prove themselves.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784293, + "modifiedTime": 1753922784293, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "C0OMQqV7pN6t7ouR", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Lackey", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!C0OMQqV7pN6t7ouR" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json b/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json new file mode 100644 index 00000000..b2650eef --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Lieutenant_aTljstqteGoLpCBq.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Lieutenant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Bully, command, profit, reinforce", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A seasoned bandit in quality leathers with a strong voice and cunning eyes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784294, + "modifiedTime": 1753922784294, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "aTljstqteGoLpCBq", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Lieutenant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!aTljstqteGoLpCBq" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json b/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json new file mode 100644 index 00000000..a44490db --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Shadow_XF4tYTq9nPJAy2ox.json @@ -0,0 +1,186 @@ +{ + "name": "Jagged Knife Shadow", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, conceal, divide, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A nimble scoundrel bearing a wicked knife and utilizing shadow magic to isolate targets.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784295, + "modifiedTime": 1753922784295, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "XF4tYTq9nPJAy2ox", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Shadow", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!XF4tYTq9nPJAy2ox" +} diff --git a/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json b/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json new file mode 100644 index 00000000..03145e51 --- /dev/null +++ b/src/packs/adversaries/adversary_Jagged_Knife_Sniper_1zuyof1XuIfi3aMG.json @@ -0,0 +1,185 @@ +{ + "name": "Jagged Knife Sniper", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 4, + "severe": 7 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A lanky bandit striking from cover with a shortbow.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784296, + "modifiedTime": 1753922784296, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "1zuyof1XuIfi3aMG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Jagged Knife Sniper", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!1zuyof1XuIfi3aMG" +} diff --git a/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json b/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json new file mode 100644 index 00000000..872262ba --- /dev/null +++ b/src/packs/adversaries/adversary_Juvenile_Flickerfly_MYXmTx2FHcIjdfYZ.json @@ -0,0 +1,186 @@ +{ + "name": "Juvenile Flickerfly", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Collect shiny things, hunt, swoop", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A horse-sized insect with iridescent scales and crystalline wings moving faster than the eye can see.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784297, + "modifiedTime": 1753922784297, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "MYXmTx2FHcIjdfYZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Juvenile Flickerfly", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!MYXmTx2FHcIjdfYZ" +} diff --git a/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json b/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json new file mode 100644 index 00000000..790d5846 --- /dev/null +++ b/src/packs/adversaries/adversary_Knight_of_the_Realm_7ai2opemrclQe3VF.json @@ -0,0 +1,186 @@ +{ + "name": "Knight of the Realm", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Run down, seek glory, show dominance", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A decorated soldier with heavy armor and a powerful steed.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784302, + "modifiedTime": 1753922784302, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "7ai2opemrclQe3VF", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Knight of the Realm", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!7ai2opemrclQe3VF" +} diff --git a/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json b/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json new file mode 100644 index 00000000..e4700b3d --- /dev/null +++ b/src/packs/adversaries/adversary_Kraken_4nqv3ZwJGjnmic8j.json @@ -0,0 +1,186 @@ +{ + "name": "Kraken", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 35, + "severe": 70 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 11, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 8, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, crush, drown, grapple", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A legendary beast of the sea, bigger than the largest galleon, with sucker-laden tentacles and a terrifying maw.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784303, + "modifiedTime": 1753922784303, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "4nqv3ZwJGjnmic8j", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Kraken", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!4nqv3ZwJGjnmic8j" +} diff --git a/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json b/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json new file mode 100644 index 00000000..b9b66c5e --- /dev/null +++ b/src/packs/adversaries/adversary_Masked_Thief_niBpVU7yeo5ccskE.json @@ -0,0 +1,186 @@ +{ + "name": "Masked Thief", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Evade, hide, pilfer, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A cunning thief with acrobatic skill and a flair for the dramatic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784304, + "modifiedTime": 1753922784304, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "niBpVU7yeo5ccskE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Masked Thief", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!niBpVU7yeo5ccskE" +} diff --git a/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json b/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json new file mode 100644 index 00000000..cd27deca --- /dev/null +++ b/src/packs/adversaries/adversary_Master_Assassin_dNta0cUzr96xcFhf.json @@ -0,0 +1,186 @@ +{ + "name": "Master Assassin", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 12, + "severe": 25 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, get out alive, kill, prepare for all scenarios", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A seasoned killer with a threatening voice and a deadly blade.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784305, + "modifiedTime": 1753922784305, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dNta0cUzr96xcFhf", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Master Assassin", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dNta0cUzr96xcFhf" +} diff --git a/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json b/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json new file mode 100644 index 00000000..8772432f --- /dev/null +++ b/src/packs/adversaries/adversary_Merchant_Al3w2CgjfdT3p9ma.json @@ -0,0 +1,186 @@ +{ + "name": "Merchant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Buy low and sell high, create demand, inflate prices, seek profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A finely dressed trader with a keen eye for financial gain.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784305, + "modifiedTime": 1753922784305, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Al3w2CgjfdT3p9ma", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Merchant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Al3w2CgjfdT3p9ma" +} diff --git a/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json b/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json new file mode 100644 index 00000000..59723760 --- /dev/null +++ b/src/packs/adversaries/adversary_Merchant_Baron_Vy02IhGhkJLuezu4.json @@ -0,0 +1,186 @@ +{ + "name": "Merchant Baron", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 9, + "severe": 19 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Abuse power, gather resources, mobilize minions", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An accomplished merchant with a large operation under their command.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784306, + "modifiedTime": 1753922784306, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Vy02IhGhkJLuezu4", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Merchant Baron", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Vy02IhGhkJLuezu4" +} diff --git a/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json b/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json new file mode 100644 index 00000000..d38eef50 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Chaos_Elemental_sRn4bqerfARvhgSV.json @@ -0,0 +1,186 @@ +{ + "name": "Minor Chaos Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Confound, destabilize, transmogrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A coruscating mass of uncontrollable magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784307, + "modifiedTime": 1753922784307, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "sRn4bqerfARvhgSV", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Chaos Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!sRn4bqerfARvhgSV" +} diff --git a/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json b/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json new file mode 100644 index 00000000..81919108 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Demon_3tqCjDwJAQ7JKqMb.json @@ -0,0 +1,186 @@ +{ + "name": "Minor Demon", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Act erratically, corral targets, relish pain, torment", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A crimson-hued creature from the Circles Below, consumed by rage against all mortals.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784308, + "modifiedTime": 1753922784308, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3tqCjDwJAQ7JKqMb", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Demon", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!3tqCjDwJAQ7JKqMb" +} diff --git a/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json b/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json new file mode 100644 index 00000000..6fe5fb25 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Fire_Elemental_DscWkNVoHak6P4hh.json @@ -0,0 +1,186 @@ +{ + "name": "Minor Fire Elemental", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Encircle enemies, grow in size, intimidate, start fires", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A living flame the size of a large bonfire.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784308, + "modifiedTime": 1753922784308, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DscWkNVoHak6P4hh", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Fire Elemental", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!DscWkNVoHak6P4hh" +} diff --git a/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json b/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json new file mode 100644 index 00000000..4c141dc4 --- /dev/null +++ b/src/packs/adversaries/adversary_Minor_Treant_G62k4oSkhkoXEs2D.json @@ -0,0 +1,170 @@ +{ + "name": "Minor Treant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Crush, overwhelm, protect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 10, + "tier": 1, + "description": "An ambulatory sapling rising up to defend their forest.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784309, + "modifiedTime": 1753922784309, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "G62k4oSkhkoXEs2D", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minor Treant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!G62k4oSkhkoXEs2D" +} diff --git a/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json b/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json new file mode 100644 index 00000000..0b0f7f93 --- /dev/null +++ b/src/packs/adversaries/adversary_Minotaur_Wrecker_rM9qCIYeWg9I0B4l.json @@ -0,0 +1,185 @@ +{ + "name": "Minotaur Wrecker", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 14, + "severe": 27 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A massive bull-headed firbolg with a quick temper.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784310, + "modifiedTime": 1753922784310, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rM9qCIYeWg9I0B4l", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Minotaur Wrecker", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!rM9qCIYeWg9I0B4l" +} diff --git a/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json b/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json new file mode 100644 index 00000000..5f8b32b3 --- /dev/null +++ b/src/packs/adversaries/adversary_Monarch_yx0vK2yfNVZKWUUi.json @@ -0,0 +1,185 @@ +{ + "name": "Monarch", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 16, + "severe": 32 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "The sovereign ruler of a nation, wreathed in the privilege of tradition and wielding unmatched power in their domain.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784312, + "modifiedTime": 1753922784312, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "yx0vK2yfNVZKWUUi", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Monarch", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!yx0vK2yfNVZKWUUi" +} diff --git a/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json b/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json new file mode 100644 index 00000000..20370765 --- /dev/null +++ b/src/packs/adversaries/adversary_Mortal_Hunter_mVV7a7KQAORoPMgZ.json @@ -0,0 +1,186 @@ +{ + "name": "Mortal Hunter", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 15, + "severe": 27 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Devour, hunt, track", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "An undead figure wearing a heavy leather coat, with searching eyes and a casually cruel demeanor.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784313, + "modifiedTime": 1753922784313, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "mVV7a7KQAORoPMgZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Mortal Hunter", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!mVV7a7KQAORoPMgZ" +} diff --git a/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json b/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json new file mode 100644 index 00000000..3bfaa715 --- /dev/null +++ b/src/packs/adversaries/adversary_Oak_Treant_XK78QUfY8c8Go8Uv.json @@ -0,0 +1,185 @@ +{ + "name": "Oak Treant", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 22, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A sturdy animate old-growth tree.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784314, + "modifiedTime": 1753922784314, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "XK78QUfY8c8Go8Uv", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Oak Treant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!XK78QUfY8c8Go8Uv" +} diff --git a/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json b/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json new file mode 100644 index 00000000..e4a43711 --- /dev/null +++ b/src/packs/adversaries/adversary_Oracle_of_Doom_befIqd5IYKg6eUz2.json @@ -0,0 +1,186 @@ +{ + "name": "Oracle of Doom", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 38, + "severe": 68 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 11, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 10, + "isReversed": true + } + }, + "motivesAndTactics": "Change environment, condemn, dishearten, toss aside", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A towering immortal and incarnation of fate, cursed to only see bad outcomes.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784315, + "modifiedTime": 1753922784315, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "befIqd5IYKg6eUz2", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Oracle of Doom", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!befIqd5IYKg6eUz2" +} diff --git a/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json b/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json new file mode 100644 index 00000000..a774e8b5 --- /dev/null +++ b/src/packs/adversaries/adversary_Outer_Realms_Abomination_A0SeeDzwjvqOsyof.json @@ -0,0 +1,185 @@ +{ + "name": "Outer Realms Abomination", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 35, + "severe": 71 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A chaotic mockery of life, constantly in flux.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784319, + "modifiedTime": 1753922784319, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "A0SeeDzwjvqOsyof", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outer Realms Abomination", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!A0SeeDzwjvqOsyof" +} diff --git a/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json b/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json new file mode 100644 index 00000000..b3398b8d --- /dev/null +++ b/src/packs/adversaries/adversary_Outer_Realms_Corrupter_ms6nuOl3NFkhPj1k.json @@ -0,0 +1,185 @@ +{ + "name": "Outer Realms Corrupter", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 19, + "damageThresholds": { + "major": 27, + "severe": 47 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A shifting, formless mass seemingly made of chromatic light.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784320, + "modifiedTime": 1753922784320, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ms6nuOl3NFkhPj1k", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outer Realms Corrupter", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ms6nuOl3NFkhPj1k" +} diff --git a/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json b/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json new file mode 100644 index 00000000..37739eeb --- /dev/null +++ b/src/packs/adversaries/adversary_Outer_Realms_Thrall_moJhHgKqTKPS2WYS.json @@ -0,0 +1,169 @@ +{ + "name": "Outer Realms Thrall", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 17, + "tier": 4, + "description": "A vaguely humanoid form stripped of memory and identity.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784321, + "modifiedTime": 1753922784321, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "moJhHgKqTKPS2WYS", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outer Realms Thrall", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!moJhHgKqTKPS2WYS" +} diff --git a/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json b/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json new file mode 100644 index 00000000..d26bec1b --- /dev/null +++ b/src/packs/adversaries/adversary_Patchwork_Zombie_Hulk_EQTOAOUrkIvS2z88.json @@ -0,0 +1,186 @@ +{ + "name": "Patchwork Zombie Hulk", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Absorb corpses, flail, hunger, terrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A towering gestalt of corpses moving as one, with torso-sized limbs and fists as large as a grown halfling.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784322, + "modifiedTime": 1753922784322, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EQTOAOUrkIvS2z88", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Patchwork Zombie Hulk", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!EQTOAOUrkIvS2z88" +} diff --git a/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json b/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json new file mode 100644 index 00000000..3b7d59e0 --- /dev/null +++ b/src/packs/adversaries/adversary_Perfected_Zombie_CP6iRfHdyFWniTHY.json @@ -0,0 +1,186 @@ +{ + "name": "Perfected Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 20, + "damageThresholds": { + "major": 40, + "severe": 70 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 9, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, hound, maim, terrify", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A towering, muscular zombie with magically infused strength and skill.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784323, + "modifiedTime": 1753922784323, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CP6iRfHdyFWniTHY", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Perfected Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!CP6iRfHdyFWniTHY" +} diff --git a/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json b/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json new file mode 100644 index 00000000..03002595 --- /dev/null +++ b/src/packs/adversaries/adversary_Petty_Noble_wycLpvebWdUqRhpP.json @@ -0,0 +1,185 @@ +{ + "name": "Petty Noble", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 6, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A richly dressed and adorned aristocrat brimming with hubris.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784324, + "modifiedTime": 1753922784324, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wycLpvebWdUqRhpP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Petty Noble", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!wycLpvebWdUqRhpP" +} diff --git a/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json b/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json new file mode 100644 index 00000000..469ad468 --- /dev/null +++ b/src/packs/adversaries/adversary_Pirate_Captain_OROJbjsqagVh7ECV.json @@ -0,0 +1,186 @@ +{ + "name": "Pirate Captain", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 7, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Command, make ’em walk the plank, plunder, raid", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A charismatic sea dog with an impressive hat, eager to raid and plunder.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784325, + "modifiedTime": 1753922784325, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "OROJbjsqagVh7ECV", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pirate Captain", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!OROJbjsqagVh7ECV" +} diff --git a/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json b/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json new file mode 100644 index 00000000..a9156c71 --- /dev/null +++ b/src/packs/adversaries/adversary_Pirate_Raiders_5YgEajn0wa4i85kC.json @@ -0,0 +1,186 @@ +{ + "name": "Pirate Raiders", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 5, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Gang up, plunder, raid", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "Seafaring scoundrels moving in a ravaging pack.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784326, + "modifiedTime": 1753922784326, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5YgEajn0wa4i85kC", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pirate Raiders", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5YgEajn0wa4i85kC" +} diff --git a/src/packs/adversaries/adversary_Pirate_Tough_GB8zP9LYt061DlqY.json b/src/packs/adversaries/adversary_Pirate_Tough_GB8zP9LYt061DlqY.json new file mode 100644 index 00000000..f6ebdd5b --- /dev/null +++ b/src/packs/adversaries/adversary_Pirate_Tough_GB8zP9LYt061DlqY.json @@ -0,0 +1,186 @@ +{ + "name": "Pirate Tough", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Plunder, raid, smash, terrorize", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A thickly muscled and tattooed pirate with melon-sized fists.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784331, + "modifiedTime": 1753922784331, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "GB8zP9LYt061DlqY", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pirate Tough", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!GB8zP9LYt061DlqY" +} diff --git a/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json b/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json new file mode 100644 index 00000000..1cdbe382 --- /dev/null +++ b/src/packs/adversaries/adversary_Red_Ooze_9rVlbJVrDNn1x7PS.json @@ -0,0 +1,186 @@ +{ + "name": "Red Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Camouflage, consume and multiply, ignite, start fires", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A moving mound of translucent flaming red slime.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784338, + "modifiedTime": 1753922784338, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "9rVlbJVrDNn1x7PS", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Red Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!9rVlbJVrDNn1x7PS" +} diff --git a/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json b/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json new file mode 100644 index 00000000..98b52185 --- /dev/null +++ b/src/packs/adversaries/adversary_Rotted_Zombie_gP3fWTLzSFnpA8EJ.json @@ -0,0 +1,170 @@ +{ + "name": "Rotted Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Eat flesh, hunger, maul, surround", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 8, + "tier": 1, + "description": "A decaying corpse ambling toward their prey.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784339, + "modifiedTime": 1753922784339, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "gP3fWTLzSFnpA8EJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Rotted Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!gP3fWTLzSFnpA8EJ" +} diff --git a/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json b/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json new file mode 100644 index 00000000..f34685db --- /dev/null +++ b/src/packs/adversaries/adversary_Royal_Advisor_EtLJiTsilPPZvLUX.json @@ -0,0 +1,185 @@ +{ + "name": "Royal Advisor", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A high-ranking courtier with the ear of the local nobility.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784339, + "modifiedTime": 1753922784339, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EtLJiTsilPPZvLUX", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Royal Advisor", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!EtLJiTsilPPZvLUX" +} diff --git a/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json b/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json new file mode 100644 index 00000000..69aabadc --- /dev/null +++ b/src/packs/adversaries/adversary_Secret_Keeper_sLAccjvCWfeedbpI.json @@ -0,0 +1,186 @@ +{ + "name": "Secret-Keeper", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Amass great power, plot, take command", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A clandestine leader with a direct channel to the Fallen Gods.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784341, + "modifiedTime": 1753922784341, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "sLAccjvCWfeedbpI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Secret-Keeper", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!sLAccjvCWfeedbpI" +} diff --git a/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json b/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json new file mode 100644 index 00000000..1a2138e0 --- /dev/null +++ b/src/packs/adversaries/adversary_Sellsword_bgreCaQ6ap2DVpCr.json @@ -0,0 +1,170 @@ +{ + "name": "Sellsword", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Charge, lacerate, overwhelm, profit", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 10, + "tier": 1, + "description": "An armed mercenary testing their luck.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784341, + "modifiedTime": 1753922784341, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "bgreCaQ6ap2DVpCr", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Sellsword", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!bgreCaQ6ap2DVpCr" +} diff --git a/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json b/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json new file mode 100644 index 00000000..0069ef06 --- /dev/null +++ b/src/packs/adversaries/adversary_Shambling_Zombie_2nXz4ilAY4xuhKLm.json @@ -0,0 +1,186 @@ +{ + "name": "Shambling Zombie", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 4, + "severe": 6 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 1, + "isReversed": true + } + }, + "motivesAndTactics": "Devour, hungry, mob enemy, shred flesh", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An animated corpse that moves shakily, driven only by hunger.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784342, + "modifiedTime": 1753922784342, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2nXz4ilAY4xuhKLm", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Shambling Zombie", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2nXz4ilAY4xuhKLm" +} diff --git a/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json b/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json new file mode 100644 index 00000000..554c597f --- /dev/null +++ b/src/packs/adversaries/adversary_Shark_YmVAkdNsyuXWTtYp.json @@ -0,0 +1,185 @@ +{ + "name": "Shark", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 14, + "severe": 28 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A large aquatic predator, always on the move.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784342, + "modifiedTime": 1753922784342, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YmVAkdNsyuXWTtYp", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Shark", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YmVAkdNsyuXWTtYp" +} diff --git a/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json b/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json new file mode 100644 index 00000000..db5d8933 --- /dev/null +++ b/src/packs/adversaries/adversary_Siren_BK4jwyXSRx7IOQiO.json @@ -0,0 +1,185 @@ +{ + "name": "Siren", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 9, + "severe": 18 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A half-fish person with shimmering scales and an irresistible voice.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784344, + "modifiedTime": 1753922784344, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "BK4jwyXSRx7IOQiO", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Siren", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!BK4jwyXSRx7IOQiO" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json b/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json new file mode 100644 index 00000000..76f8e91e --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Archer_7X5q7a6ueeHs5oA9.json @@ -0,0 +1,186 @@ +{ + "name": "Skeleton Archer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 9, + "damageThresholds": { + "major": 4, + "severe": 7 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Perforate distracted targets, play dead, steal skin", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A fragile skeleton with a shortbow and arrows.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784345, + "modifiedTime": 1753922784345, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "7X5q7a6ueeHs5oA9", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Archer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!7X5q7a6ueeHs5oA9" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json b/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json new file mode 100644 index 00000000..73b3156e --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Dredge_6l1a3Fazq8BoKIcc.json @@ -0,0 +1,170 @@ +{ + "name": "Skeleton Dredge", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Fall apart, overwhelm, play dead, steal skin", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 8, + "tier": 1, + "description": "A clattering pile of bones.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784347, + "modifiedTime": 1753922784347, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "6l1a3Fazq8BoKIcc", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Dredge", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!6l1a3Fazq8BoKIcc" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json b/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json new file mode 100644 index 00000000..9f9d8e18 --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Knight_Q9LaVTyXF9NF12C7.json @@ -0,0 +1,186 @@ +{ + "name": "Skeleton Knight", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 7, + "severe": 13 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Cut down the living, steal skin, wreak havoc", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A large armored skeleton with a huge blade.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784348, + "modifiedTime": 1753922784348, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Q9LaVTyXF9NF12C7", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Knight", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Q9LaVTyXF9NF12C7" +} diff --git a/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json b/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json new file mode 100644 index 00000000..0808c843 --- /dev/null +++ b/src/packs/adversaries/adversary_Skeleton_Warrior_10YIQl0lvCJXZLfX.json @@ -0,0 +1,186 @@ +{ + "name": "Skeleton Warrior", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 4, + "severe": 8 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Feign death, gang up, steal skin", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A dirt-covered skeleton armed with a rusted blade.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784350, + "modifiedTime": 1753922784350, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "10YIQl0lvCJXZLfX", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Skeleton Warrior", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!10YIQl0lvCJXZLfX" +} diff --git a/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json b/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json new file mode 100644 index 00000000..59a42118 --- /dev/null +++ b/src/packs/adversaries/adversary_Spectral_Archer_5tCkhnBByUIN5UdG.json @@ -0,0 +1,186 @@ +{ + "name": "Spectral Archer", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 6, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 3, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Move through solid objects, stay out of the fray, rehash old battles", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A ghostly fighter with an ethereal bow, unable to move on while their charge is vulnerable.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784351, + "modifiedTime": 1753922784351, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5tCkhnBByUIN5UdG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spectral Archer", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!5tCkhnBByUIN5UdG" +} diff --git a/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json b/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json new file mode 100644 index 00000000..75aac0a9 --- /dev/null +++ b/src/packs/adversaries/adversary_Spectral_Captain_65cSO3EQEh6ZH6Xk.json @@ -0,0 +1,185 @@ +{ + "name": "Spectral Captain", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 13, + "severe": 26 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A ghostly commander leading their troops beyond death.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784352, + "modifiedTime": 1753922784352, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "65cSO3EQEh6ZH6Xk", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spectral Captain", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!65cSO3EQEh6ZH6Xk" +} diff --git a/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json b/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json new file mode 100644 index 00000000..3877f352 --- /dev/null +++ b/src/packs/adversaries/adversary_Spectral_Guardian_UFVGl1osOsJTneLf.json @@ -0,0 +1,186 @@ +{ + "name": "Spectral Guardian", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 7, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Move through solid objects, protect treasure, rehash old battles", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A ghostly fighter with spears and swords, anchored by duty.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784353, + "modifiedTime": 1753922784353, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "UFVGl1osOsJTneLf", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spectral Guardian", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!UFVGl1osOsJTneLf" +} diff --git a/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json b/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json new file mode 100644 index 00000000..d6ad7693 --- /dev/null +++ b/src/packs/adversaries/adversary_Spellblade_ldbWEL7uZs84vyrR.json @@ -0,0 +1,185 @@ +{ + "name": "Spellblade", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 14 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A mercenary combining swordplay and magic to deadly effect.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784353, + "modifiedTime": 1753922784353, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ldbWEL7uZs84vyrR", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spellblade", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ldbWEL7uZs84vyrR" +} diff --git a/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json b/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json new file mode 100644 index 00000000..17740733 --- /dev/null +++ b/src/packs/adversaries/adversary_Spy_8zlynOhnVA59KpKT.json @@ -0,0 +1,185 @@ +{ + "name": "Spy", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 15, + "damageThresholds": { + "major": 8, + "severe": 17 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A skilled espionage agent with a knack for being in the right place to overhear secrets.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784354, + "modifiedTime": 1753922784354, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8zlynOhnVA59KpKT", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Spy", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8zlynOhnVA59KpKT" +} diff --git a/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json b/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json new file mode 100644 index 00000000..53d35ea6 --- /dev/null +++ b/src/packs/adversaries/adversary_Stag_Knight_KGVwnLq85ywP9xvB.json @@ -0,0 +1,186 @@ +{ + "name": "Stag Knight", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 19, + "severe": 36 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "motivesAndTactics": "Isolate, maneuver, protect the forest, weed the unwelcome", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A knight with huge, majestic antlers wearing armor made of dangerous thorns.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784355, + "modifiedTime": 1753922784355, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "KGVwnLq85ywP9xvB", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Stag Knight", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!KGVwnLq85ywP9xvB" +} diff --git a/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json b/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json new file mode 100644 index 00000000..989beac8 --- /dev/null +++ b/src/packs/adversaries/adversary_Stonewraith_3aAS2Qm3R6cgaYfE.json @@ -0,0 +1,186 @@ +{ + "name": "Stonewraith", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 13, + "damageThresholds": { + "major": 11, + "severe": 22 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Defend territory, isolate prey, stalk", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A prowling hunter, like a slinking mountain lion, with a slate-gray stone body.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784355, + "modifiedTime": 1753922784355, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3aAS2Qm3R6cgaYfE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Stonewraith", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!3aAS2Qm3R6cgaYfE" +} diff --git a/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json b/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json new file mode 100644 index 00000000..5dbf3cfb --- /dev/null +++ b/src/packs/adversaries/adversary_Swarm_of_Rats_qNgs3AbLyJrY19nt.json @@ -0,0 +1,186 @@ +{ + "name": "Swarm of Rats", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 10, + "damageThresholds": { + "major": 6, + "severe": 10 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Consume, obscure, swarm", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A skittering mass of ordinary rodents moving as one like a ravenous wave.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784356, + "modifiedTime": 1753922784356, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "qNgs3AbLyJrY19nt", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Swarm of Rats", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!qNgs3AbLyJrY19nt" +} diff --git a/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json b/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json new file mode 100644 index 00000000..60f98202 --- /dev/null +++ b/src/packs/adversaries/adversary_Sylvan_Soldier_VtFBt9XBE0WrGGxP.json @@ -0,0 +1,186 @@ +{ + "name": "Sylvan Soldier", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 11, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 4, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "motivesAndTactics": "Ambush, hide, overwhelm, protect, trail", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A faerie warrior adorned in armor made of leaves and bark.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784356, + "modifiedTime": 1753922784356, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "VtFBt9XBE0WrGGxP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Sylvan Soldier", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!VtFBt9XBE0WrGGxP" +} diff --git a/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_RLvFm4xfDYB6MZ7j.json b/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_RLvFm4xfDYB6MZ7j.json new file mode 100644 index 00000000..64b5f58d --- /dev/null +++ b/src/packs/adversaries/adversary_Tangle_Bramble_Swarm_RLvFm4xfDYB6MZ7j.json @@ -0,0 +1,186 @@ +{ + "name": "Tangle Bramble Swarm", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 12, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Digest, entangle, immobilize", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A cluster of animate, blood-drinking tumbleweeds, each the size of a large gourd.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784358, + "modifiedTime": 1753922784358, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "RLvFm4xfDYB6MZ7j", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tangle Bramble Swarm", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!RLvFm4xfDYB6MZ7j" +} diff --git a/src/packs/adversaries/adversary_Tangle_Bramble_jd4MVRwy9zTfmRRE.json b/src/packs/adversaries/adversary_Tangle_Bramble_jd4MVRwy9zTfmRRE.json new file mode 100644 index 00000000..3c13aad1 --- /dev/null +++ b/src/packs/adversaries/adversary_Tangle_Bramble_jd4MVRwy9zTfmRRE.json @@ -0,0 +1,170 @@ +{ + "name": "Tangle Bramble", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Combine, drain, entangle", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 11, + "tier": 1, + "description": "An animate, blood-drinking tumbleweed.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784357, + "modifiedTime": 1753922784357, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "jd4MVRwy9zTfmRRE", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tangle Bramble", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!jd4MVRwy9zTfmRRE" +} diff --git a/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json b/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json new file mode 100644 index 00000000..276658c7 --- /dev/null +++ b/src/packs/adversaries/adversary_Tiny_Green_Ooze_aLkLFuVoKz2NLoBK.json @@ -0,0 +1,169 @@ +{ + "name": "Tiny Green Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 14, + "tier": 1, + "description": "A small moving mound of translucent green slime.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784359, + "modifiedTime": 1753922784359, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "aLkLFuVoKz2NLoBK", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tiny Green Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!aLkLFuVoKz2NLoBK" +} diff --git a/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json b/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json new file mode 100644 index 00000000..62801c37 --- /dev/null +++ b/src/packs/adversaries/adversary_Tiny_Red_Ooze_1fkLQXVtmILqfJ44.json @@ -0,0 +1,170 @@ +{ + "name": "Tiny Red Ooze", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "motivesAndTactics": "Blaze, camouflage", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 11, + "tier": 1, + "description": "A small moving mound of translucent flaming red slime
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784359, + "modifiedTime": 1753922784359, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "1fkLQXVtmILqfJ44", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Tiny Red Ooze", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!1fkLQXVtmILqfJ44" +} diff --git a/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json b/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json new file mode 100644 index 00000000..eef60f21 --- /dev/null +++ b/src/packs/adversaries/adversary_Treant_Sapling_o63nS0k3wHu6EgKP.json @@ -0,0 +1,170 @@ +{ + "name": "Treant Sapling", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "motivesAndTactics": "Blend in, preserve the forest, pummel, surround", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "difficulty": 14, + "tier": 3, + "description": "A small, sentient tree sapling.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784360, + "modifiedTime": 1753922784360, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "o63nS0k3wHu6EgKP", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Treant Sapling", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!o63nS0k3wHu6EgKP" +} diff --git a/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json b/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json new file mode 100644 index 00000000..7e7465aa --- /dev/null +++ b/src/packs/adversaries/adversary_Vampire_WWyUp6Mxl1S3KYUG.json @@ -0,0 +1,186 @@ +{ + "name": "Vampire", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 18, + "severe": 35 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Bite, charm, deceive, feed, intimidate", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "An intelligent undead with blood-stained lips and a predator’s smile.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784364, + "modifiedTime": 1753922784364, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "WWyUp6Mxl1S3KYUG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vampire", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!WWyUp6Mxl1S3KYUG" +} diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json b/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json new file mode 100644 index 00000000..65553592 --- /dev/null +++ b/src/packs/adversaries/adversary_Vault_Guardian_Gaoler_JqYraOqNmmhHk4Yy.json @@ -0,0 +1,186 @@ +{ + "name": "Vault Guardian Gaoler", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 19, + "severe": 33 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Carry away, entrap, protect, pummel", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A boxy, dust-covered construct with thick metallic swinging doors on their torso.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784367, + "modifiedTime": 1753922784367, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "JqYraOqNmmhHk4Yy", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vault Guardian Gaoler", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!JqYraOqNmmhHk4Yy" +} diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json b/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json new file mode 100644 index 00000000..c59a6527 --- /dev/null +++ b/src/packs/adversaries/adversary_Vault_Guardian_Sentinel_FVgYb28fhxlVcGwA.json @@ -0,0 +1,186 @@ +{ + "name": "Vault Guardian Sentinel", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 21, + "severe": 40 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Destroy at any cost, expunge, protect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A dust-covered golden construct with boxy limbs and a huge mace for a hand.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784368, + "modifiedTime": 1753922784368, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "FVgYb28fhxlVcGwA", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vault Guardian Sentinel", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!FVgYb28fhxlVcGwA" +} diff --git a/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json b/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json new file mode 100644 index 00000000..80118335 --- /dev/null +++ b/src/packs/adversaries/adversary_Vault_Guardian_Turret_c5hGdvY5UnSjlHws.json @@ -0,0 +1,186 @@ +{ + "name": "Vault Guardian Turret", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 20, + "severe": 32 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 4, + "isReversed": true + } + }, + "motivesAndTactics": "Concentrate fire, lock down, mark, protect", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A massive living turret with reinforced armor and twelve piston-driven mechanical legs.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784368, + "modifiedTime": 1753922784368, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "c5hGdvY5UnSjlHws", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Vault Guardian Turret", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!c5hGdvY5UnSjlHws" +} diff --git a/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json b/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json new file mode 100644 index 00000000..01fdcd39 --- /dev/null +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Ashen_Tyrant_pMuXGCSOQaxpi5tb.json @@ -0,0 +1,263 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Volcanic Dragon: Ashen Tyrant", + "type": "adversary", + "_id": "pMuXGCSOQaxpi5tb", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "No enemy has ever had the insolence to wound the dragon so. As the lava settles, it’s ground to ash like the dragon’s past foes.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 18, + "hordeHp": 1, + "damageThresholds": { + "major": 29, + "severe": 55 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Claws and Teeth", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 10, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d12", + "bonus": 15, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "wOdWWjFaanbmRXYg": { + "name": "Hunt from Above", + "value": 5 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Choke, fly, intimidate, kill or be killed" + }, + "prototypeToken": { + "name": "Volcanic Dragon: Ashen Tyrant", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929252617, + "modifiedTime": 1753929642161, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!pMuXGCSOQaxpi5tb" +} diff --git a/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json b/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json new file mode 100644 index 00000000..2b718598 --- /dev/null +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Molten_Scourge_eArAPuB38CNR0ZIM.json @@ -0,0 +1,263 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Volcanic Dragon: Molten Scourge", + "type": "adversary", + "_id": "eArAPuB38CNR0ZIM", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "Enraged by their wounds, the dragon bursts into molten lava.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 20, + "hordeHp": 1, + "damageThresholds": { + "major": 30, + "severe": 58 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 7, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Lava-Coated Claws", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 9, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d12", + "bonus": 4, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "vHEB38ko8sY3S0ox": { + "name": "Hunt from Above", + "value": 5 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Douse with lava, incinerate, repel Invaders, reposition" + }, + "prototypeToken": { + "name": "Volcanic Dragon: Molten Scourge", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929160832, + "modifiedTime": 1753929626056, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!eArAPuB38CNR0ZIM" +} diff --git a/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json b/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json new file mode 100644 index 00000000..99be2158 --- /dev/null +++ b/src/packs/adversaries/adversary_Volcanic_Dragon__Obsidian_Predator_ladm7wykhZczYzrQ.json @@ -0,0 +1,263 @@ +{ + "folder": "7XHlANCPz18yvl5L", + "name": "Volcanic Dragon: Obsidian Predator", + "type": "adversary", + "_id": "ladm7wykhZczYzrQ", + "img": "icons/svg/mystery-man.svg", + "system": { + "description": "A massive winged creature with obsidian scales and impossibly sharp claws.
", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "tier": 4, + "type": "solo", + "notes": "", + "difficulty": 19, + "hordeHp": 1, + "damageThresholds": { + "major": 33, + "severe": 65 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "attack": { + "name": "Obsidian Claws", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "bAM5u66XszRmjaT8", + "systemPath": "attack", + "chatDisplay": false, + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "type": "attack", + "trait": null, + "difficulty": null, + "bonus": 8, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "dice": "d10", + "bonus": 4, + "multiplier": "flat", + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "physical" + ], + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "experiences": { + "f1s2ZDASAlkUVnYT": { + "name": "Hunt from Above", + "value": 5 + } + }, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "motivesAndTactics": "Defend lair, dive-bomb, fly, hunt, intimidate" + }, + "prototypeToken": { + "name": "Volcanic Dragon: Obsidian Predator", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "99pQVoplilbkZnOk": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753929001531, + "modifiedTime": 1753929613162, + "lastModifiedBy": "99pQVoplilbkZnOk" + }, + "_key": "!actors!ladm7wykhZczYzrQ" +} diff --git a/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json b/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json new file mode 100644 index 00000000..a3fd8259 --- /dev/null +++ b/src/packs/adversaries/adversary_War_Wizard_noDdT0tsN6FXSmC8.json @@ -0,0 +1,186 @@ +{ + "name": "War Wizard", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "OgzrmfH1ZbpljX7k", + "system": { + "difficulty": 16, + "damageThresholds": { + "major": 11, + "severe": 23 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 5, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Develop new spells, seek power, shatter formations", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 2, + "description": "A battle-hardened mage trained in destructive magic.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784373, + "modifiedTime": 1753922784373, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "noDdT0tsN6FXSmC8", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "War Wizard", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!noDdT0tsN6FXSmC8" +} diff --git a/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json b/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json new file mode 100644 index 00000000..8b76d7b1 --- /dev/null +++ b/src/packs/adversaries/adversary_Weaponmaster_ZNbQ2jg35LG4t9eH.json @@ -0,0 +1,185 @@ +{ + "name": "Weaponmaster", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 14, + "damageThresholds": { + "major": 8, + "severe": 15 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A master-at-arms wielding a sword twice their size.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784373, + "modifiedTime": 1753922784373, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ZNbQ2jg35LG4t9eH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Weaponmaster", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!ZNbQ2jg35LG4t9eH" +} diff --git a/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json b/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json new file mode 100644 index 00000000..5edd7306 --- /dev/null +++ b/src/packs/adversaries/adversary_Young_Dryad_8yUj2Mzvnifhxegm.json @@ -0,0 +1,185 @@ +{ + "name": "Young Dryad", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 11, + "damageThresholds": { + "major": 6, + "severe": 11 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 2, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "An imperious tree-person leading their forest’s defenses.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784374, + "modifiedTime": 1753922784374, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "8yUj2Mzvnifhxegm", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Young Dryad", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!8yUj2Mzvnifhxegm" +} diff --git a/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json b/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json new file mode 100644 index 00000000..96751244 --- /dev/null +++ b/src/packs/adversaries/adversary_Young_Ice_Dragon_UGPiPLJsPvMTSKEF.json @@ -0,0 +1,186 @@ +{ + "name": "Young Ice Dragon", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "wTI7nZkPhKxl7Wwq", + "system": { + "difficulty": 18, + "damageThresholds": { + "major": 21, + "severe": 41 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 10, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 6, + "isReversed": true + } + }, + "motivesAndTactics": "Avalanche, defend lair, fly, freeze, defend what is mine, maul", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 3, + "description": "A glacier-blue dragon with four powerful limbs and frost-tinged wings.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784374, + "modifiedTime": 1753922784374, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "UGPiPLJsPvMTSKEF", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Young Ice Dragon", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!UGPiPLJsPvMTSKEF" +} diff --git a/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json b/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json new file mode 100644 index 00000000..073d3a92 --- /dev/null +++ b/src/packs/adversaries/adversary_Zombie_Legion_YhJrP7rTBiRdX5Fp.json @@ -0,0 +1,185 @@ +{ + "name": "Zombie Legion", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "7XHlANCPz18yvl5L", + "system": { + "difficulty": 17, + "damageThresholds": { + "major": 25, + "severe": 45 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 8, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 5, + "isReversed": true + } + }, + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 4, + "description": "A large pack of undead, still powerful despite their rotting flesh.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784375, + "modifiedTime": 1753922784375, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YhJrP7rTBiRdX5Fp", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Zombie Legion", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YhJrP7rTBiRdX5Fp" +} diff --git a/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json b/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json new file mode 100644 index 00000000..c6eb37d6 --- /dev/null +++ b/src/packs/adversaries/adversary_Zombie_Pack_Nf0v43rtflV56V2T.json @@ -0,0 +1,186 @@ +{ + "name": "Zombie Pack", + "img": "icons/svg/mystery-man.svg", + "type": "adversary", + "folder": "sxvlEwi25uAoB2C5", + "system": { + "difficulty": 8, + "damageThresholds": { + "major": 6, + "severe": 12 + }, + "resources": { + "hitPoints": { + "value": 0, + "max": 6, + "isReversed": true + }, + "stress": { + "value": 0, + "max": 3, + "isReversed": true + } + }, + "motivesAndTactics": "Consume flesh, hunger, maul", + "resistance": { + "physical": { + "resistance": false, + "immunity": false, + "reduction": 0 + }, + "magical": { + "resistance": false, + "immunity": false, + "reduction": 0 + } + }, + "type": "standard", + "notes": "", + "hordeHp": 1, + "experiences": {}, + "bonuses": { + "roll": { + "attack": { + "bonus": 0, + "dice": [] + }, + "action": { + "bonus": 0, + "dice": [] + }, + "reaction": { + "bonus": 0, + "dice": [] + } + }, + "damage": { + "physical": { + "bonus": 0, + "dice": [] + }, + "magical": { + "bonus": 0, + "dice": [] + } + } + }, + "tier": 1, + "description": "A group of shambling corpses instinctively moving together.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784375, + "modifiedTime": 1753922784375, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "Nf0v43rtflV56V2T", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Zombie Pack", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!Nf0v43rtflV56V2T" +} diff --git a/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json new file mode 100644 index 00000000..fe060a41 --- /dev/null +++ b/src/packs/ancestries/ancestry_Clank_ed8BoLR4SHOpeV00.json @@ -0,0 +1,38 @@ +{ + "name": "Clank", + "img": "icons/creatures/magical/construct-golem-stone-blue.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Clanks are sentient mechanical beings built from a variety of materials, including metal, wood, and stone.
They can resemble humanoids, animals, or even inanimate objects. Like organic beings, their bodies come in a wide array of sizes. Because of their bespoke construction, many clanks have highly specialized physical configurations. Examples include clawed hands for grasping, wheels for movement, or built-in weaponry.
\nMany clanks embrace body modifications for style as well as function, and members of other ancestries often turn to clank artisans to construct customized mobility aids and physical adornments. Other ancestries can create clanks, even using their own physical characteristics as inspiration, but it’s also common for clanks to build one another. A clank’s lifespan extends as long as they’re able to acquire or craft new parts, making their physical form effectively immortal. That said, their minds are subject to the effects of time, and deteriorate as the magic that powers them loses potency.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.g6I4tRUQNgL4vZ6H" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.2xlqKOkDxWHbuj4t" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784381, + "modifiedTime": 1753993914940, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "ed8BoLR4SHOpeV00", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!ed8BoLR4SHOpeV00" +} diff --git a/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json new file mode 100644 index 00000000..a3861a40 --- /dev/null +++ b/src/packs/ancestries/ancestry_Drakona_VLeOEqkLS0RbF0tB.json @@ -0,0 +1,38 @@ +{ + "name": "Drakona", + "img": "icons/creatures/reptiles/dragon-horned-blue.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Drakona resemble wingless dragons in humanoid form and possess a powerful elemental breath.
All drakona have thick scales that provide excellent natural armor against both attacks and the forces of nature. They are large in size, ranging from 5 feet to 7 feet on average, with long sharp teeth. New teeth grow throughout a Drakona’s approximately 350-year lifespan, so they are never in danger of permanently losing an incisor. Unlike their dragon ancestors, drakona don’t have wings and can’t fly without magical aid. Members of this ancestry pass down the element of their breath through generations, though in rare cases, a drakona’s elemental power will differ from the rest of their family’s.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.u8ZhV962rNmUlzkp" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.sRaE3CgkgjBF1UpV" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784382, + "modifiedTime": 1753994173339, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "VLeOEqkLS0RbF0tB", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!VLeOEqkLS0RbF0tB" +} diff --git a/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json new file mode 100644 index 00000000..8bdd2113 --- /dev/null +++ b/src/packs/ancestries/ancestry_Dwarf_pDt6fI6otv2E2odf.json @@ -0,0 +1,38 @@ +{ + "name": "Dwarf", + "img": "icons/equipment/head/helm-norman-engraved.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Dwarves are most easily recognized as short humanoids with square frames, dense musculature, and thick hair.
Their average height ranges from 4 to 5 ½ feet, and they are often broad in proportion to their stature. Their skin and nails contain a high amount of keratin, making them naturally resilient. This allows dwarves to embed gemstones into their bodies and decorate themselves with tattoos or piercings. Their hair grows thickly—usually on their heads, but some dwarves have thick hair across their bodies as well. Dwarves of all genders can grow facial hair, which they often style in elaborate arrangements. Typically, dwarves live up to 250 years of age, maintaining their muscle mass well into later life.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.S0Ww7pYOSREt8qKg" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.0RN0baBxh95GT1cm" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784382, + "modifiedTime": 1753994478754, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "pDt6fI6otv2E2odf", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!pDt6fI6otv2E2odf" +} diff --git a/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json new file mode 100644 index 00000000..84792663 --- /dev/null +++ b/src/packs/ancestries/ancestry_Elf_q2l6g3Ssa04K84GO.json @@ -0,0 +1,38 @@ +{ + "name": "Elf", + "img": "icons/weapons/ammunition/arrows-fletching.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Elves are typically tall humanoids with pointed ears and acutely attuned senses.
Their ears vary in size and pointed shape, and as they age, the tips begin to droop. While elves come in a wide range of body types, they are all fairly tall, with heights ranging from about 6 to 6 ½ feet. All elves have the ability to drop into a celestial trance, rather than sleep. This allows them to rest effectively in a short amount of time.
\nSome elves possess what is known as a “mystic form,” which occurs when an elf has dedicated themself to the study or protection of the natural world so deeply that their physical form changes. These characteristics can include celestial freckles, the presence of leaves, vines, or flowers in their hair, eyes that flicker like fire, and more. Sometimes these traits are inherited from parents, but if an elf changes their environment or magical focus, their appearance changes over time. Because elves live for about 350 years, these traits can shift more than once throughout their lifespan.
<", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.0NSPSuB8KSEYTJIP" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.TfolXWFG2W2hx6sK" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784382, + "modifiedTime": 1753994623487, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "q2l6g3Ssa04K84GO", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!q2l6g3Ssa04K84GO" +} diff --git a/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json new file mode 100644 index 00000000..250444de --- /dev/null +++ b/src/packs/ancestries/ancestry_Faerie_XzJVbb5NT9k79ykR.json @@ -0,0 +1,38 @@ +{ + "name": "Faerie", + "img": "icons/magic/nature/leaf-drip-light-green.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Faeries are winged humanoid creatures with insectile features.
These characteristics cover a broad spectrum from humanoid to insectoid—some possess additional arms, compound eyes, lantern organs, chitinous exoskeletons, or stingers. Because of their close ties to the natural world, they also frequently possess attributes that allow them to blend in with various plants. The average height of a faerie ranges from about 2 feet to 5 feet, but some faeries grow up to 7 feet tall. All faeries possess membranous wings and they each go through a process of metamorphosis. The process and changes differ from faerie to faerie, but during this transformation each individual manifests the unique appearance they will carry throughout the rest of their approximately 50-year lifespan.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.U6iFjZgLYawlOlQZ" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.WquAjoOcso8lwySW" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784383, + "modifiedTime": 1753994865178, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "XzJVbb5NT9k79ykR", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!XzJVbb5NT9k79ykR" +} diff --git a/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json new file mode 100644 index 00000000..628f4a6a --- /dev/null +++ b/src/packs/ancestries/ancestry_Faun_HaYhe6WqoXW5EbRl.json @@ -0,0 +1,38 @@ +{ + "name": "Faun", + "img": "icons/magic/nature/leaf-flower-wreath-glow-green-blue.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Fauns resemble humanoid goats with curving horns, square pupils, and cloven hooves.
Though their appearances may vary, most fauns have a humanoid torso and a goatlike lower body covered in dense fur. Faun faces can be more caprine or more humanlike, and they have a wide variety of ear and horn shapes. Faun horns range from short with minimal curvature to much larger with a distinct curl. The average faun ranges from 4 feet to 6 ½ feet tall, but their height can change dramatically from one moment to the next based on their stance. The majority of fauns have proportionately long limbs, no matter their size or shape, and are known for their ability to deliver powerful blows with their split hooves. Fauns live for roughly 225 years, and as they age, their appearance can become increasingly goatlike.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.nLL2zuDDDbbyxlrQ" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.gpW19TfJk0WWFh1S" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784383, + "modifiedTime": 1753995403631, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "HaYhe6WqoXW5EbRl", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!HaYhe6WqoXW5EbRl" +} diff --git a/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json new file mode 100644 index 00000000..07cc9996 --- /dev/null +++ b/src/packs/ancestries/ancestry_Firbolg_hzKmydI8sR3uk4CO.json @@ -0,0 +1,38 @@ +{ + "name": "Firbolg", + "img": "icons/commodities/leather/fur-blue.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Firbolgs are bovine humanoids typically recognized by their broad noses and long, drooping ears.
Some have faces that are a blend of humanoid and bison, ox, cow, or other bovine creatures. Others, often referred to as minotaurs, have heads that entirely resemble cattle. They are tall and muscular creatures, with heights ranging from around 5 feet to 7 feet, and possess remarkable strength no matter their age. Some firbolgs are known to use this strength to charge their adversaries, an action that is particuarly effective for those who have one of the many varieties of horn styles commonly found in this ancestry. Though their unique characteristics can vary, all firbolgs are covered in fur, which can be muted and earth-toned in color, or come in a variety of pastels, such as soft pinks and blues. On average, firbolgs live for about 150 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.AA2CZlJSWW8GPhrR" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.G5pE8FW94V1W9jJx" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784384, + "modifiedTime": 1753995720164, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "hzKmydI8sR3uk4CO", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!hzKmydI8sR3uk4CO" +} diff --git a/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json new file mode 100644 index 00000000..06146d9c --- /dev/null +++ b/src/packs/ancestries/ancestry_Fungril_J1hX7nBBc5jQiHli.json @@ -0,0 +1,38 @@ +{ + "name": "Fungril", + "img": "icons/commodities/biological/suckers-green.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Fungril resemble humanoid mushrooms.
They can be either more humanoid or more fungal in appearance, and they come in an assortment of colors, from earth tones to bright reds, yellows, purples, and blues. Fungril display an incredible variety of bodies, faces, and limbs, as there’s no single common shape among them. Even their heights range from a tiny 2 feet tall to a staggering 7 feet tall. While the common lifespan of a fungril is about 300 years, some have been reported to live much longer. They can communicate nonverbally, and many members of this ancestry use a mycelial array to chemically exchange information with other fungril across long distances.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.9tmeXm623hl4Qnws" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.WuwXH2r2uM9sDJtj" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784385, + "modifiedTime": 1753996282858, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "J1hX7nBBc5jQiHli", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!J1hX7nBBc5jQiHli" +} diff --git a/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json new file mode 100644 index 00000000..5d6ca0ae --- /dev/null +++ b/src/packs/ancestries/ancestry_Galapa_eZNG5Iv0yfbHs5CO.json @@ -0,0 +1,38 @@ +{ + "name": "Galapa", + "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Galapa resemble anthropomorphic turtles with large, domed shells into which they can retract.
On average, they range from 4 feet to 6 feet in height, and their head and body shapes can resemble any type of turtle. Galapa come in a variety of earth tones—most often shades of green and brown— and possess unique patterns on their shells. Members of this ancestry can draw their head, arms, and legs into their shell for protection to use it as a natural shield when defensive measures are needed. Some supplement their shell's strength or appearance by attaching armor or carving unique designs, but the process is exceedingly painful. Most galapa move slowly no matter their age, and they can live approximately 150 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.A6a87OWA3tx16g9V" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.UFR67BUOhNGLFyg9" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784385, + "modifiedTime": 1753996656622, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "eZNG5Iv0yfbHs5CO", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!eZNG5Iv0yfbHs5CO" +} diff --git a/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json new file mode 100644 index 00000000..02b3fa63 --- /dev/null +++ b/src/packs/ancestries/ancestry_Giant_3U8CncG92a7ERIJ0.json @@ -0,0 +1,38 @@ +{ + "name": "Giant", + "img": "icons/creatures/magical/construct-iron-stomping-yellow.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Giants are towering humanoids with broad shoulders, long arms, and one to three eyes.
Adult giants range from 6 ½ to 8 ½ feet tall and are naturally muscular, regardless of body type. They are easily recognized by their wide frames and elongated arms and necks. Though they can have up to three eyes, all giants are born with none and remain sightless for their first year of life. Until a giant reaches the age of 10 and their features fully develop, the formation of their eyes may fluctuate. Those with a single eye are commonly known as cyclops. The average giant lifespan is about 75 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.tXWEMdLXafUSZTbK" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.WRs2jvwM0STmkWIW" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784386, + "modifiedTime": 1753996849286, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "3U8CncG92a7ERIJ0", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!3U8CncG92a7ERIJ0" +} diff --git a/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json new file mode 100644 index 00000000..0e1fb16e --- /dev/null +++ b/src/packs/ancestries/ancestry_Goblin_EKPEdIz9lA9grPqH.json @@ -0,0 +1,38 @@ +{ + "name": "Goblin", + "img": "icons/magic/symbols/arrowhead-green.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Goblins are small humanoids easily recognizable by their large eyes and massive membranous ears.
With keen hearing and sharp eyesight, they perceive details both at great distances and in darkness, allowing them to move through less-optimal environments with ease. Their skin and eye colors are incredibly varied, with no one hue, either vibrant or subdued, more dominant than another. A typical goblin stands between 3 feet and 4 feet tall, and each of their ears is about the size of their head. Goblins are known to use ear positions to very specific effect when communicating nonverbally. A goblin’s lifespan is roughly 100 years, and many maintain their keen hearing and sight well into advanced age.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.YsJticxv8OFndd4D" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.AXqcoxnRoWBbbKpK" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784386, + "modifiedTime": 1753997126174, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "EKPEdIz9lA9grPqH", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!EKPEdIz9lA9grPqH" +} diff --git a/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json new file mode 100644 index 00000000..ea37196d --- /dev/null +++ b/src/packs/ancestries/ancestry_Halfling_CtL2jDjvPOJxNJKm.json @@ -0,0 +1,38 @@ +{ + "name": "Halfling", + "img": "icons/tools/navigation/compass-brass-blue-red.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Halflings are small humanoids with large hairy feet and prominent rounded ears.
On average, halflings are 3 to 4 feet in height, and their ears, nose, and feet are larger in proportion to the rest of their body. Members of this ancestry live for around 150 years, and a halfling’s appearance is likely to remain youthful even as they progress from adulthood into old age. Halflings are naturally attuned to the magnetic fields of the Mortal Realm, granting them a strong internal compass. They also possess acute senses of hearing and smell, and can often detect those who are familiar to them by the sound of their movements.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.8O6SQQMxKWr430QA" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.e2Cu6exxtvfQzc1e" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784387, + "modifiedTime": 1753997257661, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "CtL2jDjvPOJxNJKm", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!CtL2jDjvPOJxNJKm" +} diff --git a/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json new file mode 100644 index 00000000..58310832 --- /dev/null +++ b/src/packs/ancestries/ancestry_Human_wtJ5V5qRppLQn61n.json @@ -0,0 +1,38 @@ +{ + "name": "Human", + "img": "icons/skills/social/diplomacy-handshake-yellow.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Humans are most easily recognized by their dexterous hands, rounded ears, and bodies built for endurance.
Their average height ranges from just under 5 feet to about 6 ½ feet. They have a wide variety of builds, with some being quite broad, others lithe, and many inhabiting the spectrum in between. Humans are physically adaptable and adjust to harsh climates with relative ease. In general, humans live to an age of about 100, with their bodies changing dramatically between their youngest and oldest years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.HMXNJZ7ynzajR2KT" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.BNofV1UC4ZbdFTkb" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784388, + "modifiedTime": 1753997481487, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "wtJ5V5qRppLQn61n", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!wtJ5V5qRppLQn61n" +} diff --git a/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json new file mode 100644 index 00000000..67e95734 --- /dev/null +++ b/src/packs/ancestries/ancestry_Infernis_hyxcuF2I0xcZSGkm.json @@ -0,0 +1,38 @@ +{ + "name": "Infernis", + "img": "icons/creatures/unholy/demon-female-succubus-orange.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Infernis are humanoids who possess sharp canine teeth, pointed ears, and horns. They are the descendants of demons from the Circles Below.
On average, infernis range in height from 5 feet to 7 feet and are known to have long fingers and pointed nails. Some have long, thin, and smooth tails that end in points, forks, or arrowheads. It’s common for infernis to have two or four horns—though some have crowns of many horns, or only one. These horns can also grow asymmetrically, forming unique, often curving, shapes that infernis enhance with carving and ornamentation. Their skin, hair, and horns come in an assortment of colors that can include soft pastels, stark tones, or vibrant hues, such as rosy scarlet, deep purple, and pitch black.
\nInfernis possess a “dread visage” that manifests both involuntarily, such as when they experience fear or other strong emotions, or purposefully, such as when they wish to intimidate an adversary. This visage can briefly modify their appearance in a variety of ways, including lengthening their teeth and nails, changing the colors of their eyes, twisting their horns, or enhancing their height. On average, infernis live up to 350 years, with some attributing this lifespan to their demonic lineage.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.IlWvn5kCqCBMuUJn" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.i92lYjDhVB0LyPid" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784388, + "modifiedTime": 1754000194006, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "hyxcuF2I0xcZSGkm", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!hyxcuF2I0xcZSGkm" +} diff --git a/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json new file mode 100644 index 00000000..f3997143 --- /dev/null +++ b/src/packs/ancestries/ancestry_Katari_yyW0UM8srD9WuwW7.json @@ -0,0 +1,38 @@ +{ + "name": "Katari", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Katari are feline humanoids with retractable claws, vertically slit pupils, and high, triangular ears.
They can also have small, pointed canine teeth, soft fur, and long whiskers that assist their perception and navigation. Their ears can swivel nearly 180 degrees to detect sound, adding to their heightened senses. Katari may look more or less feline or humanoid, with catlike attributes in the form of hair, whiskers, and a muzzle. About half of the katari population have tails. Their skin and fur come in a wide range of hues and patterns, including solid colors, calico tones, tabby stripes, and an array of spots, patches, marbling, or bands. Their height ranges from about 3 feet to 6 ½ feet, and they live to around 150 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.lNgbbYnCKgrdvA85" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.Zj69cAeb3NjIa8Hn" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784388, + "modifiedTime": 1754000474970, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "yyW0UM8srD9WuwW7", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!yyW0UM8srD9WuwW7" +} diff --git a/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json new file mode 100644 index 00000000..0075cf94 --- /dev/null +++ b/src/packs/ancestries/ancestry_Orc_D1RbUsRV9HpTrPuF.json @@ -0,0 +1,38 @@ +{ + "name": "Orc", + "img": "icons/commodities/bones/horn-drinking-white.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Orcs are humanoids most easily recognized by their square features and boar-like tusks that protrude from their lower jaw.
Tusks come in various sizes, and though they extend from the mouth, they aren’t used for consuming food. Instead, many orcs choose to decorate their tusks with significant ornamentation. Orcs typically live for 125 years, and unless altered, their tusks continue to grow throughout the course of their lives. Their ears are pointed, and their hair and skin typically have green, blue, pink, or gray tones. Orcs tend toward a muscular build, and their average height ranges from 5 feet to 6 ½ feet.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.60o3cKUZzxO9EDQF" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.YhxD1ujZpftPu19w" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784389, + "modifiedTime": 1754000737849, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "D1RbUsRV9HpTrPuF", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!D1RbUsRV9HpTrPuF" +} diff --git a/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json new file mode 100644 index 00000000..5624ba77 --- /dev/null +++ b/src/packs/ancestries/ancestry_Ribbet_HwOoBKXOL9Tf5j85.json @@ -0,0 +1,38 @@ +{ + "name": "Ribbet", + "img": "icons/creatures/amphibians/bullfrog-glass-teal.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Ribbets resemble anthropomorphic frogs with protruding eyes and webbed hands and feet.
They have smooth (though sometimes warty) moist skin and eyes positioned on either side of their head. Some ribbets have hind legs more than twice the length of their torso, while others have short limbs. No matter their size (which ranges from about 3 feet to 4 ½ feet), ribbets primarily move by hopping. All ribbets have webbed appendages, allowing them to swim with ease. Some ribbets possess a natural green-and-brown camouflage, while others are vibrantly colored with bold patterns. No matter their appearance, all ribbets are born from eggs laid in the water, hatch into tadpoles, and after about 6 to 7 years, grow into amphibians that can move around on land. Ribbets live for approximately 100 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.GVhmLouGq9GWCsN8" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.oWbdlh51ajn1Q5kL" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784389, + "modifiedTime": 1754000881040, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "HwOoBKXOL9Tf5j85", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!HwOoBKXOL9Tf5j85" +} diff --git a/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json new file mode 100644 index 00000000..d09abcdd --- /dev/null +++ b/src/packs/ancestries/ancestry_Simiah_2yMLxxn7CHEvmShj.json @@ -0,0 +1,38 @@ +{ + "name": "Simiah", + "img": "icons/magic/nature/tree-bare-glow-yellow.webp", + "type": "ancestry", + "folder": null, + "system": { + "description": "Simiah resemble anthropomorphic monkeys and apes with long limbs and prehensile feet.
While their appearance reflects all simian creatures, from the largest gorilla to the smallest marmoset, their size does not align with their animal counterparts, and they can be anywhere from 2 to 6 feet tall. All simiah can use their dexterous feet for nonverbal communication, work, and combat. Additionally, some also have prehensile tails that can grasp objects or help with balance during difficult maneuvers. These traits grant members of this ancestry unique agility that aids them in a variety of physical tasks. In particular, simiah are skilled climbers and can easily transition from bipedal movement to knuckle-walking and climbing, and back again. On average, simiah live for about 100 years.
", + "features": [ + { + "type": "primary", + "item": "Compendium.daggerheart.ancestries.Item.soQvPL0MrTLLcc31" + }, + { + "type": "secondary", + "item": "Compendium.daggerheart.ancestries.Item.3lNqft3LmOlEIEkw" + } + ] + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784390, + "modifiedTime": 1754001185010, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_id": "2yMLxxn7CHEvmShj", + "sort": 3400000, + "effects": [], + "ownership": { + "default": 0 + }, + "_key": "!items!2yMLxxn7CHEvmShj" +} diff --git a/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json b/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json new file mode 100644 index 00000000..74d0396e --- /dev/null +++ b/src/packs/ancestries/feature_Adaptability_BNofV1UC4ZbdFTkb.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Adaptability", + "type": "feature", + "_id": "BNofV1UC4ZbdFTkb", + "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "system": { + "description": "When you fail a roll that utilized one of your Experiences, you can mark a Stress to reroll.
", + "resource": null, + "actions": { + "D7EE2L2Y96nfrfTW": { + "type": "effect", + "_id": "D7EE2L2Y96nfrfTW", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/control/silhouette-hold-change-blue.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997402776, + "modifiedTime": 1753997472141, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!BNofV1UC4ZbdFTkb" +} diff --git a/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json b/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json new file mode 100644 index 00000000..fbc8de74 --- /dev/null +++ b/src/packs/ancestries/feature_Amphibious_GVhmLouGq9GWCsN8.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Amphibious", + "type": "feature", + "_id": "GVhmLouGq9GWCsN8", + "img": "icons/magic/water/bubbles-air-water-light.webp", + "system": { + "description": "You can breathe and move naturally underwater.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000764274, + "modifiedTime": 1754000778312, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!GVhmLouGq9GWCsN8" +} diff --git a/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json b/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json new file mode 100644 index 00000000..db455164 --- /dev/null +++ b/src/packs/ancestries/feature_Caprine_Leap_nLL2zuDDDbbyxlrQ.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Caprine Leap", + "type": "feature", + "_id": "nLL2zuDDDbbyxlrQ", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "system": { + "description": "You can leap anywhere within Close range as though you were using normal movement, allowing you to vault obstacles, jump across gaps, or scale barriers with ease.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995211408, + "modifiedTime": 1753995232467, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!nLL2zuDDDbbyxlrQ" +} diff --git a/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json b/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json new file mode 100644 index 00000000..e9a240ef --- /dev/null +++ b/src/packs/ancestries/feature_Celestial_Trance_TfolXWFG2W2hx6sK.json @@ -0,0 +1,92 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Celestial Trance", + "type": "feature", + "_id": "TfolXWFG2W2hx6sK", + "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", + "system": { + "description": "During a rest, you can drop into a trance to choose an additional downtime move.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Celestial Trance", + "type": "base", + "_id": "LqQvZJJLNMnFkt1D", + "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.rest.shortRest.shortMoves", + "mode": 2, + "value": "1", + "priority": null + }, + { + "key": "system.bonuses.rest.longRest.longMoves", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "", + "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": 1753994586602, + "modifiedTime": 1753994613702, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!TfolXWFG2W2hx6sK.LqQvZJJLNMnFkt1D" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994570602, + "modifiedTime": 1753994583518, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!TfolXWFG2W2hx6sK" +} diff --git a/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json b/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json new file mode 100644 index 00000000..319086a4 --- /dev/null +++ b/src/packs/ancestries/feature_Charge_AA2CZlJSWW8GPhrR.json @@ -0,0 +1,96 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Charge", + "type": "feature", + "_id": "AA2CZlJSWW8GPhrR", + "img": "icons/magic/movement/trail-streak-impact-blue.webp", + "system": { + "description": "When you succeed on an Agility Roll to move from Far or Very Far range into Melee range with one or more targets, you can mark a Stress to deal 1d12 physical damage to all targets within Melee range.
", + "resource": null, + "actions": { + "KLg0T6I1w24sfIbH": { + "type": "damage", + "_id": "KLg0T6I1w24sfIbH", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d12", + "bonus": null + }, + "applyTo": "hitPoints", + "type": [ + "magical" + ], + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "name": "Damage", + "img": "icons/magic/movement/trail-streak-impact-blue.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995559143, + "modifiedTime": 1753995629206, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!AA2CZlJSWW8GPhrR" +} diff --git a/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json b/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json new file mode 100644 index 00000000..a9dd34f4 --- /dev/null +++ b/src/packs/ancestries/feature_Danger_Sense_AXqcoxnRoWBbbKpK.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Danger Sense", + "type": "feature", + "_id": "AXqcoxnRoWBbbKpK", + "img": "icons/magic/perception/orb-eye-scrying.webp", + "system": { + "description": "Once per rest, mark a Stress to force an adversary to reroll an attack against you or an ally within Very Close range.
", + "resource": null, + "actions": { + "V2K3pMWOCVwBUnjq": { + "type": "effect", + "_id": "V2K3pMWOCVwBUnjq", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "friendly", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/perception/orb-eye-scrying.webp", + "range": "veryClose" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997061290, + "modifiedTime": 1753997114091, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!AXqcoxnRoWBbbKpK" +} diff --git a/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json b/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json new file mode 100644 index 00000000..cc2ba641 --- /dev/null +++ b/src/packs/ancestries/feature_Death_Connection_WuwXH2r2uM9sDJtj.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Death Connection", + "type": "feature", + "_id": "WuwXH2r2uM9sDJtj", + "img": "icons/magic/death/hand-undead-skeleton-fire-green.webp", + "system": { + "description": "While touching a corpse that died recently, you can mark a Stress to extract one memory from the corpse related to a specific emotion or sensation of your choice.
", + "resource": null, + "actions": { + "0RdKeWfbPRTHcAMf": { + "type": "effect", + "_id": "0RdKeWfbPRTHcAMf", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Extract", + "img": "icons/magic/death/hand-undead-skeleton-fire-green.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996213198, + "modifiedTime": 1753996272048, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!WuwXH2r2uM9sDJtj" +} diff --git a/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json b/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json new file mode 100644 index 00000000..23adb822 --- /dev/null +++ b/src/packs/ancestries/feature_Dread_Visage_i92lYjDhVB0LyPid.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Dread Visage", + "type": "feature", + "_id": "i92lYjDhVB0LyPid", + "img": "icons/magic/control/fear-fright-monster-red.webp", + "system": { + "description": "You have advantage on rolls to intimidate hostile creatures.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Dread Visage", + "type": "base", + "_id": "2Gd6iHQX521aAZqC", + "img": "icons/magic/control/fear-fright-monster-red.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.advantageSources", + "mode": 2, + "value": "Rolls to intimidate hostile creatures", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You have advantage on rolls to intimidate hostile creatures
", + "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": 1754000031619, + "modifiedTime": 1754000179466, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!i92lYjDhVB0LyPid.2Gd6iHQX521aAZqC" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753999985847, + "modifiedTime": 1754000026405, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!i92lYjDhVB0LyPid" +} diff --git a/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json b/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json new file mode 100644 index 00000000..5d946a88 --- /dev/null +++ b/src/packs/ancestries/feature_Efficient_2xlqKOkDxWHbuj4t.json @@ -0,0 +1,92 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Efficient", + "type": "feature", + "_id": "2xlqKOkDxWHbuj4t", + "img": "icons/magic/time/clock-stopwatch-white-blue.webp", + "system": { + "description": "When you take a short rest, you can choose a long rest move instead of a short rest move.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Efficient", + "type": "base", + "_id": "EEryWN2nE33ppGHi", + "img": "icons/magic/time/clock-stopwatch-white-blue.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.rest.shortRest.longMoves", + "mode": 2, + "value": "1", + "priority": null + }, + { + "key": "system.bonuses.rest.shortRest.shortMoves", + "mode": 2, + "value": "-1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When you take a short rest, you can choose a long rest move instead of a short rest move.
", + "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": 1753993852553, + "modifiedTime": 1753993889097, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!2xlqKOkDxWHbuj4t.EEryWN2nE33ppGHi" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993806761, + "modifiedTime": 1753993849345, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!2xlqKOkDxWHbuj4t" +} diff --git a/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json b/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json new file mode 100644 index 00000000..ccd0f87e --- /dev/null +++ b/src/packs/ancestries/feature_Elemental_Breath_sRaE3CgkgjBF1UpV.json @@ -0,0 +1,106 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Elemental Breath", + "type": "feature", + "_id": "sRaE3CgkgjBF1UpV", + "img": "icons/creatures/abilities/dragon-fire-breath-orange.webp", + "system": { + "description": "Choose an element for your breath (such as electricity, fire, or ice). You can use this breath against a target or group of targets within Very Close range, treating it as an Instinct weapon that deals d8 magic damage using your Proficiency.
", + "resource": null, + "actions": { + "a6WROv0OKx0lbYVa": { + "type": "attack", + "_id": "a6WROv0OKx0lbYVa", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "attack", + "trait": "instinct", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Attack", + "img": "icons/creatures/abilities/dragon-fire-breath-orange.webp", + "range": "veryClose" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994055921, + "modifiedTime": 1753994120065, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!sRaE3CgkgjBF1UpV" +} diff --git a/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json b/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json new file mode 100644 index 00000000..ec1b1c01 --- /dev/null +++ b/src/packs/ancestries/feature_Endurance_tXWEMdLXafUSZTbK.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Endurance", + "type": "feature", + "_id": "tXWEMdLXafUSZTbK", + "img": "icons/magic/control/buff-strength-muscle-damage.webp", + "system": { + "description": "Gain an additional Hit Point slot at character creation.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "db8W2Q0Qty84XV0x", + "img": "icons/magic/control/buff-strength-muscle-damage.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resources.hitPoints.value", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain an additional Hit Point slot at character creation.
", + "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": 1753996768847, + "modifiedTime": 1753999765864, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!tXWEMdLXafUSZTbK.db8W2Q0Qty84XV0x" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996738047, + "modifiedTime": 1753996763700, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!tXWEMdLXafUSZTbK" +} diff --git a/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json b/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json new file mode 100644 index 00000000..bb8d790c --- /dev/null +++ b/src/packs/ancestries/feature_Fearless_IlWvn5kCqCBMuUJn.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Fearless", + "type": "feature", + "_id": "IlWvn5kCqCBMuUJn", + "img": "icons/magic/light/orb-container-orange.webp", + "system": { + "description": "When you roll with Fear, you can mark 2 Stress to change it into a roll with Hope instead.
", + "resource": null, + "actions": { + "G1H7k5RdvS1EJgFu": { + "type": "effect", + "_id": "G1H7k5RdvS1EJgFu", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 2, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "self", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/light/orb-container-orange.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753999842518, + "modifiedTime": 1753999969945, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!IlWvn5kCqCBMuUJn" +} diff --git a/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json b/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json new file mode 100644 index 00000000..c0547372 --- /dev/null +++ b/src/packs/ancestries/feature_Feline_Instincts_lNgbbYnCKgrdvA85.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Feline Instincts", + "type": "feature", + "_id": "lNgbbYnCKgrdvA85", + "img": "icons/magic/perception/eye-slit-orange.webp", + "system": { + "description": "When you make an Agility Roll, you can spend 2 Hope to reroll your Hope Die.
", + "resource": null, + "actions": { + "ALsGHOy0q5THGxz5": { + "type": "effect", + "_id": "ALsGHOy0q5THGxz5", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "hope", + "value": 2, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Spend Hope", + "img": "icons/magic/perception/eye-slit-orange.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000245487, + "modifiedTime": 1754000291789, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!lNgbbYnCKgrdvA85" +} diff --git a/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json b/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json new file mode 100644 index 00000000..60a74cf4 --- /dev/null +++ b/src/packs/ancestries/feature_Fungril_Network_9tmeXm623hl4Qnws.json @@ -0,0 +1,81 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Fungril Network", + "type": "feature", + "_id": "9tmeXm623hl4Qnws", + "img": "icons/commodities/biological/suckers-green.webp", + "system": { + "description": "Make an Instinct Roll (12) to use your mycelial array to speak with others of your ancestry. On a success, you can communicate across any distance.
", + "resource": null, + "actions": { + "ZYfigAyUdDUteczO": { + "type": "attack", + "_id": "ZYfigAyUdDUteczO", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "trait", + "trait": "instinct", + "difficulty": 12, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Communicate", + "img": "icons/magic/sonic/explosion-impact-shock-wave.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996087513, + "modifiedTime": 1753996189704, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!9tmeXm623hl4Qnws" +} diff --git a/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json b/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json new file mode 100644 index 00000000..434f9138 --- /dev/null +++ b/src/packs/ancestries/feature_High_Stamina_HMXNJZ7ynzajR2KT.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "High Stamina", + "type": "feature", + "_id": "HMXNJZ7ynzajR2KT", + "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", + "system": { + "description": "Gain an additional Stress slot at character creation.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "High Stamina", + "type": "base", + "_id": "Xl3TsKUJcl6vi1ly", + "img": "icons/magic/control/buff-flight-wings-runes-purple-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resources.stress.value", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain an additional Stress slot at character creation.
", + "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": 1753997348303, + "modifiedTime": 1753999779490, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!HMXNJZ7ynzajR2KT.Xl3TsKUJcl6vi1ly" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997324366, + "modifiedTime": 1753997344417, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!HMXNJZ7ynzajR2KT" +} diff --git a/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json b/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json new file mode 100644 index 00000000..34de2d91 --- /dev/null +++ b/src/packs/ancestries/feature_Increased_Fortitude_0RN0baBxh95GT1cm.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Increased Fortitude", + "type": "feature", + "_id": "0RN0baBxh95GT1cm", + "img": "icons/magic/control/buff-strength-muscle-damage-red.webp", + "system": { + "description": "Spend 3 Hope to halve incoming physical damage.
", + "resource": null, + "actions": { + "pFPbjyexOPx5gog6": { + "type": "effect", + "_id": "pFPbjyexOPx5gog6", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "hope", + "value": 3, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Spend Hope", + "img": "icons/magic/control/buff-strength-muscle-damage-red.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994395837, + "modifiedTime": 1753994468110, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!0RN0baBxh95GT1cm" +} diff --git a/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json b/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json new file mode 100644 index 00000000..00645109 --- /dev/null +++ b/src/packs/ancestries/feature_Internal_Compass_e2Cu6exxtvfQzc1e.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Internal Compass", + "type": "feature", + "_id": "e2Cu6exxtvfQzc1e", + "img": "icons/tools/navigation/compass-worn-copper.webp", + "system": { + "description": "When you roll a 1 on your Hope Die, you can reroll it.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997233606, + "modifiedTime": 1753997248375, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!e2Cu6exxtvfQzc1e" +} diff --git a/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json b/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json new file mode 100644 index 00000000..f9233e32 --- /dev/null +++ b/src/packs/ancestries/feature_Kick_gpW19TfJk0WWFh1S.json @@ -0,0 +1,87 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Kick", + "type": "feature", + "_id": "gpW19TfJk0WWFh1S", + "img": "icons/skills/melee/shield-damaged-broken-gold.webp", + "system": { + "description": "When you succeed on an attack against a target within Melee range, you can mark a Stress to kick yourself off them, dealing an extra 2d6 damage and knocking back either yourself or the target to Very Close range.
", + "resource": null, + "actions": { + "bXbQ57CB1Hfj5XrS": { + "type": "damage", + "_id": "bXbQ57CB1Hfj5XrS", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "2d6" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "name": "Damage", + "img": "icons/skills/melee/shield-damaged-broken-gold.webp", + "range": "melee" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995249173, + "modifiedTime": 1753995396728, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!gpW19TfJk0WWFh1S" +} diff --git a/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json b/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json new file mode 100644 index 00000000..4c8cfc30 --- /dev/null +++ b/src/packs/ancestries/feature_Long_Tongue_oWbdlh51ajn1Q5kL.json @@ -0,0 +1,114 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Long Tongue", + "type": "feature", + "_id": "oWbdlh51ajn1Q5kL", + "img": "icons/commodities/biological/tongue-violet.webp", + "system": { + "description": "You can use your long tongue to grab onto things within Close range. Mark a Stress to use your tongue as a Finesse Close weapon that deals d12 physical damage using your Proficiency.
", + "resource": null, + "actions": { + "MhAWv7tuvkfOf7wQ": { + "type": "attack", + "_id": "MhAWv7tuvkfOf7wQ", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d12", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "attack", + "trait": "finesse", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Attack", + "img": "icons/commodities/biological/tongue-violet.webp", + "range": "close" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000791839, + "modifiedTime": 1754000854253, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!oWbdlh51ajn1Q5kL" +} diff --git a/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json b/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json new file mode 100644 index 00000000..3319eee8 --- /dev/null +++ b/src/packs/ancestries/feature_Luckbender_U6iFjZgLYawlOlQZ.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Luckbender", + "type": "feature", + "_id": "U6iFjZgLYawlOlQZ", + "img": "icons/magic/control/buff-luck-fortune-green-gold.webp", + "system": { + "description": "Once per session, after you or a willing ally within Close range makes an action roll, you can spend 3 Hope to reroll the Duality Dice.
", + "resource": null, + "actions": { + "l1wUmqMzG8YF9sqb": { + "type": "effect", + "_id": "l1wUmqMzG8YF9sqb", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "hope", + "value": 3, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "friendly", + "amount": null + }, + "name": "Use", + "img": "icons/magic/control/buff-luck-fortune-green-gold.webp", + "range": "close" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994658436, + "modifiedTime": 1753994711690, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!U6iFjZgLYawlOlQZ" +} diff --git a/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json b/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json new file mode 100644 index 00000000..01de5030 --- /dev/null +++ b/src/packs/ancestries/feature_Luckbringer_8O6SQQMxKWr430QA.json @@ -0,0 +1,102 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Luckbringer", + "type": "feature", + "_id": "8O6SQQMxKWr430QA", + "img": "icons/magic/life/heart-hand-gold-green.webp", + "system": { + "description": "At the start of each session, everyone in your party gains a Hope.
", + "resource": null, + "actions": { + "8sK3t73bFkpb999C": { + "type": "healing", + "_id": "8sK3t73bFkpb999C", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "1", + "recovery": "session" + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "1" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hope", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "friendly", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Gain Hope", + "img": "icons/magic/life/heart-hand-gold-green.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997164653, + "modifiedTime": 1753997217376, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!8O6SQQMxKWr430QA" +} diff --git a/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json b/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json new file mode 100644 index 00000000..9f36411f --- /dev/null +++ b/src/packs/ancestries/feature_Natural_Climber_soQvPL0MrTLLcc31.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Natural Climber", + "type": "feature", + "_id": "soQvPL0MrTLLcc31", + "img": "icons/magic/nature/root-vine-barrier-wall-brown.webp", + "system": { + "description": "You have advantage on Agility Rolls that involve balancing and climbing.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Natural Climber", + "type": "base", + "_id": "HQeQH9gUfrjlWWcg", + "img": "icons/magic/nature/root-vine-barrier-wall-brown.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.advantageSources", + "mode": 2, + "value": "Agility Rolls that involve balancing and climbing", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You have advantage on Agility Rolls that involve balancing and climbing.
", + "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": 1754001083828, + "modifiedTime": 1754001113548, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!soQvPL0MrTLLcc31.HQeQH9gUfrjlWWcg" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754001064223, + "modifiedTime": 1754001078029, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!soQvPL0MrTLLcc31" +} diff --git a/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json b/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json new file mode 100644 index 00000000..d3539a9f --- /dev/null +++ b/src/packs/ancestries/feature_Nimble_3lNqft3LmOlEIEkw.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Nimble", + "type": "feature", + "_id": "3lNqft3LmOlEIEkw", + "img": "icons/skills/movement/arrows-up-trio-red.webp", + "system": { + "description": "Gain a permanent +1 bonus to your Evasion at character creation.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Nimble", + "type": "base", + "_id": "zaxVYqKzUYDJ3SDq", + "img": "icons/skills/movement/arrows-up-trio-red.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain a permanent +1 bonus to your Evasion at character creation.
", + "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": 1754001151008, + "modifiedTime": 1754001176435, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!3lNqft3LmOlEIEkw.zaxVYqKzUYDJ3SDq" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754001125989, + "modifiedTime": 1754001147782, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!3lNqft3LmOlEIEkw" +} diff --git a/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json b/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json new file mode 100644 index 00000000..d805e240 --- /dev/null +++ b/src/packs/ancestries/feature_Purposeful_Design_g6I4tRUQNgL4vZ6H.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Purposeful Design", + "type": "feature", + "_id": "g6I4tRUQNgL4vZ6H", + "img": "icons/tools/scribal/lens-blue.webp", + "system": { + "description": "Decide who made you and for what purpose. At character creation, choose one of your Experiences that best aligns with this purpose and gain a permanent +1 bonus to it.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993755899, + "modifiedTime": 1753993791943, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!g6I4tRUQNgL4vZ6H" +} diff --git a/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json b/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json new file mode 100644 index 00000000..87c6ec96 --- /dev/null +++ b/src/packs/ancestries/feature_Quick_Reactions_0NSPSuB8KSEYTJIP.json @@ -0,0 +1,65 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Quick Reactions", + "type": "feature", + "_id": "0NSPSuB8KSEYTJIP", + "img": "icons/skills/movement/feet-winged-boots-brown.webp", + "system": { + "description": "Mark a Stress to gain advantage on a reaction roll.
", + "resource": null, + "actions": { + "6Av1Y8JXWDkteLhc": { + "type": "effect", + "_id": "6Av1Y8JXWDkteLhc", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/skills/movement/feet-winged-boots-brown.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994522468, + "modifiedTime": 1753994554455, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!0NSPSuB8KSEYTJIP" +} diff --git a/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json b/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json new file mode 100644 index 00000000..b6c974d0 --- /dev/null +++ b/src/packs/ancestries/feature_Reach_WRs2jvwM0STmkWIW.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Reach", + "type": "feature", + "_id": "WRs2jvwM0STmkWIW", + "img": "icons/weapons/staves/staff-simple.webp", + "system": { + "description": "Treat any weapon, ability, spell, or other feature that has a Melee range as though it has a Very Close range instead.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996802591, + "modifiedTime": 1753996830453, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!WRs2jvwM0STmkWIW" +} diff --git a/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json b/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json new file mode 100644 index 00000000..356f9283 --- /dev/null +++ b/src/packs/ancestries/feature_Retract_UFR67BUOhNGLFyg9.json @@ -0,0 +1,115 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Retract", + "type": "feature", + "_id": "UFR67BUOhNGLFyg9", + "img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp", + "system": { + "description": "Mark a Stress to retract into your shell. While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.
", + "resource": null, + "actions": { + "HfiAg14hrYt7Yvnj": { + "type": "effect", + "_id": "HfiAg14hrYt7Yvnj", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "KoHQg8KurugHlga0", + "img": "icons/magic/defensive/shield-barrier-flaming-diamond-teal.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.resistance.physical.resistance", + "mode": 5, + "value": "1", + "priority": null + }, + { + "key": "system.disadvantageSources", + "mode": 2, + "value": "Action Rolls", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "While in your shell, you have resistance to physical damage, you have disadvantage on action rolls, and you can’t move.
", + "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": 1753996568678, + "modifiedTime": 1753996633306, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!UFR67BUOhNGLFyg9.KoHQg8KurugHlga0" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996513763, + "modifiedTime": 1753996553192, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!UFR67BUOhNGLFyg9" +} diff --git a/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json b/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json new file mode 100644 index 00000000..01e909bb --- /dev/null +++ b/src/packs/ancestries/feature_Retracting_Claws_Zj69cAeb3NjIa8Hn.json @@ -0,0 +1,133 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Retracting Claws", + "type": "feature", + "_id": "Zj69cAeb3NjIa8Hn", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "system": { + "description": "Make an Agility Roll to scratch a target within Melee range. On a success, they become temporarily Vulnerable.
", + "resource": null, + "actions": { + "LcFhDb3sJk8sraAc": { + "type": "attack", + "_id": "LcFhDb3sJk8sraAc", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [ + { + "_id": "pO76svFkmWmZ6LjC", + "onSave": false + } + ], + "roll": { + "type": "attack", + "trait": "agility", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Scratch", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "range": "melee" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Retractable Claws", + "img": "icons/creatures/claws/claw-straight-orange.webp", + "origin": "Compendium.daggerheart.ancestries.Item.Zj69cAeb3NjIa8Hn", + "transfer": false, + "_id": "pO76svFkmWmZ6LjC", + "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": "", + "tint": "#ffffff", + "statuses": [ + "vulnerable" + ], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000434939, + "modifiedTime": 1754000461912, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!Zj69cAeb3NjIa8Hn.pO76svFkmWmZ6LjC" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000306620, + "modifiedTime": 1754000434953, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!Zj69cAeb3NjIa8Hn" +} diff --git a/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json b/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json new file mode 100644 index 00000000..3b23d6b7 --- /dev/null +++ b/src/packs/ancestries/feature_Scales_u8ZhV962rNmUlzkp.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Scales", + "type": "feature", + "_id": "u8ZhV962rNmUlzkp", + "img": "icons/commodities/leather/scales-brown.webp", + "system": { + "description": "Your scales act as natural protection. When you would take Severe damage, you can mark a Stress to mark 1 fewer Hit Points.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "b6Pkwwk7pgBeeUTe", + "img": "icons/commodities/leather/scales-brown.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.rules.damageReduction.stressDamageReduction.severe.cost", + "mode": 5, + "value": "1", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When you would take Severe damage, you can mark a Stress to mark 1 fewer Hit Points.
", + "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": 1753993993682, + "modifiedTime": 1753994027257, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!u8ZhV962rNmUlzkp.b6Pkwwk7pgBeeUTe" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993962796, + "modifiedTime": 1753993988373, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!u8ZhV962rNmUlzkp" +} diff --git a/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json b/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json new file mode 100644 index 00000000..65352d25 --- /dev/null +++ b/src/packs/ancestries/feature_Shell_A6a87OWA3tx16g9V.json @@ -0,0 +1,92 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Shell", + "type": "feature", + "_id": "A6a87OWA3tx16g9V", + "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", + "system": { + "description": "Gain a bonus to your damage thresholds equal to your Proficiency.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Shell", + "type": "base", + "_id": "41uiZKXzSSomf9YD", + "img": "icons/creatures/reptiles/turtle-shell-glowing-green.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.damageThresholds.major", + "mode": 2, + "value": "@prof", + "priority": null + }, + { + "key": "system.damageThresholds.severe", + "mode": 2, + "value": "@prof", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Gain a bonus to your damage thresholds equal to your Proficiency.
", + "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": 1753996434947, + "modifiedTime": 1753996492623, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!A6a87OWA3tx16g9V.41uiZKXzSSomf9YD" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753996421284, + "modifiedTime": 1753996433164, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!A6a87OWA3tx16g9V" +} diff --git a/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json b/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json new file mode 100644 index 00000000..61ff446d --- /dev/null +++ b/src/packs/ancestries/feature_Sturdy_60o3cKUZzxO9EDQF.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Sturdy", + "type": "feature", + "_id": "60o3cKUZzxO9EDQF", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-purple-orange.webp", + "system": { + "description": "When you have 1 Hit Point remaining, attacks against you have disadvantage.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000559764, + "modifiedTime": 1754000590019, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!60o3cKUZzxO9EDQF" +} diff --git a/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json b/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json new file mode 100644 index 00000000..cc0fd804 --- /dev/null +++ b/src/packs/ancestries/feature_Surefooted_YsJticxv8OFndd4D.json @@ -0,0 +1,34 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Surefooted", + "type": "feature", + "_id": "YsJticxv8OFndd4D", + "img": "icons/skills/movement/feet-bladed-boots-fire.webp", + "system": { + "description": "You ignore disadvantage on Agility Rolls.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753997026520, + "modifiedTime": 1753997047297, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!YsJticxv8OFndd4D" +} diff --git a/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json b/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json new file mode 100644 index 00000000..6b8aa900 --- /dev/null +++ b/src/packs/ancestries/feature_Thick_Skin_S0Ww7pYOSREt8qKg.json @@ -0,0 +1,86 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Thick Skin", + "type": "feature", + "_id": "S0Ww7pYOSREt8qKg", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp", + "system": { + "description": "When you take Minor damage, you can mark 2 Stress instead of marking a Hit Point.
", + "resource": null, + "actions": {}, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Thick Skin", + "type": "base", + "_id": "4Lc40mNnRInTKMC5", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.rules.damageReduction.stressDamageReduction.minor.cost", + "mode": 5, + "value": "2", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "When you take Minor damage, you can mark 2 Stress instead of marking a Hit Point.
", + "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": 1753994342724, + "modifiedTime": 1753994373197, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!S0Ww7pYOSREt8qKg.4Lc40mNnRInTKMC5" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994247261, + "modifiedTime": 1753994338239, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!S0Ww7pYOSREt8qKg" +} diff --git a/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json b/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json new file mode 100644 index 00000000..25f0d1b2 --- /dev/null +++ b/src/packs/ancestries/feature_Tusks_YhxD1ujZpftPu19w.json @@ -0,0 +1,123 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Tusks", + "type": "feature", + "_id": "YhxD1ujZpftPu19w", + "img": "icons/creatures/abilities/fang-tooth-blood-red.webp", + "system": { + "description": "When you succeed on an attack against a target within Melee range, you can spend a Hope to gore the target with your tusks, dealing an extra 1d6 damage.
", + "resource": null, + "actions": { + "1n4ZsA6s2iBAL1tG": { + "type": "effect", + "_id": "1n4ZsA6s2iBAL1tG", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "keyIsID": false, + "key": "hope", + "value": 1, + "scalable": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "self", + "amount": null + }, + "name": "Spend Hope", + "img": "icons/creatures/abilities/fang-tooth-blood-red.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Base", + "type": "base", + "_id": "klEyAxQa5YHXVnrl", + "img": "icons/creatures/abilities/fang-tooth-blood-red.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d6", + "priority": null + }, + { + "key": "system.bonuses.damage.magical.dice", + "mode": 2, + "value": "1d6", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "You gore the target with your tusks, dealing an extra 1d6 damage on this attack.
", + "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": 1754000662388, + "modifiedTime": 1754000724393, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!YhxD1ujZpftPu19w.klEyAxQa5YHXVnrl" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1754000611682, + "modifiedTime": 1754000658375, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!YhxD1ujZpftPu19w" +} diff --git a/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json b/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json new file mode 100644 index 00000000..5d534a67 --- /dev/null +++ b/src/packs/ancestries/feature_Unshakeable_G5pE8FW94V1W9jJx.json @@ -0,0 +1,81 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Unshakeable", + "type": "feature", + "_id": "G5pE8FW94V1W9jJx", + "img": "icons/magic/control/buff-flight-wings-runes-blue-white.webp", + "system": { + "description": "When you would mark a Stress, roll a d6. On a result of 6, don’t mark it.
", + "resource": null, + "actions": { + "x8xbjyCrJ0okOpIU": { + "type": "attack", + "_id": "x8xbjyCrJ0okOpIU", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": "equal", + "treshold": 6 + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Use", + "img": "icons/magic/control/buff-flight-wings-runes-blue-white.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753995651913, + "modifiedTime": 1753995700360, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!G5pE8FW94V1W9jJx" +} diff --git a/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json b/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json new file mode 100644 index 00000000..56ffaacc --- /dev/null +++ b/src/packs/ancestries/feature_Wings_WquAjoOcso8lwySW.json @@ -0,0 +1,117 @@ +{ + "folder": "dSAccOl5ccgXPyje", + "name": "Wings", + "type": "feature", + "_id": "WquAjoOcso8lwySW", + "img": "icons/creatures/abilities/wing-batlike-white-blue.webp", + "system": { + "description": "You can fly. While flying, you can mark a Stress after an adversary makes an attack against you to gain a +2 bonus to your Evasion against that attack.
", + "resource": null, + "actions": { + "dpKxkDSjXsP8kHMI": { + "type": "effect", + "_id": "dpKxkDSjXsP8kHMI", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/creatures/abilities/wing-batlike-white-blue.webp", + "range": "" + } + }, + "originItemType": null, + "subType": null, + "originId": null + }, + "effects": [ + { + "name": "Wings", + "type": "base", + "_id": "zD3xVdwkEQi2ivOn", + "img": "icons/creatures/abilities/wing-batlike-white-blue.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "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": "You to gain a +2 bonus to your Evasion against the Adversary's attack.
", + "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": 1753994808408, + "modifiedTime": 1753994856171, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!WquAjoOcso8lwySW.zD3xVdwkEQi2ivOn" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "MQSznptE5yLT7kj8": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753994723305, + "modifiedTime": 1753994805028, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items!WquAjoOcso8lwySW" +} diff --git a/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json b/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json new file mode 100644 index 00000000..00c921b8 --- /dev/null +++ b/src/packs/communities/community_Highborne_DVw2mOCHB8i0XeBz.json @@ -0,0 +1,25 @@ +{ + "name": "Highborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "Being part of a highborne community means you’re accustomed to a life of elegance, opulence, and prestige within the upper echelons of society.
Traditionally, members of a highborne community possess incredible material wealth. While this can take a variety of forms depending on the community—including gold and other minerals, land, or controlling the means of production—this status always comes with power and influence. Highborne place great value on titles and possessions, and there is little social mobility within their ranks. Members of a highborne community often control the political and economic status of the areas in which they live due to their ability to influence people and the economy with their substantial wealth. The health and safety of the less affluent people who live in these locations often hinges on the ability of this highborne ruling class to prioritize the well-being of their subjects over profit.
\nHighborne are often amiable, candid, conniving, enterprising, ostentatious, and unflappable.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784392, + "modifiedTime": 1753922784392, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DVw2mOCHB8i0XeBz", + "sort": 3400000, + "effects": [], + "_key": "!items!DVw2mOCHB8i0XeBz" +} diff --git a/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json b/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json new file mode 100644 index 00000000..d7e7be4d --- /dev/null +++ b/src/packs/communities/community_Loreborne_YsvlyqYoi8QQ8kwm.json @@ -0,0 +1,25 @@ +{ + "name": "Loreborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "description": "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784392, + "modifiedTime": 1753922784392, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YsvlyqYoi8QQ8kwm", + "sort": 3400000, + "effects": [], + "_key": "!items!YsvlyqYoi8QQ8kwm" +} diff --git a/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json new file mode 100644 index 00000000..70fc6e94 --- /dev/null +++ b/src/packs/communities/community_Orderborne_TY2TejenASXtS484.json @@ -0,0 +1,25 @@ +{ + "name": "Orderborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784393, + "modifiedTime": 1753922784393, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "TY2TejenASXtS484", + "sort": 3400000, + "effects": [], + "_key": "!items!TY2TejenASXtS484" +} diff --git a/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json new file mode 100644 index 00000000..fd52c55e --- /dev/null +++ b/src/packs/communities/community_Ridgeborne_WHLA4qrdszXQHOuo.json @@ -0,0 +1,25 @@ +{ + "name": "Ridgeborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784394, + "modifiedTime": 1753922784394, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "WHLA4qrdszXQHOuo", + "sort": 3400000, + "effects": [], + "_key": "!items!WHLA4qrdszXQHOuo" +} diff --git a/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json new file mode 100644 index 00000000..ac1e13ea --- /dev/null +++ b/src/packs/communities/community_Seaborne_o5AA5J05N7EvH1rN.json @@ -0,0 +1,25 @@ +{ + "name": "Seaborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784395, + "modifiedTime": 1753922784395, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "o5AA5J05N7EvH1rN", + "sort": 3400000, + "effects": [], + "_key": "!items!o5AA5J05N7EvH1rN" +} diff --git a/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json new file mode 100644 index 00000000..53d8f2e9 --- /dev/null +++ b/src/packs/communities/community_Slyborne_rGwCPMqZtky7SE6d.json @@ -0,0 +1,25 @@ +{ + "name": "Slyborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784396, + "modifiedTime": 1753922784396, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rGwCPMqZtky7SE6d", + "sort": 3400000, + "effects": [], + "_key": "!items!rGwCPMqZtky7SE6d" +} diff --git a/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json new file mode 100644 index 00000000..bb562103 --- /dev/null +++ b/src/packs/communities/community_Underborne_eX0I1ZNMyD3nfaL1.json @@ -0,0 +1,25 @@ +{ + "name": "Underborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784398, + "modifiedTime": 1753922784398, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "eX0I1ZNMyD3nfaL1", + "sort": 3400000, + "effects": [], + "_key": "!items!eX0I1ZNMyD3nfaL1" +} diff --git a/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json new file mode 100644 index 00000000..f84b711c --- /dev/null +++ b/src/packs/communities/community_Wanderborne_82mDY2EIBfLkNwQj.json @@ -0,0 +1,25 @@ +{ + "name": "Wanderborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784398, + "modifiedTime": 1753922784398, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "82mDY2EIBfLkNwQj", + "sort": 3400000, + "effects": [], + "_key": "!items!82mDY2EIBfLkNwQj" +} diff --git a/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json new file mode 100644 index 00000000..49936d47 --- /dev/null +++ b/src/packs/communities/community_Wildborne_CRJ5pzJj4FjCtIlx.json @@ -0,0 +1,25 @@ +{ + "name": "Wildborne", + "img": "icons/svg/item-bag.svg", + "type": "community", + "folder": null, + "system": { + "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.
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784398, + "modifiedTime": 1753922784398, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "CRJ5pzJj4FjCtIlx", + "sort": 3400000, + "effects": [], + "_key": "!items!CRJ5pzJj4FjCtIlx" +} diff --git a/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json new file mode 100644 index 00000000..ec2c84ab --- /dev/null +++ b/src/packs/domains/domainCard_A_Soldier_s_Bond_Y08dLFuPXsgeRrHi.json @@ -0,0 +1,29 @@ +{ + "name": "A Soldier’s Bond", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "o7t2fsAmRxKLoHrO", + "system": { + "description": "Once per
After you or a willing ally make any roll, you can spend 5
When 4 or more of the domain cards in your
When you would take magic damage, you can spend any number of
While you’re wearing armor, gain a +1 bonus to your
During a rest, when you choose to repair your armor as a
Once per long rest, mark a
You can see and hear through the projection as though it were you and affect the world as though you were there. A creature investigating the projection can tell it’s of magical origin. This effect lasts until your next rest or your projection takes any damage.
", + "domain": "grace", + "recallCost": 0, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784409, + "modifiedTime": 1753922784409, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YNOCNmZ96sCp9NEr", + "sort": 3400000, + "effects": [], + "_key": "!items!YNOCNmZ96sCp9NEr" +} diff --git a/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json new file mode 100644 index 00000000..1837018a --- /dev/null +++ b/src/packs/domains/domainCard_Banish_AIbHfryMA2Rvs1ut.json @@ -0,0 +1,29 @@ +{ + "name": "Banish", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "FcMclsLDy86EicA6", + "system": { + "description": "Make a
When the PCs roll with
When you choose not to equip
Once per
Once per
When you make a successful attack against an adversary, you can mark 4
When 4 or more of the domain cards in your
Make a
You use the full force of your body in a fight. On a successful attack using a weapon with a
When you make a
Additionally, once per rest when you would gain a
Make a
When 4 or more of the domain cards in your
Power Push: Make a
Tava’s Armor: Spend a
Ice Spike: Make a Spellcast Roll (12) to summon a large ice spike within Far range. If you use it as a weapon, make the Spellcast Roll against the target’s
Repudiate: You can interrupt a magical effect taking place. Make a
Create Construct: Spend a
Arcane Deflection: Once per
Time Lock: Target an object within
Wall of Flame: Make a Spellcast Roll (15). On a success, create a wall of magical flame between two points within Far range. All creatures in its path must choose a side to be on, and anything that subsequently passes through the wall takes 4d10+3 magic damage.
", + "domain": "codex", + "recallCost": 2, + "level": 4, + "type": "grimoire" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784420, + "modifiedTime": 1753922784420, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "R0LNheiZycZlZzV3", + "sort": 3400000, + "effects": [], + "_key": "!items!R0LNheiZycZlZzV3" +} diff --git a/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json new file mode 100644 index 00000000..73622106 --- /dev/null +++ b/src/packs/domains/domainCard_Book_of_Homet_gFMx08ogQ8hS2Obi.json @@ -0,0 +1,29 @@ +{ + "name": "Book of Homet", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "hh2vkggcAQ0QUE6C", + "system": { + "description": "Pass Through: Make a
Plane Gate: Make a Spellcast Roll (14). Once per
Slumber: Make a
Arcane Barrage: Once per rest, spend any number of
Telepathy: Spend a Hope to open a line of mental communication with one target you can see. This connection lasts until your next rest or you cast Telepathy again.
", + "domain": "codex", + "recallCost": 2, + "level": 1, + "type": "grimoire" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784421, + "modifiedTime": 1753922784421, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "df4iRqQzRntrF6Qw", + "sort": 3400000, + "effects": [], + "_key": "!items!df4iRqQzRntrF6Qw" +} diff --git a/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json new file mode 100644 index 00000000..3902fad8 --- /dev/null +++ b/src/packs/domains/domainCard_Book_of_Korvax_cWRFHJdxEZ0M1dAg.json @@ -0,0 +1,29 @@ +{ + "name": "Book of Korvax", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "7XeaYZPMB0SopAfo", + "system": { + "description": "Levitation: Make a
Recant: Spend a
Rune Circle: Mark a
Mystic Tether: Make a
Fireball: Make a Spellcast Roll against a target within
Transform: Make a
Eternal Enervation: Once per
Adjust Appearance: You magically shift your appearance and clothing to avoid recognition.
Parallela: Spend 2
Illusion: Make a
Wild Flame: Make a
Magic Hand: You conjure a magical hand with the same size and strength as your own within
Mysterious Mist: Make a Spellcast Roll (13) to cast a temporary thick fog that gathers in a stationary area within
Runic Lock: Make a
Arcane Door: When you have no adversaries within
Reveal: Make a Spellcast Roll. If there is anything magically hidden within
Memory Delve: Make a
Shared Clarity: Once per
Timejammer: Make a
Magic Immunity: Spend 5
Mark a
When you mark an
When you make a successful attack, you can mark a
Mark 2
When you
You can’t choose the same option more than once.
", + "domain": "blade", + "recallCost": 1, + "level": 5, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784433, + "modifiedTime": 1753922784433, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rnejRbUQsNGX1GMC", + "sort": 3400000, + "effects": [], + "_key": "!items!rnejRbUQsNGX1GMC" +} diff --git a/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json new file mode 100644 index 00000000..6bf0cfbb --- /dev/null +++ b/src/packs/domains/domainCard_Chokehold_R5GYUalYXLLFRlNl.json @@ -0,0 +1,29 @@ +{ + "name": "Chokehold", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "hoDIPBzwYPxiSXGU", + "system": { + "description": "When you position yourself behind a creature who’s about your size, you can mark a
When a creature attacks a target who is Vulnerable in this way, they deal an extra 2d6 damage.
", + "domain": "midnight", + "recallCost": 1, + "level": 3, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784434, + "modifiedTime": 1753922784434, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "R5GYUalYXLLFRlNl", + "sort": 3400000, + "effects": [], + "_key": "!items!R5GYUalYXLLFRlNl" +} diff --git a/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json new file mode 100644 index 00000000..b0a974b5 --- /dev/null +++ b/src/packs/domains/domainCard_Cinder_Grasp_5EP2Lgf7ojfrc0Is.json @@ -0,0 +1,29 @@ +{ + "name": "Cinder Grasp", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "u8Yz2hUTaF3N2fFT", + "system": { + "description": "Make a
When a creature acts while On Fire, they must take an extra 2d6 magic damage if they are still On Fire at the end of their action.
", + "domain": "arcana", + "recallCost": 1, + "level": 2, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784434, + "modifiedTime": 1753922784434, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "5EP2Lgf7ojfrc0Is", + "sort": 3400000, + "effects": [], + "_key": "!items!5EP2Lgf7ojfrc0Is" +} diff --git a/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json new file mode 100644 index 00000000..ddaa8794 --- /dev/null +++ b/src/packs/domains/domainCard_Cloaking_Blast_Zhw7PtK8nMPlsOqD.json @@ -0,0 +1,29 @@ +{ + "name": "Cloaking Blast", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "bCjkysrofWPiZqNh", + "system": { + "description": "When you make a successful
When 4 or more of the domain cards in your
Make a
Tekaira Armored Beetles: Mark a
Fire Flies: Make a
Spend any number of
Once per
Make a
You can interrupt a magical effect taking place by making a
Once per rest, when you
When you make a successful attack with a weapon, gain a bonus to your damage roll equal to either your
You can speak into the mind of any person with whom you’ve made physical contact. Once you’ve opened a channel with them, they can speak back into your mind. Additionally, you can mark a
Once per rest, you can apply all your focus toward a target of your choice. Until you attack another creature, you defeat the target, or the battle ends, gain a +1 bonus to your
Make a
On a success, vines reach out from your hands, causing the chosen effect and temporarily
Spend 3
You can’t target the same adversary more than once per attack.
", + "domain": "bone", + "recallCost": 1, + "level": 10, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784445, + "modifiedTime": 1753922784445, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "xFOSn8IVVNizgHFq", + "sort": 3400000, + "effects": [], + "_key": "!items!xFOSn8IVVNizgHFq" +} diff --git a/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json new file mode 100644 index 00000000..36b6e344 --- /dev/null +++ b/src/packs/domains/domainCard_Deft_Deceiver_38znCh6kHTkaPwYi.json @@ -0,0 +1,29 @@ +{ + "name": "Deft Deceiver", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nVCKcZkcoEivYJaF", + "system": { + "description": "Spend a
Once per rest, mark a
If you end this movement within
Make a
Once per long rest, spend 3
Make a
Additionally, when you succeed on the Spellcast Roll, all terrain within Very Far range becomes difficult to move through and structures within this range might sustain damage or crumble.
", + "domain": "arcana", + "recallCost": 2, + "level": 9, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784449, + "modifiedTime": 1753922784449, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "C0qLOwSSvZ6PG3Ws", + "sort": 3400000, + "effects": [], + "_key": "!items!C0qLOwSSvZ6PG3Ws" +} diff --git a/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json new file mode 100644 index 00000000..10b4383f --- /dev/null +++ b/src/packs/domains/domainCard_Eclipse_62Sj67PdPFzwWVe3.json @@ -0,0 +1,29 @@ +{ + "name": "Eclipse", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "8qr1Y2tW3vLwNZOg", + "system": { + "description": "Make a
Additionally, when you or an ally succeeds with
This spell lasts until the GM spends a
When an ally within
After you make an
Make a
Make a
After a
When you would make a
When you
When you take a long rest, clear all unspent tokens.
", + "domain": "sage", + "recallCost": 2, + "level": 9, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784452, + "modifiedTime": 1753922784452, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "F2m9wvZ3v5c3yCtv", + "sort": 3400000, + "effects": [], + "_key": "!items!F2m9wvZ3v5c3yCtv" +} diff --git a/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json new file mode 100644 index 00000000..d4f61daa --- /dev/null +++ b/src/packs/domains/domainCard_Ferocity_jSQsSP61CX4MhSN7.json @@ -0,0 +1,29 @@ +{ + "name": "Ferocity", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "Q9rmrfeKqcqBNnWc", + "system": { + "description": "When you cause an adversary to mark 1 or more
You can infuse a corpse with a moment of life to speak with it. Make a
Make a
Spend a
As an additional
Mark a
Before you make an
Make an attack with your primary weapon against a target within
Additionally, you can spend a Hope to make them temporarily
Make a
A sprite vanishes after granting a benefit or taking any damage.
", + "domain": "sage", + "recallCost": 2, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784457, + "modifiedTime": 1753922784457, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "JrkUMTzaFmQNBHVm", + "sort": 3400000, + "effects": [], + "_key": "!items!JrkUMTzaFmQNBHVm" +} diff --git a/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json new file mode 100644 index 00000000..ef6ce73e --- /dev/null +++ b/src/packs/domains/domainCard_Fortified_Armor_oVa49lI107eZILZr.json @@ -0,0 +1,29 @@ +{ + "name": "Fortified Armor", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "yalAnCU3SndrYImF", + "system": { + "description": "While you are wearing
Once per
While Frenzied, you can’t use
Once per
When you take
When you’re tracking a specific creature or group of creatures based on signs of their passage, you can spend any number of
When you encounter creatures you’ve tracked in this way, gain a +1 bonus to your
When you fail an attack, you can mark a
Make a
Describe how you taunt a target within
When you
Additionally, when you deal enough damage to defeat an enemy, gain a Hope or clear a Stress.
", + "domain": "blade", + "recallCost": 2, + "level": 9, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784464, + "modifiedTime": 1753922784464, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "3zvjgZ5Od343wHzx", + "sort": 3400000, + "effects": [], + "_key": "!items!3zvjgZ5Od343wHzx" +} diff --git a/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json new file mode 100644 index 00000000..0220fe56 --- /dev/null +++ b/src/packs/domains/domainCard_Grace_Touched_KAuNb51AwhD8KEXk.json @@ -0,0 +1,29 @@ +{ + "name": "Grace-Touched", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "W81LnTWzwmoaycTl", + "system": { + "description": "When 4 or more of the domain cards in your
Spend 2
Once per
Spend 2
Make a
When you deal damage to an adversary, you can spend 2
Describe the defensive stance you take and spend a
This
Make a
The target and anything within the area is Silenced until the GM spends a
Make a
When an ally within
When you’re targeted by an attack made from beyond
When you fail an action roll, your next
Your speech is imbued with power. After a
When you take a long rest, clear all unspent tokens.
", + "domain": "grace", + "recallCost": 1, + "level": 1, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784473, + "modifiedTime": 1753922784473, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "cWu1o82ZF7GvnbXc", + "sort": 3400000, + "effects": [], + "_key": "!items!cWu1o82ZF7GvnbXc" +} diff --git a/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json b/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json new file mode 100644 index 00000000..f09bb223 --- /dev/null +++ b/src/packs/domains/domainCard_Invigoration_X8OfkEoI5gLTRf1B.json @@ -0,0 +1,29 @@ +{ + "name": "Invigoration", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nZr2hsu6Q6TlFXQn", + "system": { + "description": "When you or an ally within
Make a
You can only hold Invisibility on one creature at a time.
", + "domain": "grace", + "recallCost": 1, + "level": 3, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784475, + "modifiedTime": 1753922784475, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "KHkzA4Zrw8EWN1CH", + "sort": 3400000, + "effects": [], + "_key": "!items!KHkzA4Zrw8EWN1CH" +} diff --git a/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json new file mode 100644 index 00000000..0b370d70 --- /dev/null +++ b/src/packs/domains/domainCard_Know_Thy_Enemy_O38MQMhJWdZnXi6b.json @@ -0,0 +1,29 @@ +{ + "name": "Know Thy Enemy", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "BQ1L4EiwOs84Xysp", + "system": { + "description": "When observing a creature, you can make an
Additionally on a success, you can mark a
When you deal damage to an adversary, you can mark a
Once per
Spend 3
This effect ends when it saves the target from a death move, you cast Life Ward on another target, or you take a
Make a
When you have a few minutes of silence to focus, you can mark a
Activate a
Make a
Gain a permanent +2 bonus to two of your
You lay your hands upon a creature and channel healing magic to close their wounds. When you can take a few minutes to focus on the target you’re helping, you can spend 2
Once per
Spend a
You can also send it to attack an adversary. When you do, make a
When 4 or more of the domain cards in your
Spend a
When you deal damage to an adversary within
You can speak the language of the natural world. When you want to speak to the plants and animals around you, make an
Additionally, before you make a
When you mark 1 or more
Once per
When you roll your damage dice, you can reroll any 1s or 2s.
", + "domain": "blade", + "recallCost": 1, + "level": 1, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784487, + "modifiedTime": 1753922784487, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "xheQZOIYp0ERQhT9", + "sort": 3400000, + "effects": [], + "_key": "!items!xheQZOIYp0ERQhT9" +} diff --git a/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json new file mode 100644 index 00000000..a9533ef0 --- /dev/null +++ b/src/packs/domains/domainCard_Notorious_IqxzvvjZiYbgx21A.json @@ -0,0 +1,29 @@ +{ + "name": "Notorious", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "wdhWWqWlPiBxtsvr", + "system": { + "description": "People know who you are and what you’ve done, and they treat you differently because of it. When you leverage your notoriety to get what you want, you can mark a
This card doesn’t count against your
When you have 2 or fewer
When you successfully make an attack with your weapon, you never deal damage beneath a target’s
Additionally, when a creature within your weapon’s range deals damage to an ally with an attack that doesn’t include you, you can mark a
Make a
While this spell is active, an adversary must mark a
Spend a
You have
Make a
You can channel arcane energy to have visions of the future. Once per
Make a
Before you make an attack, you can mark a
You can Rage Up twice per attack.
", + "domain": "blade", + "recallCost": 1, + "level": 6, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784496, + "modifiedTime": 1753922784496, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "GRL0cvs96vrTDckZ", + "sort": 3400000, + "effects": [], + "_key": "!items!GRL0cvs96vrTDckZ" +} diff --git a/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json new file mode 100644 index 00000000..955e143d --- /dev/null +++ b/src/packs/domains/domainCard_Rain_of_Blades_Ucenef6JpjQxwXni.json @@ -0,0 +1,29 @@ +{ + "name": "Rain of Blades", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "sCiN7DoysdKceIMd", + "system": { + "description": "Spend a
If a target you hit is
When an attack made against you from within
Once per
Once per rest, after an ally attempts an
Mark a
During a
When an attack made against you from beyond
Make a
When you move, the barrier follows you.
", + "domain": "sage", + "recallCost": 1, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784502, + "modifiedTime": 1753922784502, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HtWx5IIemCoorMj2", + "sort": 3400000, + "effects": [], + "_key": "!items!HtWx5IIemCoorMj2" +} diff --git a/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json new file mode 100644 index 00000000..d1ae8fa0 --- /dev/null +++ b/src/packs/domains/domainCard_Restoration_wUQFsRtww18naYaq.json @@ -0,0 +1,29 @@ +{ + "name": "Restoration", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "OwsbTSWzKq2WJmQN", + "system": { + "description": "After a
You can also spend a token from this card when touching a creature to clear the
When you take a long rest, clear all unspent tokens.
", + "domain": "splendor", + "recallCost": 2, + "level": 6, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784502, + "modifiedTime": 1753922784502, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "wUQFsRtww18naYaq", + "sort": 3400000, + "effects": [], + "_key": "!items!wUQFsRtww18naYaq" +} diff --git a/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json new file mode 100644 index 00000000..27df7703 --- /dev/null +++ b/src/packs/domains/domainCard_Resurrection_z30ciOwQI7g3tHla.json @@ -0,0 +1,29 @@ +{ + "name": "Resurrection", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nZr2hsu6Q6TlFXQn", + "system": { + "description": "Make a
On a failure, you can’t cast Resurrection again for a week.
", + "domain": "splendor", + "recallCost": 2, + "level": 10, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784503, + "modifiedTime": 1753922784503, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "z30ciOwQI7g3tHla", + "sort": 3400000, + "effects": [], + "_key": "!items!z30ciOwQI7g3tHla" +} diff --git a/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json new file mode 100644 index 00000000..2bac97a1 --- /dev/null +++ b/src/packs/domains/domainCard_Rift_Walker_vd5STqX29RpYbGxa.json @@ -0,0 +1,29 @@ +{ + "name": "Rift Walker", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "gqnmAgerh7HhNo7t", + "system": { + "description": "Make a
You can drop the spell at any time to cast Rift Walker again and place the marking somewhere new.
", + "domain": "arcana", + "recallCost": 2, + "level": 6, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784503, + "modifiedTime": 1753922784503, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "vd5STqX29RpYbGxa", + "sort": 3400000, + "effects": [], + "_key": "!items!vd5STqX29RpYbGxa" +} diff --git a/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json new file mode 100644 index 00000000..0738c989 --- /dev/null +++ b/src/packs/domains/domainCard_Rise_Up_oDIZoC4l19Nli0Fj.json @@ -0,0 +1,29 @@ +{ + "name": "Rise Up", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "nKCmeAn7ESsb4byE", + "system": { + "description": "Gain a bonus to your
When you mark 1 or more
Once per rest, when you
You have a deeply personal trinket that can be infused with protective magic and held as a ward by you or an ally. Describe what it is and why it’s important to you. The ward’s holder can spend a
If the Ward Die result is 8, the ward’s power ends after it reduces damage this turn. It can be recharged for free on your next rest.
", + "domain": "arcana", + "recallCost": 0, + "level": 1, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784506, + "modifiedTime": 1753922784506, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "GEhBUmv9Bj7oJfHk", + "sort": 3400000, + "effects": [], + "_key": "!items!GEhBUmv9Bj7oJfHk" +} diff --git a/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json new file mode 100644 index 00000000..25e3ccfd --- /dev/null +++ b/src/packs/domains/domainCard_Safe_Haven_lmBLMPuR8qLbuzNf.json @@ -0,0 +1,29 @@ +{ + "name": "Safe Haven", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "8bWpGblWODdf8mDR", + "system": { + "description": "When you have a few minutes of calm to focus, you can spend 2
When you take a rest within your own Safe Haven, you can choose an additional
When 4 or more of the domain cards in your
Make a
Once per rest, when a creature within
Once per rest, when you succeed on an attack against an adversary, you can clear 3
Once per rest, make a
Make a
Your prowess is enhanced under the cover of shadow. While you’re shrouded in low light or darkness, you gain a +1 bonus to your
Spend a
You can only affect the material within
Once per rest, take on the
Mark a
You can only hold Shield Aura on one creature at a time.
", + "domain": "splendor", + "recallCost": 2, + "level": 8, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784516, + "modifiedTime": 1753922784516, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "rfIv6lln40Fh6EIl", + "sort": 3400000, + "effects": [], + "_key": "!items!rfIv6lln40Fh6EIl" +} diff --git a/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json new file mode 100644 index 00000000..6b28707a --- /dev/null +++ b/src/packs/domains/domainCard_Shrug_It_Off_JwfhtgmmuRxg4zhI.json @@ -0,0 +1,29 @@ +{ + "name": "Shrug It Off", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "kj3gwg5bmCqwFYze", + "system": { + "description": "When you would take damage, you can mark a
Mark an adversary within
Name and describe your signature combat move. Once per rest, when you perform this signature move as part of an action you’re taking, you can roll a d20 as your
Once per rest, spend 3
During a
Mark a
When you take magic damage, place tokens equal to the number of
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
When 4 or more of the domain cards in your
Spend a
When you roll with
If an ally within
After a long rest, place a number of tokens equal to your
When you take a
Make a
Targets who succeed take 3d20+3 magic damage. Targets who fail take 4d20+5 magic damage and are temporarily Stunned. While Stunned, they can’t use reactions and can’t take any other actions until they clear this
When an ally within
When an attack made against you fails, clear a
When you
When making a
Make a
Once per
On a success, you appear where you were intending to go. On a failure, you appear off course, with the range of failure determining how far off course.
", + "domain": "codex", + "recallCost": 2, + "level": 5, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784528, + "modifiedTime": 1753922784528, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HnPwVrWblYa9hwSt", + "sort": 3400000, + "effects": [], + "_key": "!items!HnPwVrWblYa9hwSt" +} diff --git a/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json new file mode 100644 index 00000000..6d1d7f3e --- /dev/null +++ b/src/packs/domains/domainCard_Tell_No_Lies_HTv9QEPS466WsstP.json @@ -0,0 +1,29 @@ +{ + "name": "Tell No Lies", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "pu3xD4rEkdfdAvGc", + "system": { + "description": "Make a
Choose one of the following tempests and make a
Once per rest, spend a
When you take a rest, clear all unspent tokens.
", + "domain": "sage", + "recallCost": 1, + "level": 5, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784531, + "modifiedTime": 1753922784531, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "oUipGK84E2KjoKqh", + "sort": 3400000, + "effects": [], + "_key": "!items!oUipGK84E2KjoKqh" +} diff --git a/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json new file mode 100644 index 00000000..606c52fb --- /dev/null +++ b/src/packs/domains/domainCard_Thought_Delver_B4choj481tqajWb9.json @@ -0,0 +1,29 @@ +{ + "name": "Thought Delver", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "6gA7SmNIblkMaYgr", + "system": { + "description": "You can peek into the minds of others. Spend a
On a roll with
Choose a target within
Once per rest, you can conjure a thick, twisting stalk within
Mark a
Once per
When you taunt or provoke a target within
Choose a target within
When you choose a new target or take a rest, clear all unspent tokens.
", + "domain": "midnight", + "recallCost": 1, + "level": 9, + "type": "ability" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784535, + "modifiedTime": 1753922784535, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "SDjjV61TC1NceV1m", + "sort": 3400000, + "effects": [], + "_key": "!items!SDjjV61TC1NceV1m" +} diff --git a/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json new file mode 100644 index 00000000..fccf16de --- /dev/null +++ b/src/packs/domains/domainCard_Unbreakable_CUIQmrPjf9VCHmwJ.json @@ -0,0 +1,29 @@ +{ + "name": "Unbreakable", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "D1MFCYakdFIKDmcD", + "system": { + "description": "When you mark your last
When you have a few minutes to prepare, you can mark a
Place a number of tokens equal to your Spellcast trait on this card. When you take an action while disguised, spend a token from this card. After the action that spends the last token is resolved, the disguise drops.
", + "domain": "midnight", + "recallCost": 0, + "level": 1, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784537, + "modifiedTime": 1753922784537, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "TV56wSysbU5xAlOa", + "sort": 3400000, + "effects": [], + "_key": "!items!TV56wSysbU5xAlOa" +} diff --git a/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json new file mode 100644 index 00000000..1c442f39 --- /dev/null +++ b/src/packs/domains/domainCard_Unleash_Chaos_o62i0QdbUDIiAhSq.json @@ -0,0 +1,29 @@ +{ + "name": "Unleash Chaos", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "o7kvw9NRGvDZSce2", + "system": { + "description": "At the beginning of a session, place a number of tokens equal to your Spellcast trait on this card.
Make a
At the end of each session, clear all unspent tokens.
", + "domain": "arcana", + "recallCost": 1, + "level": 1, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784537, + "modifiedTime": 1753922784537, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "o62i0QdbUDIiAhSq", + "sort": 3400000, + "effects": [], + "_key": "!items!o62i0QdbUDIiAhSq" +} diff --git a/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json new file mode 100644 index 00000000..ac6392f5 --- /dev/null +++ b/src/packs/domains/domainCard_Untouchable_9QElncQUDSakuSdR.json @@ -0,0 +1,29 @@ +{ + "name": "Untouchable", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "PeeIjbkBv41613yZ", + "system": { + "description": "Gain a bonus to your
When you would mark an
When 4 or more of the domain cards in your
When an attack made against you that would deal
Make a
You can use a different
When you deal damage, you can mark a
Make a
Additionally on a success, you can spend a
When you choose this card, permanently gain two of the following benefits:
Then place this card in your
You speak with an unmatched power and authority. You have
Additionally, you’re emboldened in moments of duress. When all of your
Spend a
When you make a successful attack against a target within
Make a
Once per long rest, mark a
While the Wild Surge Die is active, you add its value to every action roll you make. After you add its value to a roll, increase the Wild Surge Die’s value by one. When the die’s value would exceed 6 or you take a rest, this form drops and you must mark an additional Stress.
", + "domain": "sage", + "recallCost": 2, + "level": 7, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784547, + "modifiedTime": 1753922784547, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "DjnKlZQYaWdQGKcK", + "sort": 3400000, + "effects": [], + "_key": "!items!DjnKlZQYaWdQGKcK" +} diff --git a/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json new file mode 100644 index 00000000..9d545ebe --- /dev/null +++ b/src/packs/domains/domainCard_Words_of_Discord_ZjAdi1FSNCDDHI3X.json @@ -0,0 +1,29 @@ +{ + "name": "Words of Discord", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "6gA7SmNIblkMaYgr", + "system": { + "description": "Whisper words of discord to an adversary within
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.
", + "domain": "grace", + "recallCost": 1, + "level": 5, + "type": "spell" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784548, + "modifiedTime": 1753922784548, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "ZjAdi1FSNCDDHI3X", + "sort": 3400000, + "effects": [], + "_key": "!items!ZjAdi1FSNCDDHI3X" +} diff --git a/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json new file mode 100644 index 00000000..40d20f9d --- /dev/null +++ b/src/packs/domains/domainCard_Wrangle_9DwSxHoUwl8Kxj3n.json @@ -0,0 +1,29 @@ +{ + "name": "Wrangle", + "img": "icons/svg/item-bag.svg", + "type": "domainCard", + "folder": "n7pgTBYSItMzCX0s", + "system": { + "description": "Make an
Make a
A former druidic grove lying fallow and fully reclaimed by nature.
", + "type": "Exploration
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784553, + "modifiedTime": 1753922784553, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "pGEdzdLkqYtBhxnG", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Abandoned Grove", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!pGEdzdLkqYtBhxnG" +} diff --git a/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json new file mode 100644 index 00000000..e3a89592 --- /dev/null +++ b/src/packs/environments/environment_Ambushed_uGEdNYERCTJBEjc5.json @@ -0,0 +1,130 @@ +{ + "name": "Ambushed", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 0, + "tier": 1, + "description": "An ambush is set to catch an unsuspecting party off-guard.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784553, + "modifiedTime": 1753922784553, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uGEdNYERCTJBEjc5", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Ambushed", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uGEdNYERCTJBEjc5" +} diff --git a/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json new file mode 100644 index 00000000..5d088ad9 --- /dev/null +++ b/src/packs/environments/environment_Ambushers_uXZpebPR77YQ1oXI.json @@ -0,0 +1,130 @@ +{ + "name": "Ambushers", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 0, + "tier": 1, + "description": "An ambush is set by the PCs to catch unsuspecting adversaries off-guard.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784554, + "modifiedTime": 1753922784554, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "uXZpebPR77YQ1oXI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Ambushers", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!uXZpebPR77YQ1oXI" +} 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 new file mode 100644 index 00000000..44c86d30 --- /dev/null +++ b/src/packs/environments/environment_Burning_Heart_of_the_Woods_oY69NN4rYxoRE4hl.json @@ -0,0 +1,130 @@ +{ + "name": "Burning Heart of the Woods", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "MfrIkJK12PAEfbPL", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 16, + "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
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784554, + "modifiedTime": 1753922784554, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "oY69NN4rYxoRE4hl", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Burning Heart of the Woods", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!oY69NN4rYxoRE4hl" +} diff --git a/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json new file mode 100644 index 00000000..463473c3 --- /dev/null +++ b/src/packs/environments/environment_Bustling_Marketplace_HZKA7hkej7JJY503.json @@ -0,0 +1,130 @@ +{ + "name": "Bustling Marketplace", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 10, + "tier": 1, + "description": "The economic heart of the settlement, with local artisans, traveling merchants, and patrons across social classes.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784554, + "modifiedTime": 1753922784554, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "HZKA7hkej7JJY503", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Bustling Marketplace", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!HZKA7hkej7JJY503" +} diff --git a/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json new file mode 100644 index 00000000..2aeb3834 --- /dev/null +++ b/src/packs/environments/environment_Castle_Siege_1eZ32Esq7rfZOjlu.json @@ -0,0 +1,130 @@ +{ + "name": "Castle Siege", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "MfrIkJK12PAEfbPL", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 17, + "tier": 3, + "description": "An active siege with an attacking force fighting to gain entry to a fortified castle.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784555, + "modifiedTime": 1753922784555, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "1eZ32Esq7rfZOjlu", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Castle Siege", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!1eZ32Esq7rfZOjlu" +} diff --git a/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json new file mode 100644 index 00000000..ae432226 --- /dev/null +++ b/src/packs/environments/environment_Chaos_Realm_2Z1mKc65LxNk2PqR.json @@ -0,0 +1,130 @@ +{ + "name": "Chaos Realm", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 20, + "tier": 4, + "description": "An otherworldly space where the laws of reality are unstable and dangerous.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784556, + "modifiedTime": 1753922784556, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "2Z1mKc65LxNk2PqR", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Chaos Realm", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!2Z1mKc65LxNk2PqR" +} diff --git a/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json new file mode 100644 index 00000000..a1e04625 --- /dev/null +++ b/src/packs/environments/environment_Cliffside_Ascent_LPpfdlNKqiZIl04w.json @@ -0,0 +1,130 @@ +{ + "name": "Cliffside Ascent", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 12, + "tier": 1, + "description": "A steep, rocky cliffside tall enough to make traversal dangerous.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784557, + "modifiedTime": 1753922784557, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "LPpfdlNKqiZIl04w", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cliffside Ascent", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!LPpfdlNKqiZIl04w" +} diff --git a/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json new file mode 100644 index 00000000..104b72be --- /dev/null +++ b/src/packs/environments/environment_Cult_Ritual_QAXXiOKBDmCTauHD.json @@ -0,0 +1,130 @@ +{ + "name": "Cult Ritual", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 14, + "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
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784557, + "modifiedTime": 1753922784557, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "QAXXiOKBDmCTauHD", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Cult Ritual", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!QAXXiOKBDmCTauHD" +} diff --git a/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json new file mode 100644 index 00000000..40924a5b --- /dev/null +++ b/src/packs/environments/environment_Divine_Usurpation_4DLYez7VbMCFDAuZ.json @@ -0,0 +1,130 @@ +{ + "name": "Divine Usurpation", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 20, + "tier": 4, + "description": "A massive ritual designed to breach the gates of the Hallows Above and unseat the New Gods themselves.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784558, + "modifiedTime": 1753922784558, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "4DLYez7VbMCFDAuZ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Divine Usurpation", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!4DLYez7VbMCFDAuZ" +} diff --git a/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json new file mode 100644 index 00000000..2310ebdb --- /dev/null +++ b/src/packs/environments/environment_Hallowed_Temple_dsA6j69AnaJhUyqH.json @@ -0,0 +1,130 @@ +{ + "name": "Hallowed Temple", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 13, + "tier": 2, + "description": "A bustling but well-kept temple that provides healing and hosts regular services, overseen by a priest or seraph.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784558, + "modifiedTime": 1753922784558, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "dsA6j69AnaJhUyqH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Hallowed Temple", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!dsA6j69AnaJhUyqH" +} diff --git a/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json new file mode 100644 index 00000000..600dc8ae --- /dev/null +++ b/src/packs/environments/environment_Haunted_City_OzYbizKraK92FDiI.json @@ -0,0 +1,130 @@ +{ + "name": "Haunted City", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 14, + "tier": 2, + "description": "An abandoned city populated by the restless spirits of eras past.
", + "type": "Exploration
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784559, + "modifiedTime": 1753922784559, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "OzYbizKraK92FDiI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Haunted City", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!OzYbizKraK92FDiI" +} diff --git a/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json new file mode 100644 index 00000000..8ca46849 --- /dev/null +++ b/src/packs/environments/environment_Imperial_Court_jr1xAoXzVwVblzxI.json @@ -0,0 +1,130 @@ +{ + "name": "Imperial Court", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 20, + "tier": 4, + "description": "The majestic domain of a powerful empire, lavishly appointed with stolen treasures.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784559, + "modifiedTime": 1753922784559, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "jr1xAoXzVwVblzxI", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Imperial Court", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!jr1xAoXzVwVblzxI" +} diff --git a/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json new file mode 100644 index 00000000..09f4fc4d --- /dev/null +++ b/src/packs/environments/environment_Local_Tavern_cM4X81DOyvxNIi52.json @@ -0,0 +1,130 @@ +{ + "name": "Local Tavern", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 10, + "tier": 1, + "description": "A lively tavern that serves as the social hub for its town.
", + "type": "Social
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784561, + "modifiedTime": 1753922784561, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "cM4X81DOyvxNIi52", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Local Tavern", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!cM4X81DOyvxNIi52" +} diff --git a/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json new file mode 100644 index 00000000..ba9859aa --- /dev/null +++ b/src/packs/environments/environment_Mountain_Pass_acMu9wJrMZZzLSTJ.json @@ -0,0 +1,130 @@ +{ + "name": "Mountain Pass", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "XMeecO3IRvu5ck6F", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 15, + "tier": 2, + "description": "Stony peaks that pierce the clouds, with a twisting path winding its way up and over through many switchbacks.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784562, + "modifiedTime": 1753922784562, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "acMu9wJrMZZzLSTJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Mountain Pass", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!acMu9wJrMZZzLSTJ" +} diff --git a/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json b/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json new file mode 100644 index 00000000..60c542f1 --- /dev/null +++ b/src/packs/environments/environment_Necromancer_s_Ossuary_h3KyRL7AshhLAmcH.json @@ -0,0 +1,130 @@ +{ + "name": "Necromancer’s Ossuary", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "IKumu5HTLqONLYqb", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 19, + "tier": 4, + "description": "A dusty crypt with a library, twisting corridors, and abundant sarcophagi, spattered with the blood of ill-fated invaders.
", + "type": "Exploration
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784563, + "modifiedTime": 1753922784563, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "h3KyRL7AshhLAmcH", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Necromancer’s Ossuary", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!h3KyRL7AshhLAmcH" +} diff --git a/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json new file mode 100644 index 00000000..c61dae98 --- /dev/null +++ b/src/packs/environments/environment_Outpost_Town_YezryR32uo39xRxW.json @@ -0,0 +1,130 @@ +{ + "name": "Outpost Town", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 12, + "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
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784564, + "modifiedTime": 1753922784564, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "YezryR32uo39xRxW", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Outpost Town", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!YezryR32uo39xRxW" +} diff --git a/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json new file mode 100644 index 00000000..2ac3d2b7 --- /dev/null +++ b/src/packs/environments/environment_Pitched_Battle_EWD3ZsLoK6VMVOf7.json @@ -0,0 +1,130 @@ +{ + "name": "Pitched Battle", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "MfrIkJK12PAEfbPL", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 17, + "tier": 3, + "description": "A massive combat between two large groups of armed combatants.
", + "type": "Event
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784565, + "modifiedTime": 1753922784565, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "EWD3ZsLoK6VMVOf7", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Pitched Battle", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!EWD3ZsLoK6VMVOf7" +} diff --git a/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json new file mode 100644 index 00000000..c2a7c10b --- /dev/null +++ b/src/packs/environments/environment_Raging_River_t4cdqTfzcqP3H1vJ.json @@ -0,0 +1,130 @@ +{ + "name": "Raging River", + "img": "icons/svg/mystery-man.svg", + "type": "environment", + "folder": "GQ0VnOLrKBIHR6Us", + "system": { + "potentialAdversaries": {}, + "notes": "", + "difficulty": 10, + "tier": 1, + "description": "A swift-moving river without a bridge crossing, deep enough to sweep away most people.
", + "type": "Traversal
" + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.344", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753922784565, + "modifiedTime": 1753922784565, + "lastModifiedBy": "WafZqd6qLGpBRGTt" + }, + "_id": "t4cdqTfzcqP3H1vJ", + "sort": 3400000, + "ownership": { + "default": 0, + "ei8OkswTzyDp4IGC": 3, + "WafZqd6qLGpBRGTt": 3 + }, + "prototypeToken": { + "name": "Raging River", + "displayName": 0, + "actorLink": false, + "width": 1, + "height": 1, + "texture": { + "src": "icons/svg/mystery-man.svg", + "anchorX": 0.5, + "anchorY": 0.5, + "offsetX": 0, + "offsetY": 0, + "fit": "contain", + "scaleX": 1, + "scaleY": 1, + "rotation": 0, + "tint": "#ffffff", + "alphaThreshold": 0.75 + }, + "lockRotation": false, + "rotation": 0, + "alpha": 1, + "disposition": -1, + "displayBars": 0, + "bar1": { + "attribute": "resources.hitPoints" + }, + "bar2": { + "attribute": "resources.stress" + }, + "light": { + "negative": false, + "priority": 0, + "alpha": 0.5, + "angle": 360, + "bright": 0, + "color": null, + "coloration": 1, + "dim": 0, + "attenuation": 0.5, + "luminosity": 0.5, + "saturation": 0, + "contrast": 0, + "shadows": 0, + "animation": { + "type": null, + "speed": 5, + "intensity": 5, + "reverse": false + }, + "darkness": { + "min": 0, + "max": 1 + } + }, + "sight": { + "enabled": false, + "range": 0, + "angle": 360, + "visionMode": "basic", + "color": null, + "attenuation": 0.1, + "brightness": 0, + "saturation": 0, + "contrast": 0 + }, + "detectionModes": [], + "occludable": { + "radius": 0 + }, + "ring": { + "enabled": false, + "colors": { + "ring": null, + "background": null + }, + "effects": 1, + "subject": { + "scale": 1, + "texture": null + } + }, + "turnMarker": { + "mode": 1, + "animation": null, + "src": null, + "disposition": false + }, + "movementAction": null, + "flags": {}, + "randomImg": false, + "appendNumber": false, + "prependAdjective": false + }, + "items": [], + "effects": [], + "_key": "!actors!t4cdqTfzcqP3H1vJ" +} diff --git a/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json new file mode 100644 index 00000000..96a2edd7 --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Chainmail_Armor_LzLOJ9EVaHWAjoq9.json @@ -0,0 +1,89 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Advanced Chainmail Armor", + "type": "armor", + "_id": "LzLOJ9EVaHWAjoq9", + "img": "icons/equipment/chest/breastplate-banded-steel-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "heavy", + "effectIds": [ + "qlzHOAnpBYzosQxK" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 13, + "severe": 31 + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "qlzHOAnpBYzosQxK", + "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": 1753807844639, + "modifiedTime": 1753807844639, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!LzLOJ9EVaHWAjoq9.qlzHOAnpBYzosQxK" + } + ], + "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": 1753807810859, + "modifiedTime": 1753807844642, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4d97b8bb --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Full_Plate_Armor_crIbCb9NZ4K0VpoU.json @@ -0,0 +1,94 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Advanced Full Plate Armor", + "type": "armor", + "_id": "crIbCb9NZ4K0VpoU", + "img": "icons/equipment/chest/breastplate-layered-steel-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "veryheavy", + "effectIds": [ + "awdHgEaM54G3emOU" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 15, + "severe": 35 + } + }, + "effects": [ + { + "name": "Very Heavy", + "description": "-2 to Evasion; -1 to Agility", + "img": "icons/commodities/metal/ingot-stamped-steel.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-2" + }, + { + "key": "system.traits.agility.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "awdHgEaM54G3emOU", + "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": 1753809243346, + "modifiedTime": 1753809243346, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!crIbCb9NZ4K0VpoU.awdHgEaM54G3emOU" + } + ], + "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": 1753809204693, + "modifiedTime": 1753809243349, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..032ebe6d --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Gambeson_Armor_epkAmlZVk7HOfUUT.json @@ -0,0 +1,89 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Advanced Gambeson Armor", + "type": "armor", + "_id": "epkAmlZVk7HOfUUT", + "img": "icons/equipment/chest/breastplate-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "flexible", + "effectIds": [ + "Fq9Q93IHCchhfSss" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 9, + "severe": 23 + } + }, + "effects": [ + { + "name": "Flexible", + "description": "+1 to Evasion", + "img": "icons/magic/movement/abstract-ribbons-red-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "1" + } + ], + "_id": "Fq9Q93IHCchhfSss", + "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": 1753807740227, + "modifiedTime": 1753807740227, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!epkAmlZVk7HOfUUT.Fq9Q93IHCchhfSss" + } + ], + "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": 1753807704469, + "modifiedTime": 1753807740230, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ef9d64f9 --- /dev/null +++ b/src/packs/items/armors/armor_Advanced_Leather_Armor_itSOp2GCyem0f7oM.json @@ -0,0 +1,42 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Advanced Leather Armor", + "type": "armor", + "_id": "itSOp2GCyem0f7oM", + "img": "icons/equipment/chest/breastplate-layered-leather-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 5, + "armorFeatures": [], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 11, + "severe": 27 + } + }, + "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": 1753807744573, + "modifiedTime": 1753807795515, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..fb4bad0e --- /dev/null +++ b/src/packs/items/armors/armor_Bellamoi_Fine_Armor_WuoVwZA53XRAIt6d.json @@ -0,0 +1,89 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Bellamoi Fine Armor", + "type": "armor", + "_id": "WuoVwZA53XRAIt6d", + "img": "icons/equipment/chest/breastplate-layered-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "gilded", + "effectIds": [ + "Hy0sNtFS1JAXxgwC" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 11, + "severe": 27 + } + }, + "effects": [ + { + "name": "Gilded", + "description": "+1 to Presence", + "img": "icons/magic/control/control-influence-crown-gold.webp", + "changes": [ + { + "key": "system.traits.presence.value", + "mode": 2, + "value": "1" + } + ], + "_id": "Hy0sNtFS1JAXxgwC", + "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": 1753807887679, + "modifiedTime": 1753807887679, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!WuoVwZA53XRAIt6d.Hy0sNtFS1JAXxgwC" + } + ], + "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": 1753807855787, + "modifiedTime": 1753807887685, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..60521ffc --- /dev/null +++ b/src/packs/items/armors/armor_Bladefare_Armor_mNN6pvcsS10ChrWF.json @@ -0,0 +1,89 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Bladefare Armor", + "type": "armor", + "_id": "mNN6pvcsS10ChrWF", + "img": "icons/equipment/chest/breastplate-collared-steel-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "physical", + "effectIds": [ + "s8KtTIngTjnOlaTP" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 16, + "severe": 39 + } + }, + "effects": [ + { + "name": "Physical", + "description": "You can't mark an Armor Slot to reduce magic damage.", + "img": "icons/commodities/stone/ore-pile-tan.webp", + "changes": [ + { + "key": "system.rules.damageReduction.physical", + "mode": 5, + "value": "1" + } + ], + "_id": "s8KtTIngTjnOlaTP", + "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": 1753808769033, + "modifiedTime": 1753808769033, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!mNN6pvcsS10ChrWF.s8KtTIngTjnOlaTP" + } + ], + "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": 1753808752024, + "modifiedTime": 1753808787752, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f7d07f32 --- /dev/null +++ b/src/packs/items/armors/armor_Chainmail_Armor_haULhuEg37zUUvhb.json @@ -0,0 +1,89 @@ +{ + "folder": "h4QgrovjVZ1oee7O", + "name": "Chainmail Armor", + "type": "armor", + "_id": "haULhuEg37zUUvhb", + "img": "icons/equipment/chest/breastplate-scale-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "heavy", + "effectIds": [ + "ZfO5NjpqEIzZVlPq" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 7, + "severe": 15 + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "ZfO5NjpqEIzZVlPq", + "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": 1753805298651, + "modifiedTime": 1753805298651, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!haULhuEg37zUUvhb.ZfO5NjpqEIzZVlPq" + } + ], + "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": 1753805286605, + "modifiedTime": 1753805329039, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..3d795985 --- /dev/null +++ b/src/packs/items/armors/armor_Channeling_Armor_vMJxEWz1srfwMsoj.json @@ -0,0 +1,89 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Channeling Armor", + "type": "armor", + "_id": "vMJxEWz1srfwMsoj", + "img": "icons/equipment/chest/robe-collared-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "channeling", + "effectIds": [ + "8bwf1Ri3jYkjphEv" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 13, + "severe": 36 + } + }, + "effects": [ + { + "name": "Channeling", + "description": "+1 to Spellcast Rolls", + "img": "icons/magic/symbols/rune-sigil-horned-blue.webp", + "changes": [ + { + "key": "system.bonuses.roll.spellcast", + "mode": 2, + "value": "1" + } + ], + "_id": "8bwf1Ri3jYkjphEv", + "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": 1753809448084, + "modifiedTime": 1753809448084, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!vMJxEWz1srfwMsoj.8bwf1Ri3jYkjphEv" + } + ], + "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": 1753809433880, + "modifiedTime": 1753809460722, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..52002171 --- /dev/null +++ b/src/packs/items/armors/armor_Dragonscale_Armor_mdQ69eFHyAQUDmE7.json @@ -0,0 +1,80 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Dragonscale Armor", + "type": "armor", + "_id": "mdQ69eFHyAQUDmE7", + "img": "icons/equipment/chest/breastplate-rivited-red.webp", + "system": { + "description": "", + "actions": { + "J1MCpcfXByKaSSgx": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Impenetrable", + "description": "Once per short rest, when you would mark your last Hit Point, you can instead mark a Stress.", + "img": "icons/magic/defensive/shield-barrier-flaming-pentagon-purple-orange.webp", + "uses": { + "max": 1, + "recovery": "shortRest", + "value": 0 + }, + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "J1MCpcfXByKaSSgx", + "effects": [], + "systemPath": "actions", + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "impenetrable", + "effectIds": [], + "actionIds": [ + "J1MCpcfXByKaSSgx" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 11, + "severe": 27 + } + }, + "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": 1753807902750, + "modifiedTime": 1753809495490, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..15411b03 --- /dev/null +++ b/src/packs/items/armors/armor_Dunamis_Silkchain_hAY6UgdGT7dj22Pr.json @@ -0,0 +1,104 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Dunamis Silkchain", + "type": "armor", + "_id": "hAY6UgdGT7dj22Pr", + "img": "icons/equipment/chest/robe-layered-red.webp", + "system": { + "description": "", + "actions": { + "8PD5JQuS05IA6HJT": { + "type": "attack", + "actionType": "action", + "chatDisplay": true, + "name": "Slow Time", + "description": "Mark an Armor Slot to roll a d4 and add its result as a bonus to your Evasion against an incoming attack.", + "img": "icons/magic/time/hourglass-brown-orange.webp", + "cost": [ + { + "key": "armorStack", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "roll": { + "type": "diceSet", + "diceRolling": { + "dice": "d4", + "multiplier": "flat", + "flatMultiplier": 1, + "compare": null, + "treshold": null + }, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "useDefault": false + }, + "_id": "8PD5JQuS05IA6HJT", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 7, + "armorFeatures": [ + { + "value": "timeslowing", + "effectIds": [], + "actionIds": [ + "8PD5JQuS05IA6HJT" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 13, + "severe": 36 + } + }, + "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": 1753809264956, + "modifiedTime": 1753809422818, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..0825a7a1 --- /dev/null +++ b/src/packs/items/armors/armor_Elundrian_Chain_Mail_Q6LxmtFetDDkoZVZ.json @@ -0,0 +1,89 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Elundrian Chain Mail", + "type": "armor", + "_id": "Q6LxmtFetDDkoZVZ", + "img": "icons/equipment/chest/breastplate-sculpted-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "warded", + "effectIds": [ + "xGxqTCO8MjNq5Cw6" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 9, + "severe": 21 + } + }, + "effects": [ + { + "name": "Warded", + "description": "You reduce incoming magic damage by your Armor Score before applying it to your damage thresholds.", + "img": "icons/magic/defensive/barrier-shield-dome-pink.webp", + "changes": [ + { + "key": "system.resistance.magical.reduction", + "mode": 2, + "value": "@system.armorScore" + } + ], + "_id": "xGxqTCO8MjNq5Cw6", + "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": 1753805566171, + "modifiedTime": 1753805566171, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!Q6LxmtFetDDkoZVZ.xGxqTCO8MjNq5Cw6" + } + ], + "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": 1753805557786, + "modifiedTime": 1753805605453, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..7e274a0b --- /dev/null +++ b/src/packs/items/armors/armor_Emberwoven_Armor_bcQUh4QG3qFX0Vx6.json @@ -0,0 +1,103 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Emberwoven Armor", + "type": "armor", + "_id": "bcQUh4QG3qFX0Vx6", + "img": "icons/equipment/chest/breastplate-layered-gilded-orange.webp", + "system": { + "description": "", + "actions": { + "L8mHf4A8SylyxsMH": { + "type": "damage", + "actionType": "action", + "chatDisplay": true, + "name": "Burn", + "description": "When an adversary attacks you within Melee range, they mark a Stress.", + "img": "icons/magic/fire/flame-burning-embers-yellow.webp", + "range": "melee", + "target": { + "type": "hostile", + "amount": null + }, + "damage": { + "parts": [ + { + "applyTo": "stress", + "value": { + "custom": { + "enabled": true, + "formula": "1" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false, + "type": [] + } + ], + "includeBase": false + }, + "_id": "L8mHf4A8SylyxsMH", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 0, + "armorFeatures": [ + { + "value": "burning", + "effectIds": [], + "actionIds": [ + "L8mHf4A8SylyxsMH" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 0, + "severe": 0 + } + }, + "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": 1753809470138, + "modifiedTime": 1753809633344, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..73ecfc96 --- /dev/null +++ b/src/packs/items/armors/armor_Full_Fortified_Armor_7emTSt6nhZuTlvt5.json @@ -0,0 +1,89 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Full Fortified Armor", + "type": "armor", + "_id": "7emTSt6nhZuTlvt5", + "img": "icons/equipment/chest/breastplate-layered-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "fortified", + "effectIds": [ + "QIefVb73cm9gYju8" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 15, + "severe": 40 + } + }, + "effects": [ + { + "name": "Fortified", + "description": "When you mark an Armor Slot, you reduce the severity of an attack by two thresholds instead of one.", + "img": "icons/magic/defensive/shield-barrier-glowing-blue.webp", + "changes": [ + { + "key": "system.rules.damageReduction.increasePerArmorMark", + "mode": 5, + "value": "2" + } + ], + "_id": "QIefVb73cm9gYju8", + "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": 1753809671654, + "modifiedTime": 1753809671654, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!7emTSt6nhZuTlvt5.QIefVb73cm9gYju8" + } + ], + "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": 1753809653710, + "modifiedTime": 1753809691935, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4b45cf7e --- /dev/null +++ b/src/packs/items/armors/armor_Full_Plate_Armor_UdUJNa31WxFW2noa.json @@ -0,0 +1,94 @@ +{ + "folder": "h4QgrovjVZ1oee7O", + "name": "Full Plate Armor", + "type": "armor", + "_id": "UdUJNa31WxFW2noa", + "img": "icons/equipment/chest/breastplate-collared-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "veryheavy", + "effectIds": [ + "mfKMW9SX3Mnos1nY" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 8, + "severe": 17 + } + }, + "effects": [ + { + "name": "Very Heavy", + "description": "-2 to Evasion; -1 to Agility", + "img": "icons/commodities/metal/ingot-stamped-steel.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-2" + }, + { + "key": "system.traits.agility.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "mfKMW9SX3Mnos1nY", + "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": 1753805351522, + "modifiedTime": 1753805351522, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!UdUJNa31WxFW2noa.mfKMW9SX3Mnos1nY" + } + ], + "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": 1753805338471, + "modifiedTime": 1753805365355, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c51838e0 --- /dev/null +++ b/src/packs/items/armors/armor_Gambeson_Armor_yJFp1bfpecDcStVK.json @@ -0,0 +1,89 @@ +{ + "folder": "h4QgrovjVZ1oee7O", + "name": "Gambeson Armor", + "type": "armor", + "_id": "yJFp1bfpecDcStVK", + "img": "icons/equipment/chest/vest-leather-tattered-white.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "baseScore": 3, + "armorFeatures": [ + { + "value": "flexible", + "effectIds": [ + "v1FNEsypRF5W6vVc" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 5, + "severe": 11 + } + }, + "effects": [ + { + "name": "Flexible", + "description": "+1 to Evasion", + "img": "icons/magic/movement/abstract-ribbons-red-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "1" + } + ], + "_id": "v1FNEsypRF5W6vVc", + "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": 1753805133921, + "modifiedTime": 1753805133921, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!yJFp1bfpecDcStVK.v1FNEsypRF5W6vVc" + } + ], + "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": 1753804995685, + "modifiedTime": 1753805399875, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..85dd7864 --- /dev/null +++ b/src/packs/items/armors/armor_Harrowbone_Armor_dvyQeUVRLc9y6rnt.json @@ -0,0 +1,96 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Harrowbone Armor", + "type": "armor", + "_id": "dvyQeUVRLc9y6rnt", + "img": "icons/equipment/chest/breastplate-gorget-steel.webp", + "system": { + "description": "", + "actions": { + "IzM88FIxQ35P5VB2": { + "type": "attack", + "actionType": "action", + "chatDisplay": true, + "name": "Resilient", + "description": "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.", + "img": "icons/magic/life/heart-cross-purple-orange.webp", + "roll": { + "type": "diceSet", + "diceRolling": { + "compare": "equal", + "dice": "d6", + "multiplier": "flat", + "flatMultiplier": 1, + "treshold": 6 + }, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "useDefault": false + }, + "_id": "IzM88FIxQ35P5VB2", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "resilient", + "effectIds": [], + "actionIds": [ + "IzM88FIxQ35P5VB2" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 9, + "severe": 21 + } + }, + "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": 1753805616349, + "modifiedTime": 1753807254838, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..62648557 --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Chainmail_Armor_K5WkjS0NGqHYmhU3.json @@ -0,0 +1,89 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Improved Chainmail Armor", + "type": "armor", + "_id": "K5WkjS0NGqHYmhU3", + "img": "icons/equipment/chest/breastplate-metal-scaled-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "heavy", + "effectIds": [ + "JHupzYULxdQzFzuj" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 11, + "severe": 24 + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "JHupzYULxdQzFzuj", + "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": 1753805503527, + "modifiedTime": 1753805503527, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!K5WkjS0NGqHYmhU3.JHupzYULxdQzFzuj" + } + ], + "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": 1753805490635, + "modifiedTime": 1753805512828, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..7e5e36df --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Full_Plate_Armor_9f7RozpPTqrzJS1m.json @@ -0,0 +1,94 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Improved Full Plate Armor", + "type": "armor", + "_id": "9f7RozpPTqrzJS1m", + "img": "icons/equipment/chest/breastplate-cuirass-steel-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "veryheavy", + "effectIds": [ + "wstJ1aKKtmXgCwxB" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 13, + "severe": 28 + } + }, + "effects": [ + { + "name": "Very Heavy", + "description": "-2 to Evasion; -1 to Agility", + "img": "icons/commodities/metal/ingot-stamped-steel.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-2" + }, + { + "key": "system.traits.agility.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "wstJ1aKKtmXgCwxB", + "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": 1753805533549, + "modifiedTime": 1753805533549, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!9f7RozpPTqrzJS1m.wstJ1aKKtmXgCwxB" + } + ], + "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": 1753805522506, + "modifiedTime": 1753805544375, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..8c6a8f2c --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Gambeson_Armor_jphnMZjnS2FkOH3s.json @@ -0,0 +1,89 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Improved Gambeson Armor", + "type": "armor", + "_id": "jphnMZjnS2FkOH3s", + "img": "icons/equipment/chest/breastplate-quilted-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "flexible", + "effectIds": [ + "BFwU3ErPaajUSMUz" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 7, + "severe": 16 + } + }, + "effects": [ + { + "name": "Flexible", + "description": "+1 to Evasion", + "img": "icons/magic/movement/abstract-ribbons-red-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "1" + } + ], + "_id": "BFwU3ErPaajUSMUz", + "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": 1753805414375, + "modifiedTime": 1753805414375, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!jphnMZjnS2FkOH3s.BFwU3ErPaajUSMUz" + } + ], + "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": 1753805377869, + "modifiedTime": 1753805418921, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4d225093 --- /dev/null +++ b/src/packs/items/armors/armor_Improved_Leather_Armor_t91M61pSCMKStTNt.json @@ -0,0 +1,42 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Improved Leather Armor", + "type": "armor", + "_id": "t91M61pSCMKStTNt", + "img": "icons/equipment/chest/breastplate-banded-simple-leather-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 4, + "armorFeatures": [], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 9, + "severe": 20 + } + }, + "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": 1753805428821, + "modifiedTime": 1753805482906, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e80d4f13 --- /dev/null +++ b/src/packs/items/armors/armor_Irontree_Breastplate_Armor_tzZntboNtHL5C6VM.json @@ -0,0 +1,94 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Irontree Breastplate Armor", + "type": "armor", + "_id": "tzZntboNtHL5C6VM", + "img": "icons/equipment/chest/breastplate-layered-leather-brown-silver.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "reinforced", + "effectIds": [ + "P3aCN8PQgPXP4C9M" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 9, + "severe": 20 + } + }, + "effects": [ + { + "name": "Reinforced", + "description": "When you mark your last Armor Slot, increase your damage thresholds by +2 until you clear at least 1 Armor Slot.", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-green.webp", + "changes": [ + { + "key": "system.bunuses.damageThresholds.major", + "mode": 2, + "value": "2" + }, + { + "key": "system.bunuses.damageThresholds.severe", + "mode": 2, + "value": "2" + } + ], + "_id": "P3aCN8PQgPXP4C9M", + "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": 1753807455490, + "modifiedTime": 1753807455490, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!tzZntboNtHL5C6VM.P3aCN8PQgPXP4C9M" + } + ], + "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": 1753807283589, + "modifiedTime": 1753807455497, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..1d87a030 --- /dev/null +++ b/src/packs/items/armors/armor_Leather_Armor_nibfdNtp2PtxvbVz.json @@ -0,0 +1,42 @@ +{ + "folder": "h4QgrovjVZ1oee7O", + "name": "Leather Armor", + "type": "armor", + "_id": "nibfdNtp2PtxvbVz", + "img": "icons/equipment/chest/breastplate-layered-leather-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "baseScore": 3, + "armorFeatures": [], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 6, + "severe": 13 + } + }, + "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": 1753805219679, + "modifiedTime": 1753805275427, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..1192b4d5 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Chainmail_Armor_EsIN5OLKe9ZYFNXZ.json @@ -0,0 +1,89 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Legendary Chainmail Armor", + "type": "armor", + "_id": "EsIN5OLKe9ZYFNXZ", + "img": "icons/equipment/chest/breastplate-banded-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 7, + "armorFeatures": [ + { + "value": "heavy", + "effectIds": [ + "8Oa6Y375X8UpcPph" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 15, + "severe": 40 + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "8Oa6Y375X8UpcPph", + "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": 1753809139589, + "modifiedTime": 1753809139589, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!EsIN5OLKe9ZYFNXZ.8Oa6Y375X8UpcPph" + } + ], + "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": 1753809118507, + "modifiedTime": 1753809151454, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5b2d4a97 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Full_Plate_Armor_SXWjUR2aUR6bYvdl.json @@ -0,0 +1,94 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Legendary Full Plate Armor", + "type": "armor", + "_id": "SXWjUR2aUR6bYvdl", + "img": "icons/equipment/chest/breastplate-layered-steel-blue-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 7, + "armorFeatures": [ + { + "value": "veryheavy", + "effectIds": [ + "zvzkRX2Uevemmbz4" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 17, + "severe": 44 + } + }, + "effects": [ + { + "name": "Very Heavy", + "description": "-2 to Evasion; -1 to Agility", + "img": "icons/commodities/metal/ingot-stamped-steel.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-2" + }, + { + "key": "system.traits.agility.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "zvzkRX2Uevemmbz4", + "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": 1753809171374, + "modifiedTime": 1753809171374, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!SXWjUR2aUR6bYvdl.zvzkRX2Uevemmbz4" + } + ], + "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": 1753809163051, + "modifiedTime": 1753809225793, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e05e5f32 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Gambeson_Armor_c6tMXz4rPf9ioQrf.json @@ -0,0 +1,89 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Legendary Gambeson Armor", + "type": "armor", + "_id": "c6tMXz4rPf9ioQrf", + "img": "icons/equipment/chest/breastplate-layered-leather-blue-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "flexible", + "effectIds": [ + "3AUNxBoj7mp1ziJQ" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 11, + "severe": 32 + } + }, + "effects": [ + { + "name": "Flexible", + "description": "+1 to Evasion", + "img": "icons/magic/movement/abstract-ribbons-red-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "1" + } + ], + "_id": "3AUNxBoj7mp1ziJQ", + "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": 1753809044811, + "modifiedTime": 1753809044811, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!c6tMXz4rPf9ioQrf.3AUNxBoj7mp1ziJQ" + } + ], + "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": 1753809031184, + "modifiedTime": 1753809064934, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9dc82529 --- /dev/null +++ b/src/packs/items/armors/armor_Legendary_Leather_Armor_Tptgl5WOj76TyFn7.json @@ -0,0 +1,42 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Legendary Leather Armor", + "type": "armor", + "_id": "Tptgl5WOj76TyFn7", + "img": "icons/equipment/chest/breastplate-layered-gilded-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 6, + "armorFeatures": [], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 13, + "severe": 36 + } + }, + "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": 1753809078323, + "modifiedTime": 1753809106203, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..0cc3415d --- /dev/null +++ b/src/packs/items/armors/armor_Monett_s_Cloak_AQzU2RsqS5V5bd1v.json @@ -0,0 +1,89 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Monett's Cloak", + "type": "armor", + "_id": "AQzU2RsqS5V5bd1v", + "img": "icons/equipment/chest/coat-collared-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "magical", + "effectIds": [ + "3n4O7PyAWMEFdr5p" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 16, + "severe": 39 + } + }, + "effects": [ + { + "name": "Magical", + "description": "You can't mark an Armor Slot to reduce physical damage.", + "img": "icons/magic/defensive/barrier-shield-dome-blue-purple.webp", + "changes": [ + { + "key": "system.rules.damageReduction.magical", + "mode": 5, + "value": "1" + } + ], + "_id": "3n4O7PyAWMEFdr5p", + "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": 1753808812589, + "modifiedTime": 1753808812589, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!AQzU2RsqS5V5bd1v.3n4O7PyAWMEFdr5p" + } + ], + "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": 1753808797896, + "modifiedTime": 1753808820623, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..a0cb99f1 --- /dev/null +++ b/src/packs/items/armors/armor_Rosewild_Armor_tN8kAeBvNKM3EBFo.json @@ -0,0 +1,72 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Rosewild Armor", + "type": "armor", + "_id": "tN8kAeBvNKM3EBFo", + "img": "icons/equipment/chest/breastplate-banded-leather-purple.webp", + "system": { + "description": "", + "actions": { + "QRTnCYxJfuJHdnyV": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Hope", + "description": "When you would spend a Hope, you can mark an Armor Slot instead.", + "img": "icons/magic/holy/barrier-shield-winged-blue.webp", + "_id": "QRTnCYxJfuJHdnyV", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "hopeful", + "effectIds": [], + "actionIds": [ + "QRTnCYxJfuJHdnyV" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 11, + "severe": 23 + } + }, + "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": 1753807654078, + "modifiedTime": 1753807692793, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..33fef2f5 --- /dev/null +++ b/src/packs/items/armors/armor_Runes_of_Fortification_P4qAEDJUoNLgVRsA.json @@ -0,0 +1,80 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Runes of Fortification", + "type": "armor", + "_id": "P4qAEDJUoNLgVRsA", + "img": "icons/magic/symbols/rune-sigil-red-orange.webp", + "system": { + "description": "", + "actions": { + "37KLF2bim9nRdPTU": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Pain", + "description": "Each time you mark an Armor Slot, you must mark a Stress.", + "img": "icons/skills/wounds/injury-face-impact-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "37KLF2bim9nRdPTU", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "painful", + "effectIds": [], + "actionIds": [ + "37KLF2bim9nRdPTU" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 17, + "severe": 43 + } + }, + "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": 1753808832397, + "modifiedTime": 1753809018449, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..df5cb28f --- /dev/null +++ b/src/packs/items/armors/armor_Runetan_Floating_Armor_tHlBUDQC24YMZqd6.json @@ -0,0 +1,80 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Runetan Floating Armor", + "type": "armor", + "_id": "tHlBUDQC24YMZqd6", + "img": "icons/equipment/chest/breastplate-layered-leather-black.webp", + "system": { + "description": "", + "actions": { + "Nn33zCIcWe6LQMDH": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Shift", + "description": "When you are targeted for an attack, you can mark an Armor Slot to give the attack roll against you disadvantage.", + "img": "icons/magic/defensive/illusion-evasion-echo-purple.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "Nn33zCIcWe6LQMDH", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 4, + "armorFeatures": [ + { + "value": "shifting", + "effectIds": [], + "actionIds": [ + "Nn33zCIcWe6LQMDH" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 9, + "severe": 20 + } + }, + "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": 1753807528637, + "modifiedTime": 1753808232404, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4d8ccfa6 --- /dev/null +++ b/src/packs/items/armors/armor_Savior_Chainmail_8X16lJQ3xltTwynm.json @@ -0,0 +1,119 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Savior Chainmail", + "type": "armor", + "_id": "8X16lJQ3xltTwynm", + "img": "icons/equipment/chest/breastplate-layered-leather-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 8, + "armorFeatures": [ + { + "value": "difficult", + "effectIds": [ + "rkrqlwqtR9REgRx7" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 18, + "severe": 48 + } + }, + "effects": [ + { + "name": "Difficult", + "description": "-1 to all character traits and Evasion", + "img": "icons/magic/control/buff-flight-wings-red.webp", + "changes": [ + { + "key": "system.traits.agility.value", + "mode": 2, + "value": "-1" + }, + { + "key": "system.traits.strength.value", + "mode": 2, + "value": "-1" + }, + { + "key": "system.traits.finesse.value", + "mode": 2, + "value": "-1" + }, + { + "key": "system.traits.instinct.value", + "mode": 2, + "value": "-1" + }, + { + "key": "system.traits.presence.value", + "mode": 2, + "value": "-1" + }, + { + "key": "system.traits.knowledge.value", + "mode": 2, + "value": "-1" + }, + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "rkrqlwqtR9REgRx7", + "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": 1753809744697, + "modifiedTime": 1753809744697, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!8X16lJQ3xltTwynm.rkrqlwqtR9REgRx7" + } + ], + "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": 1753809733405, + "modifiedTime": 1753809762536, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..07536704 --- /dev/null +++ b/src/packs/items/armors/armor_Spiked_Plate_Armor_QjwsIhXKqnlvRBMv.json @@ -0,0 +1,94 @@ +{ + "folder": "rkSdPu86ybLz6aKF", + "name": "Spiked Plate Armor", + "type": "armor", + "_id": "QjwsIhXKqnlvRBMv", + "img": "icons/equipment/chest/breastplate-banded-steel-studded.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "sharp", + "effectIds": [ + "V8CcTcVAIxHq8KNd" + ], + "actionIds": [] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 10, + "severe": 25 + } + }, + "effects": [ + { + "name": "Sharp", + "description": "On a successful attack against a target within Melee range, add a d4 to the damage roll.", + "img": "icons/magic/defensive/shield-barrier-glowing-triangle-green.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.dice", + "mode": 2, + "value": "1d4" + }, + { + "key": "system.bonuses.damage.secondaryWeapon.dice", + "mode": 2, + "value": "1d4" + } + ], + "_id": "V8CcTcVAIxHq8KNd", + "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": 1753808658514, + "modifiedTime": 1753808658514, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!QjwsIhXKqnlvRBMv.V8CcTcVAIxHq8KNd" + } + ], + "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": 1753808464678, + "modifiedTime": 1753808691813, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ae9c849b --- /dev/null +++ b/src/packs/items/armors/armor_Tyris_Soft_Armor_PSW3BxCGmtLeWOxM.json @@ -0,0 +1,72 @@ +{ + "folder": "hLn0v6ov6KuFgptu", + "name": "Tyris Soft Armor", + "type": "armor", + "_id": "PSW3BxCGmtLeWOxM", + "img": "icons/equipment/chest/robe-layered-purple.webp", + "system": { + "description": "", + "actions": { + "Ch6IhuPewBeseGez": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quiet", + "description": "You gain a +2 bonus to rolls you make to move silently.", + "img": "icons/magic/perception/silhouette-stealth-shadow.webp", + "_id": "Ch6IhuPewBeseGez", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "baseScore": 5, + "armorFeatures": [ + { + "value": "quiet", + "effectIds": [], + "actionIds": [ + "Ch6IhuPewBeseGez" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 8, + "severe": 18 + } + }, + "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": 1753807607742, + "modifiedTime": 1753807646156, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..44f644b0 --- /dev/null +++ b/src/packs/items/armors/armor_Veritas_Opal_Armor_OvzgUTYy2RCN85vV.json @@ -0,0 +1,72 @@ +{ + "folder": "Hbjp64XzuyJs2hOs", + "name": "Veritas Opal Armor", + "type": "armor", + "_id": "OvzgUTYy2RCN85vV", + "img": "icons/equipment/chest/breastplate-collared-steel-green.webp", + "system": { + "description": "", + "actions": { + "sY3W5JYspN5Du5ag": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Truthseeking", + "description": "This armor glows when another creature within Close range tells a lie.", + "img": "icons/magic/perception/orb-crystal-ball-scrying-blue.webp", + "_id": "sY3W5JYspN5Du5ag", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "baseScore": 6, + "armorFeatures": [ + { + "value": "truthseeking", + "effectIds": [], + "actionIds": [ + "sY3W5JYspN5Du5ag" + ] + } + ], + "marks": { + "value": 0 + }, + "baseThresholds": { + "major": 13, + "severe": 36 + } + }, + "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": 1753809706360, + "modifiedTime": 1753809725217, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!OvzgUTYy2RCN85vV" +} diff --git a/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json b/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json index d30b9b39..22f5ad71 100644 --- a/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json +++ b/src/packs/items/consumables/consumable_Armor_Stitcher_VlbsCjvvLNfTzNXb.json @@ -6,7 +6,38 @@ "system": { "description": "You can use this stitcher to spend any number of Hope and clear that many Armor Slots.
", "quantity": 1, - "actions": {}, + "actions": { + "htoGx8qrv8trds81": { + "type": "effect", + "_id": "htoGx8qrv8trds81", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": true, + "key": "hope", + "value": 1, + "step": 1, + "keyIsID": false + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Stitch", + "img": "icons/skills/trades/textiles-stitching-leather-brown.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +52,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588973384, - "modifiedTime": 1753623129674, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990471152, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 6ec2165a..fc76dbc1 100644 --- a/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json +++ b/src/packs/items/consumables/consumable_Attune_Potion_JGD3M9hBHtVAA8XP.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587072840, - "modifiedTime": 1753587081602, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991772642, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!JGD3M9hBHtVAA8XP.I5vgALTNDVApxy9d" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587033468, - "modifiedTime": 1753587890614, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993286360, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ec74d7a2..bb4e36bf 100644 --- a/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json +++ b/src/packs/items/consumables/consumable_Blinding_Orb_eAXHdzA5qNPldOpn.json @@ -57,7 +57,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You are Vulnerable until you mark a Hit Point.
", "tint": "#ffffff", "statuses": [ "vulnerable" @@ -68,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592689854, - "modifiedTime": 1753592707034, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991240756, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!eAXHdzA5qNPldOpn.nryJhrF26hyFQUxH" } diff --git a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json index 2609a130..e30a3678 100644 --- a/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json +++ b/src/packs/items/consumables/consumable_Bolster_Potion_FOPQNqXbiVO0ilYL.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753586918808, - "modifiedTime": 1753586928363, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991761053, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!FOPQNqXbiVO0ilYL.HVCJp9Tkhr1i4Oc1" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753586850134, - "modifiedTime": 1753587920117, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993272604, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!FOPQNqXbiVO0ilYL" } diff --git a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json index 94cfbcb9..80b63739 100644 --- a/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json +++ b/src/packs/items/consumables/consumable_Charm_Potion_CVBbFfOY75YwyQsp.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587164842, - "modifiedTime": 1753587173489, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753991748543, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!CVBbFfOY75YwyQsp.COrKb7gBin4Ro6r6" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587097370, - "modifiedTime": 1753587932738, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993259552, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!CVBbFfOY75YwyQsp" } diff --git a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json index 274efd2b..3f5815a8 100644 --- a/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json +++ b/src/packs/items/consumables/consumable_Control_Potion_eeBhZSGLjuNZuJuI.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -73,12 +73,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587008395, - "modifiedTime": 1753587017580, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993225233, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!eeBhZSGLjuNZuJuI.1VAQYZ1YYc9ew9UR" } @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753586944889, - "modifiedTime": 1753587943049, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993217076, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 eafe74d0..6518176c 100644 --- a/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json +++ b/src/packs/items/consumables/consumable_Death_Tea_xDnJeF1grkmKck8Q.json @@ -20,7 +20,12 @@ "max": null, "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "IqlpqsgurXsUEQhs", + "onSave": false + } + ], "target": { "type": null, "amount": null @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Death Tea", + "img": "icons/consumables/drinks/wine-amphora-clay-gray.webp", + "origin": "Compendium.daggerheart.consumables.Item.xDnJeF1grkmKck8Q", + "transfer": false, + "_id": "IqlpqsgurXsUEQhs", + "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": "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, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753993240647, + "modifiedTime": 1753993244347, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!xDnJeF1grkmKck8Q.IqlpqsgurXsUEQhs" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592717630, - "modifiedTime": 1753592777582, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993240672, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!xDnJeF1grkmKck8Q" } diff --git a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json index d11569cc..98a7b646 100644 --- a/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json +++ b/src/packs/items/consumables/consumable_Dripfang_Poison_eU8VpbWB2NHIL47n.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "damage": { @@ -52,7 +52,7 @@ "includeBase": false }, "target": { - "type": null, + "type": "self", "amount": null }, "effects": [], @@ -75,12 +75,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590938047, - "modifiedTime": 1753591027903, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993201934, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 9b4c1c0f..2e3eaebe 100644 --- a/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json +++ b/src/packs/items/consumables/consumable_Enlighten_Potion_aWHSO2AqDufi7nL4.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587185754, - "modifiedTime": 1753588649868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993190563, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 abea2847..b2467459 100644 --- a/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json +++ b/src/packs/items/consumables/consumable_Feast_of_Xuria_aX6NyxkNzu0LcJpt.json @@ -6,7 +6,124 @@ "system": { "description": "You can eat this meal to clear all HP and Stress and gain 1d4 Hope.
", "quantity": 1, - "actions": {}, + "actions": { + "TL1fJitAJmDzrnHT": { + "type": "healing", + "_id": "TL1fJitAJmDzrnHT", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "@system.resources.hitPoints.max" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + }, + { + "value": { + "custom": { + "enabled": true, + "formula": "@system.resources.stress.max" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + }, + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": null + }, + "applyTo": "hope", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Eat", + "img": "icons/consumables/food/bowl-stew-tofu-potato-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +138,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591925502, - "modifiedTime": 1753623203098, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993182306, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!aX6NyxkNzu0LcJpt" } diff --git a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json index 86e4dd75..8a32c524 100644 --- a/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json +++ b/src/packs/items/consumables/consumable_Grindletooth_Venom_8WkhvSzeOmLdnoLJ.json @@ -7,9 +7,9 @@ "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.
", "quantity": 1, "actions": { - "PxLGZBoJCS0L4QZl": { - "type": "damage", - "_id": "PxLGZBoJCS0L4QZl", + "BuzdaD4vLsbBS2gy": { + "type": "effect", + "_id": "BuzdaD4vLsbBS2gy", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,53 +17,79 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "physical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "yx4ZkXeuXgw2KvV4", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], - "name": "Apply Venom", + "name": "Apply", "img": "icons/consumables/potions/bottle-conical-corked-labeled-skull-poison-green.webp", "range": "" } }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Grindletooth Venom", + "img": "icons/consumables/potions/bottle-conical-corked-labeled-skull-poison-green.webp", + "origin": "Compendium.daggerheart.consumables.Item.8WkhvSzeOmLdnoLJ", + "transfer": false, + "_id": "yx4ZkXeuXgw2KvV4", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d6", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "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, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753991894209, + "modifiedTime": 1753992577548, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!8WkhvSzeOmLdnoLJ.yx4ZkXeuXgw2KvV4" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587386639, - "modifiedTime": 1753587966903, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993171395, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 faea5ef7..7638aaaa 100644 --- a/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json +++ b/src/packs/items/consumables/consumable_Growing_Potion_fl2f3ees8RFMze9t.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -100,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592174440, - "modifiedTime": 1753592211868, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993162834, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 2599f827..14cf057b 100644 --- a/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json +++ b/src/packs/items/consumables/consumable_Health_Potion_Aruc2NLutWuVIjP1.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+1 HP.
", "quantity": 1, - "actions": {}, + "actions": { + "O5MYyHpkiEz9uf6A": { + "type": "healing", + "_id": "O5MYyHpkiEz9uf6A", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "dice": "d4", + "bonus": 1, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-corked-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588839527, - "modifiedTime": 1753623230976, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993155821, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 276d8595..1981a439 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 @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "QyzXAnvho7lVQQtP", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Homet’s Secret Potion", + "img": "icons/consumables/potions/conical-ornate-purple.webp", + "origin": "Compendium.daggerheart.consumables.Item.VSwa1LpQ9PjZKsWF", + "transfer": false, + "_id": "QyzXAnvho7lVQQtP", + "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": "The next successful attack you make critically succeeds.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992037102, + "modifiedTime": 1753992049261, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!VSwa1LpQ9PjZKsWF.QyzXAnvho7lVQQtP" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589998065, - "modifiedTime": 1753590051364, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993147954, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!VSwa1LpQ9PjZKsWF" } 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 102359d3..0f9fe097 100644 --- a/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json +++ b/src/packs/items/consumables/consumable_Improved_Grindletooth_Venom_BqBWXXe9T07AMV4u.json @@ -7,9 +7,9 @@ "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.
", "quantity": 1, "actions": { - "qCr94sRkuODpywiZ": { - "type": "damage", - "_id": "qCr94sRkuODpywiZ", + "KhZ4WVT9cLA1a1y8": { + "type": "effect", + "_id": "KhZ4WVT9cLA1a1y8", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,53 +17,79 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d8", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "physical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "P7tbNjq58bQ9R1Cc", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], - "name": "Apply Venom", + "name": "Apply", "img": "icons/consumables/potions/potion-jar-corked-labeled-poison-skull-green.webp", "range": "" } }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Improved Grindletooth Venom", + "img": "icons/consumables/potions/potion-jar-corked-labeled-poison-skull-green.webp", + "origin": "Compendium.daggerheart.consumables.Item.BqBWXXe9T07AMV4u", + "transfer": false, + "_id": "P7tbNjq58bQ9R1Cc", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d8", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "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, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992123122, + "modifiedTime": 1753992593459, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!BqBWXXe9T07AMV4u.P7tbNjq58bQ9R1Cc" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588170670, - "modifiedTime": 1753588234520, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992123149, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!BqBWXXe9T07AMV4u" } 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 4442e555..c5f17fea 100644 --- a/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json +++ b/src/packs/items/consumables/consumable_Major_Attune_Potion_CCPFm5iXXwvyYYwR.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589747286, - "modifiedTime": 1753589806499, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993121571, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 b1328d06..51d5b20d 100644 --- a/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json +++ b/src/packs/items/consumables/consumable_Major_Bolster_Potion_mnyQDRtngWWQeRXF.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589623872, - "modifiedTime": 1753589654996, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993114459, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 b45a434f..bba3e34d 100644 --- a/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json +++ b/src/packs/items/consumables/consumable_Major_Charm_Potion_IJLAUlQymbSjzsri.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589816684, - "modifiedTime": 1753589854510, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993108884, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 5e16f5ad..daeec81e 100644 --- a/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json +++ b/src/packs/items/consumables/consumable_Major_Control_Potion_80s1FLmTLtohZ5GH.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589675185, - "modifiedTime": 1753589723393, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993102418, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ba6c1f17..ad02bbf2 100644 --- a/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json +++ b/src/packs/items/consumables/consumable_Major_Enlighten_Potion_SDdv1G2veMLKrxcJ.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589874661, - "modifiedTime": 1753589930795, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993094810, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 90c758f4..ba145323 100644 --- a/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json +++ b/src/packs/items/consumables/consumable_Major_Health_Potion_cM7pHe8bBAxSZ2xR.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+2 HP.
", "quantity": 1, - "actions": {}, + "actions": { + "Xm2ldAlmUQY4jlLb": { + "type": "healing", + "_id": "Xm2ldAlmUQY4jlLb", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "dice": "d4", + "bonus": 2, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-round-label-cork-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591046168, - "modifiedTime": 1753623266522, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993085839, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 43bfa7ed..5fbd865d 100644 --- a/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json +++ b/src/packs/items/consumables/consumable_Major_Stamina_Potion_I4cQ03xbxnc81EGa.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+2 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "3duuNVqCeQaUUKTo": { + "type": "healing", + "_id": "3duuNVqCeQaUUKTo", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": 2 + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-round-label-cork-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591113317, - "modifiedTime": 1753623276997, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993078821, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 0c969d9f..5fe693f8 100644 --- a/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json +++ b/src/packs/items/consumables/consumable_Major_Stride_Potion_yK6eEDUrsPbZA8G0.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753589545730, - "modifiedTime": 1753589592499, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993065896, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 5b50792f..2e883d2d 100644 --- a/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json +++ b/src/packs/items/consumables/consumable_Minor_Health_Potion_tPfKtKRRjv8qdSqy.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4 HP.
", "quantity": 1, - "actions": {}, + "actions": { + "9HVL2MPFX9VGiSsV": { + "type": "healing", + "_id": "9HVL2MPFX9VGiSsV", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/potion-tube-corked-red.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587253431, - "modifiedTime": 1753623289863, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993058583, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 f5a18ef8..d8cdb7a9 100644 --- a/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json +++ b/src/packs/items/consumables/consumable_Minor_Stamina_Potion_b6vGSPFWOlzZZDLO.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "fdjpkjhzHQOrZPm0": { + "type": "healing", + "_id": "fdjpkjhzHQOrZPm0", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/potion-tube-corked-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587324465, - "modifiedTime": 1753623297325, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993052307, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!b6vGSPFWOlzZZDLO" } diff --git a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json index ca8fc106..8ccb3846 100644 --- a/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json +++ b/src/packs/items/consumables/consumable_Morphing_Clay_f1NHVSIHJJCIOaBl.json @@ -25,12 +25,17 @@ ], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "rMno0zO5Cbwlu4zn", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Use", @@ -40,7 +45,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Morphing Clay", + "img": "icons/commodities/stone/ore-chunk-brown.webp", + "origin": "Compendium.daggerheart.consumables.Item.f1NHVSIHJJCIOaBl", + "transfer": false, + "_id": "rMno0zO5Cbwlu4zn", + "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": "Your face is unrecognizable until your next rest.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992314196, + "modifiedTime": 1753992340780, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!f1NHVSIHJJCIOaBl.rMno0zO5Cbwlu4zn" + } + ], "folder": null, "sort": 0, "ownership": { @@ -52,12 +102,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588254032, - "modifiedTime": 1753588327474, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753993039274, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 445ea187..5dc7f067 100644 --- a/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json +++ b/src/packs/items/consumables/consumable_Mythic_Dust_Zsh2AvZr8EkGtLyw.json @@ -7,9 +7,9 @@ "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.
", "quantity": 1, "actions": { - "yAE40wCrWg0qC3z0": { - "type": "damage", - "_id": "yAE40wCrWg0qC3z0", + "oHph7e6VrOwPetbE": { + "type": "effect", + "_id": "oHph7e6VrOwPetbE", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,53 +17,79 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d12", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "magical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "L68lFhuWdS3ppDxR", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], - "name": "Apply", + "name": "Use", "img": "icons/commodities/materials/bowl-powder-grey.webp", "range": "" } }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Mythic Dust", + "img": "icons/commodities/materials/bowl-powder-grey.webp", + "origin": "Compendium.daggerheart.consumables.Item.Zsh2AvZr8EkGtLyw", + "transfer": false, + "_id": "L68lFhuWdS3ppDxR", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.magical.dice", + "mode": 2, + "value": "1d12", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "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, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992360178, + "modifiedTime": 1753992538796, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!Zsh2AvZr8EkGtLyw.L68lFhuWdS3ppDxR" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590241722, - "modifiedTime": 1753590307682, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992387326, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ba809758..947a533f 100644 --- a/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json +++ b/src/packs/items/consumables/consumable_Ogre_Musk_qr1bosjFcUfuwq4B.json @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "n73d0J4oMCBIPWHN", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Use", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Ogre Musk", + "img": "icons/commodities/materials/slime-thick-green.webp", + "origin": "Compendium.daggerheart.consumables.Item.qr1bosjFcUfuwq4B", + "transfer": false, + "_id": "n73d0J4oMCBIPWHN", + "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 cannot be tracked by mundane or magical means until your next rest.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992438445, + "modifiedTime": 1753992468525, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!qr1bosjFcUfuwq4B.n73d0J4oMCBIPWHN" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591168468, - "modifiedTime": 1753591274462, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992446047, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 16496808..f3c097bb 100644 --- a/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json +++ b/src/packs/items/consumables/consumable_Potion_of_Stability_dvL8oaxpEF6jKvYN.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -100,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588038000, - "modifiedTime": 1753616591291, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992490244, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8d2b2fa5..3848d6a0 100644 --- a/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json +++ b/src/packs/items/consumables/consumable_Redthorn_Saliva_s2Exl2XFuoOhtIov.json @@ -7,9 +7,9 @@ "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.
", "quantity": 1, "actions": { - "RJ9WXmH6mwQKpS8O": { - "type": "damage", - "_id": "RJ9WXmH6mwQKpS8O", + "kOU2DpAIHvQsFY5A": { + "type": "effect", + "_id": "kOU2DpAIHvQsFY5A", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,45 +17,19 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": false - }, - "multiplier": "flat", - "flatMultiplier": 1, - "dice": "d12", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [ - "physical" - ], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [ + { + "_id": "tWf00ezdpxQQLuZ1", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, - "effects": [], "name": "Apply", "img": "icons/commodities/materials/slime-thick-blue.webp", "range": "" @@ -63,7 +37,59 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Redthorn Saliva", + "img": "icons/commodities/materials/slime-thick-blue.webp", + "origin": "Compendium.daggerheart.consumables.Item.s2Exl2XFuoOhtIov", + "transfer": false, + "_id": "tWf00ezdpxQQLuZ1", + "type": "base", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.dice", + "mode": 2, + "value": "1d12", + "priority": null + } + ], + "disabled": false, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "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, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992517609, + "modifiedTime": 1753992565438, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!s2Exl2XFuoOhtIov.tWf00ezdpxQQLuZ1" + } + ], "folder": null, "sort": 0, "ownership": { @@ -75,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590061810, - "modifiedTime": 1753590334574, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992517634, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!s2Exl2XFuoOhtIov" } diff --git a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json index 8dc3db65..5051a772 100644 --- a/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json +++ b/src/packs/items/consumables/consumable_Shrinking_Potion_HGixKenQwhyRAYNk.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -100,12 +100,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592077792, - "modifiedTime": 1753592138977, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992994457, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8814e290..316ccdfa 100644 --- a/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json +++ b/src/packs/items/consumables/consumable_Sleeping_Sap_XZavUVlHEvE2srEt.json @@ -6,7 +6,75 @@ "system": { "description": "You can drink this potion to fall asleep for a full night’s rest. You clear all Stress upon waking.
", "quantity": 1, - "actions": {}, + "actions": { + "0cqzI66ChzO6x8WF": { + "type": "healing", + "_id": "0cqzI66ChzO6x8WF", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "@system.resources.stress.max" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Wake", + "img": "icons/consumables/potions/bottle-bulb-corked-labeled-blue.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591837472, - "modifiedTime": 1753623358593, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992986613, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 ddada48f..c53d0f0e 100644 --- a/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json +++ b/src/packs/items/consumables/consumable_Snap_Powder_cg6VtQ0eVZjDdcK0.json @@ -6,7 +6,83 @@ "system": { "description": "Mark a Stress and clear a HP.
", "quantity": 1, - "actions": {}, + "actions": { + "FVn1NAbzHHyX2lsM": { + "type": "healing", + "_id": "FVn1NAbzHHyX2lsM", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "1" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Imbibe", + "img": "icons/commodities/materials/bowl-powder-gold.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +97,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588752841, - "modifiedTime": 1753623348062, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992977908, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 a8eb8b4a..f09738ee 100644 --- a/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json +++ b/src/packs/items/consumables/consumable_Stamina_Potion_hf3k1POoVSooJyN2.json @@ -6,7 +6,74 @@ "system": { "description": "Clear 1d4+1 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "BnYXCo5zr50Sw8gj": { + "type": "healing", + "_id": "BnYXCo5zr50Sw8gj", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d4", + "bonus": 1 + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Drink", + "img": "icons/consumables/potions/bottle-corked-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588904835, - "modifiedTime": 1753623366482, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992968712, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!hf3k1POoVSooJyN2" } diff --git a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json index 2f2bdf11..b286bd8f 100644 --- a/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json +++ b/src/packs/items/consumables/consumable_Stride_Potion_lNtcrkgFGOJNaroE.json @@ -17,7 +17,7 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, "effects": [ @@ -27,7 +27,7 @@ } ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -94,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753585993187, - "modifiedTime": 1753587999711, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992957300, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 a1f1fbf7..4e8d828d 100644 --- a/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json +++ b/src/packs/items/consumables/consumable_Sun_Tree_Sap_kwexUzdM9wm1Qums.json @@ -7,9 +7,9 @@ "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.
", "quantity": 1, "actions": { - "bxM1ig880ykRgmTl": { - "type": "effect", - "_id": "bxM1ig880ykRgmTl", + "Fh7OR8ZmiLNvRPHa": { + "type": "attack", + "_id": "Fh7OR8ZmiLNvRPHa", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,15 +17,39 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "damage": { + "parts": [], + "includeBase": false + }, "target": { - "type": null, + "type": "any", "amount": null }, - "name": "Drink", + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Consume", "img": "icons/consumables/drinks/wine-amphora-clay-pink.webp", "range": "" } @@ -44,12 +68,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753590791260, - "modifiedTime": 1753590920951, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992739516, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 5db74f3b..382217a5 100644 --- a/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json +++ b/src/packs/items/consumables/consumable_Sweet_Moss_GrDrRqWgv7gvl9vn.json @@ -6,7 +6,140 @@ "system": { "description": "You can consume this moss during a rest to clear 1d10 HP or 1d10 Stress.
", "quantity": 1, - "actions": {}, + "actions": { + "Sft4HkhlqsYH5qKI": { + "type": "healing", + "_id": "Sft4HkhlqsYH5qKI", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d10", + "bonus": null + }, + "applyTo": "hitPoints", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Clear Hit Points", + "img": "icons/consumables/plants/succulent-bundle-green.webp", + "range": "" + }, + "IolxVguij8PjHSVt": { + "type": "healing", + "_id": "IolxVguij8PjHSVt", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": false + }, + "multiplier": "flat", + "dice": "d10", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "stress", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Clear Stress", + "img": "icons/consumables/plants/succulent-bundle-green.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +154,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753592391195, - "modifiedTime": 1753623392811, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992944498, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!GrDrRqWgv7gvl9vn" } diff --git a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json index 2c6cff6d..487b278f 100644 --- a/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json +++ b/src/packs/items/consumables/consumable_Varik_Leaves_hvy5BkG3F6iOIXTx.json @@ -6,7 +6,75 @@ "system": { "description": "You can eat these paired leaves to immediately gain 2 Hope.
", "quantity": 1, - "actions": {}, + "actions": { + "9e4l2Yiy8uV26SQF": { + "type": "healing", + "_id": "9e4l2Yiy8uV26SQF", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [ + { + "value": { + "custom": { + "enabled": true, + "formula": "2" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "applyTo": "hope", + "base": false, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "type": [] + } + ], + "includeBase": false + }, + "target": { + "type": "self", + "amount": null + }, + "effects": [], + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "name": "Eat", + "img": "icons/consumables/plants/leaf-serrated-pink.webp", + "range": "" + } + }, "consumeOnUse": true }, "effects": [], @@ -21,12 +89,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587484164, - "modifiedTime": 1753623431444, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992927147, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8d4d1ae8..716c5210 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json +++ b/src/packs/items/consumables/consumable_Vial_of_Darksmoke_Nwv5ydGf0MWnzq1n.json @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753588345314, - "modifiedTime": 1753616649293, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992848674, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 22b09db6..7dd0d58e 100644 --- a/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json +++ b/src/packs/items/consumables/consumable_Vial_of_Moondrip_VqEX5YwK5oL3r1t6.json @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "548KAUPcSbQLsivh", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Drink", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Vial of Moondrip", + "img": "icons/consumables/potions/bottle-ornate-bat-teal.webp", + "origin": "Compendium.daggerheart.consumables.Item.VqEX5YwK5oL3r1t6", + "transfer": false, + "_id": "548KAUPcSbQLsivh", + "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 see in total darkness until your next rest.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992869479, + "modifiedTime": 1753992876165, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!VqEX5YwK5oL3r1t6.548KAUPcSbQLsivh" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753587590537, - "modifiedTime": 1753588714959, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992914849, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!VqEX5YwK5oL3r1t6" } diff --git a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json index 71ccfa52..e63956c2 100644 --- a/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json +++ b/src/packs/items/consumables/consumable_Wingsprout_n10vozlmosVR6lo4.json @@ -17,12 +17,17 @@ "cost": [], "uses": { "value": null, - "max": null, + "max": "", "recovery": null }, - "effects": [], + "effects": [ + { + "_id": "80F8gAn7ejhhNL7R", + "onSave": false + } + ], "target": { - "type": null, + "type": "self", "amount": null }, "name": "Use", @@ -32,7 +37,52 @@ }, "consumeOnUse": true }, - "effects": [], + "effects": [ + { + "name": "Wingsprout", + "img": "icons/consumables/plants/leaf-broad-blue.webp", + "origin": "Compendium.daggerheart.consumables.Item.n10vozlmosVR6lo4", + "transfer": false, + "_id": "80F8gAn7ejhhNL7R", + "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 gain magic wings that allow you to fly for a number of minutes equal to your level.
", + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753992894565, + "modifiedTime": 1753992898781, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!n10vozlmosVR6lo4.80F8gAn7ejhhNL7R" + } + ], "folder": null, "sort": 0, "ownership": { @@ -44,12 +94,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753591283853, - "modifiedTime": 1753591361344, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753992905805, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!n10vozlmosVR6lo4" } diff --git a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json index b73f9fcd..b1fa3700 100644 --- a/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json +++ b/src/packs/items/loot/loot_Arcane_Prism_Mn1eo2Mdtu1kzyxB.json @@ -4,7 +4,7 @@ "_id": "Mn1eo2Mdtu1kzyxB", "img": "icons/commodities/gems/gem-faceted-trillion-blue.webp", "system": { - "description": "", + "description": "Position this prism in a location of your choosing and activate it. All allies within Close range of it gain a +1 bonus to their Spellcast Rolls. While activated, the prism can’t be moved. Once the prism is deactivated, it can’t be activated again until your next long rest.
", "quantity": 1, "actions": { "QgBDJh0laEvOB94w": { @@ -93,12 +93,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753626536923, - "modifiedTime": 1753626610902, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989088942, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 6075ed0f..59909fa7 100644 --- a/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json +++ b/src/packs/items/loot/loot_Attune_Relic_vK6bKyQTT3m8WvMh.json @@ -13,7 +13,7 @@ "name": "Attune Relic", "type": "base", "_id": "KmoJVnCQJUGyrZIk", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/magic/perception/eye-ringed-green.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Instinct.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639655271, - "modifiedTime": 1753639665432, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989634795, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!vK6bKyQTT3m8WvMh.KmoJVnCQJUGyrZIk" } 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 954fc9e0..767dc8e0 100644 --- a/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json +++ b/src/packs/items/loot/loot_Bag_of_Ficklesand_v758j4FwNVAurhYK.json @@ -6,9 +6,108 @@ "system": { "description": "You can convince this small bag of sand to be much heavier or lighter with a successful [[/dr trait=\"presence\" difficulty=\"10\"]]. Additionally, on a successful [[/dr trait=\"finesse\" difficulty=\"10\"]], you can blow a bit of sand into a target’s face to make them temporarily Vulnerable.
You gain a +1 bonus to your Strength.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639476499, - "modifiedTime": 1753639561079, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989646651, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!m3EpxlDgxn2tCDDR.ByYXvJNr5YbXqn8I" } 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 2856ffc7..3112c665 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 @@ -7,9 +7,9 @@ "description": "Once per long rest, you can open this small box and roll a [[/r d12]]. On a result of 1–6, it’s empty. On a result of 7–10, it contains one random common consumable. On a result of 11–12, it contains two random common consumables.
", "quantity": 1, "actions": { - "5vW3p31WvGN6v8qc": { - "type": "effect", - "_id": "5vW3p31WvGN6v8qc", + "lt1iEma1OVUNZ77o": { + "type": "attack", + "_id": "lt1iEma1OVUNZ77o", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,14 +17,38 @@ "cost": [], "uses": { "value": null, - "max": 1, + "max": "1", "recovery": "longRest" }, - "effects": [], + "damage": { + "parts": [], + "includeBase": false + }, "target": { "type": "any", "amount": null }, + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d12", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, "name": "Open", "img": "icons/containers/boxes/crate-heavy-yellow.webp", "range": "" @@ -43,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753638361357, - "modifiedTime": 1753638425801, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989365853, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 44103e9a..82a1078a 100644 --- a/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json +++ b/src/packs/items/loot/loot_Calming_Pendant_tgFFMxpuRSiRrrEB.json @@ -6,7 +6,54 @@ "system": { "description": "When you would mark your last Stress, roll a [[/r d6]]. On a result of 5 or higher, don’t mark it.
", "quantity": 1, - "actions": {} + "actions": { + "wIlkGuUddWSUp4nN": { + "type": "attack", + "_id": "wIlkGuUddWSUp4nN", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "roll": { + "type": "diceSet", + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "flat", + "flatMultiplier": 1, + "dice": "d6", + "compare": "aboveEqual", + "treshold": 5 + }, + "useDefault": false + }, + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Use", + "img": "icons/equipment/neck/amulet-round-blue.webp", + "range": "" + } + } }, "effects": [], "folder": null, @@ -20,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753637842111, - "modifiedTime": 1753637884439, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989405747, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 8e41852a..19ef04c7 100644 --- a/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json +++ b/src/packs/items/loot/loot_Charging_Quiver_gsUDP90d4SRtLEUn.json @@ -6,62 +6,67 @@ "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": { - "VI11nILEneaigrRE": { - "type": "damage", - "_id": "VI11nILEneaigrRE", - "systemPath": "actions", - "description": "", - "chatDisplay": true, - "actionType": "action", - "cost": [], - "uses": { - "value": null, - "max": null, - "recovery": null - }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": true, - "formula": "@tier" - }, - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, - "target": { - "type": "any", - "amount": null - }, - "effects": [], - "name": "Use Arrow", - "img": "icons/containers/ammunition/arrows-quiver-grey-gold.webp", - "range": "" - } - } + "actions": {} }, - "effects": [], + "effects": [ + { + "name": "Charging Quiver", + "type": "base", + "_id": "0zebbOsyjkm9IqE6", + "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.bonus", + "mode": 2, + "value": "@system.tier", + "priority": null + }, + { + "key": "system.bonuses.damage.magical.bonus", + "mode": 2, + "value": "@system.tier", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "", + "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": 1753989433725, + "modifiedTime": 1753989574054, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!gsUDP90d4SRtLEUn.0zebbOsyjkm9IqE6" + } + ], "folder": null, "sort": 0, "ownership": { @@ -73,12 +78,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753625025089, - "modifiedTime": 1753625150698, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989432098, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_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 301ac3d0..a1c80a2b 100644 --- a/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json +++ b/src/packs/items/loot/loot_Charm_Relic_9P9jqGSlxVCbTdLe.json @@ -13,7 +13,7 @@ "name": "Charm Relic", "type": "base", "_id": "2yr8Ps6wvaG3b1qy", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/magic/life/heart-cross-strong-purple-orange.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Presence.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639698545, - "modifiedTime": 1753639708693, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989621310, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!9P9jqGSlxVCbTdLe.2yr8Ps6wvaG3b1qy" } diff --git a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json index 7ec2343a..9245934b 100644 --- a/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json +++ b/src/packs/items/loot/loot_Control_Relic_QPGBDItjrRhXU6iJ.json @@ -13,7 +13,7 @@ "name": "Control Relic", "type": "base", "_id": "OwjK2TqOizTiRGxD", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/skills/targeting/target-glowing-yellow.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Finesse.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639502481, - "modifiedTime": 1753639535252, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989714746, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!QPGBDItjrRhXU6iJ.OwjK2TqOizTiRGxD" } diff --git a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json index 02c2aa0f..6b007a29 100644 --- a/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json +++ b/src/packs/items/loot/loot_Elusive_Amulet_PkmTZXRMZL022O75.json @@ -27,7 +27,7 @@ } ], "target": { - "type": "any", + "type": "self", "amount": null }, "name": "Activate", @@ -56,7 +56,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "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" @@ -67,12 +67,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639111583, - "modifiedTime": 1753639213582, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989796129, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!PkmTZXRMZL022O75.YBkYjxU0Vn5JEsMK" } @@ -88,12 +88,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753638931971, - "modifiedTime": 1753639111606, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989758225, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!PkmTZXRMZL022O75" } diff --git a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json index aa5e9b4d..0f992ddf 100644 --- a/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json +++ b/src/packs/items/loot/loot_Enlighten_Relic_vSGx1f9SYUiA29L3.json @@ -13,7 +13,7 @@ "name": "Enlighten Relic", "type": "base", "_id": "aWOGlmqC9l86GlFV", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/magic/perception/third-eye-blue-red.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Knowledge.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639757883, - "modifiedTime": 1753639770922, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989839297, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!vSGx1f9SYUiA29L3.aWOGlmqC9l86GlFV" } diff --git a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json index 05211e72..799e170f 100644 --- a/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json +++ b/src/packs/items/loot/loot_Glider_CiXwelozmBDcPY48.json @@ -4,9 +4,40 @@ "_id": "CiXwelozmBDcPY48", "img": "icons/commodities/leather/leather-patch-red.webp", "system": { - "description": "While falling, you can mark a Stress to deploy this small parachute and glide safely to the ground.
", + "description": "While falling, you can mark a Stress to deploy this small parachute and glide safely to the ground.
", "quantity": 1, - "actions": {} + "actions": { + "Adz50oihGEMJxbyA": { + "type": "effect", + "_id": "Adz50oihGEMJxbyA", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [ + { + "scalable": false, + "key": "stress", + "value": 1, + "keyIsID": false, + "step": null + } + ], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "effects": [], + "target": { + "type": "any", + "amount": null + }, + "name": "Mark Stress", + "img": "icons/commodities/leather/leather-patch-red.webp", + "range": "" + } + } }, "effects": [], "folder": null, @@ -20,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753637642501, - "modifiedTime": 1753637766985, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753989923053, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!CiXwelozmBDcPY48" } diff --git a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json index 152a15f3..a3789138 100644 --- a/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json +++ b/src/packs/items/loot/loot_Piercing_Arrows_I63LTFD6GXHgyGpR.json @@ -7,9 +7,9 @@ "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.
", "quantity": 1, "actions": { - "0TomBo6UygDFhawG": { - "type": "damage", - "_id": "0TomBo6UygDFhawG", + "DW5AqEM0F8XaUqpn": { + "type": "effect", + "_id": "DW5AqEM0F8XaUqpn", "systemPath": "actions", "description": "", "chatDisplay": true, @@ -17,51 +17,79 @@ "cost": [], "uses": { "value": null, - "max": 3, + "max": "3", "recovery": "shortRest" }, - "damage": { - "parts": [ - { - "value": { - "custom": { - "enabled": true, - "formula": "@prof" - }, - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null - }, - "applyTo": "hitPoints", - "type": [], - "base": false, - "resultBased": false, - "valueAlt": { - "multiplier": "prof", - "flatMultiplier": 1, - "dice": "d6", - "bonus": null, - "custom": { - "enabled": false - } - } - } - ], - "includeBase": false - }, + "effects": [], "target": { - "type": "any", + "type": "self", "amount": null }, - "effects": [], - "name": "Use Arrow", + "name": "Use", "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", "range": "" } } }, - "effects": [], + "effects": [ + { + "name": "Piercing Arrows", + "type": "base", + "_id": "lRfqfbwlfxzPbE6U", + "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [ + { + "key": "system.bonuses.damage.physical.bonus", + "mode": 2, + "value": "@system.proficiency", + "priority": null + }, + { + "key": "system.bonuses.damage.magical.bonus", + "mode": 2, + "value": "@system.proficiency", + "priority": null + } + ], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Add your Proficiency to the damage roll of this attack.
", + "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": 1753990197623, + "modifiedTime": 1753990270846, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!I63LTFD6GXHgyGpR.lRfqfbwlfxzPbE6U" + } + ], "folder": null, "sort": 0, "ownership": { @@ -73,12 +101,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753625947079, - "modifiedTime": 1753626142491, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990194353, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!I63LTFD6GXHgyGpR" } 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 42129a61..502c73b2 100644 --- a/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json +++ b/src/packs/items/loot/loot_Ring_of_Silence_K1ysGnTpNyxPu5Au.json @@ -39,7 +39,52 @@ } } }, - "effects": [], + "effects": [ + { + "name": "Ring of Silence", + "type": "base", + "_id": "aCt3QjdeTREZAlEa", + "img": "icons/equipment/finger/ring-ball-purple.webp", + "system": { + "rangeDependence": { + "enabled": false, + "type": "withinRange", + "target": "hostile", + "range": "melee" + } + }, + "changes": [], + "disabled": true, + "duration": { + "startTime": null, + "combat": null, + "seconds": null, + "rounds": null, + "turns": null, + "startRound": null, + "startTurn": null + }, + "description": "Your footsteps are silent until your next rest.
", + "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": 1753990311274, + "modifiedTime": 1753990345889, + "lastModifiedBy": "MQSznptE5yLT7kj8" + }, + "_key": "!items.effects!K1ysGnTpNyxPu5Au.aCt3QjdeTREZAlEa" + } + ], "folder": null, "sort": 0, "ownership": { 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 0291485e..46beee5a 100644 --- a/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json +++ b/src/packs/items/loot/loot_Shard_of_Memory_2ULPgNyqCrxea0v0.json @@ -4,7 +4,7 @@ "_id": "2ULPgNyqCrxea0v0", "img": "icons/commodities/gems/gem-rough-navette-purple-pink.webp", "system": { - "description": "Once per long rest, you can spend 2 Hope to recall a domain card from your vault instead of paying its Recall
Cost.
", + "description": "Once per long rest, you can spend 2 Hope to recall a domain card from your vault instead of paying its Recall Cost.
", "quantity": 1, "actions": { "YNRybKQC51muVHYH": { @@ -51,12 +51,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753640199098, - "modifiedTime": 1753640251763, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990369010, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items!2ULPgNyqCrxea0v0" } diff --git a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json index f4257e16..9f169207 100644 --- a/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json +++ b/src/packs/items/loot/loot_Stride_Relic_FfJISMzYATaPQPLc.json @@ -13,7 +13,7 @@ "name": "Stride Relic", "type": "base", "_id": "7lHIbMyCDonSxSZf", - "img": "icons/magic/life/heart-cross-blue.webp", + "img": "icons/skills/movement/feet-winged-boots-glowing-yellow.webp", "system": {}, "changes": [ { @@ -33,7 +33,7 @@ "startRound": null, "startTurn": null }, - "description": "", + "description": "You gain a +1 bonus to your Agility.
", "origin": null, "tint": "#ffffff", "transfer": true, @@ -44,12 +44,12 @@ "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1753639435741, - "modifiedTime": 1753639579370, - "lastModifiedBy": "OFxauskoxcvVTVNA" + "modifiedTime": 1753990402231, + "lastModifiedBy": "MQSznptE5yLT7kj8" }, "_key": "!items.effects!FfJISMzYATaPQPLc.7lHIbMyCDonSxSZf" } diff --git a/src/packs/items/weapons/folders_Combat_Wheelchairs_ECjoqjRcavLWZah1.json b/src/packs/items/weapons/folders_Combat_Wheelchairs_ECjoqjRcavLWZah1.json new file mode 100644 index 00000000..3ae3caf2 --- /dev/null +++ b/src/packs/items/weapons/folders_Combat_Wheelchairs_ECjoqjRcavLWZah1.json @@ -0,0 +1,23 @@ +{ + "type": "Item", + "folder": null, + "name": "Combat Wheelchairs", + "color": null, + "sorting": "a", + "_id": "ECjoqjRcavLWZah1", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753740920579, + "modifiedTime": 1753740920579, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!folders!ECjoqjRcavLWZah1" +} diff --git a/src/packs/items/weapons/folders_Magical_Weapons_vc6psFLwYfjOAVZu.json b/src/packs/items/weapons/folders_Magical_Weapons_vc6psFLwYfjOAVZu.json new file mode 100644 index 00000000..173f1a3f --- /dev/null +++ b/src/packs/items/weapons/folders_Magical_Weapons_vc6psFLwYfjOAVZu.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "Dq27vPNpeuINRJeY", + "name": "Magical Weapons", + "color": null, + "sorting": "a", + "_id": "vc6psFLwYfjOAVZu", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!vc6psFLwYfjOAVZu" +} diff --git a/src/packs/items/weapons/folders_Physical_Weapons_w1HdMrtozpCGF8UB.json b/src/packs/items/weapons/folders_Physical_Weapons_w1HdMrtozpCGF8UB.json new file mode 100644 index 00000000..92786cc0 --- /dev/null +++ b/src/packs/items/weapons/folders_Physical_Weapons_w1HdMrtozpCGF8UB.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "Dq27vPNpeuINRJeY", + "name": "Physical Weapons", + "color": null, + "sorting": "a", + "_id": "w1HdMrtozpCGF8UB", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!w1HdMrtozpCGF8UB" +} diff --git a/src/packs/items/weapons/folders_Primary_Weapons_Dq27vPNpeuINRJeY.json b/src/packs/items/weapons/folders_Primary_Weapons_Dq27vPNpeuINRJeY.json new file mode 100644 index 00000000..0b1936e7 --- /dev/null +++ b/src/packs/items/weapons/folders_Primary_Weapons_Dq27vPNpeuINRJeY.json @@ -0,0 +1,22 @@ +{ + "type": "Item", + "folder": null, + "name": "Primary Weapons", + "color": null, + "sorting": "a", + "_id": "Dq27vPNpeuINRJeY", + "description": "", + "sort": 800000, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": "FecEtPuoQh6MpjQ0", + "modifiedTime": 1753740311572 + }, + "_key": "!folders!Dq27vPNpeuINRJeY" +} diff --git a/src/packs/items/weapons/folders_Secondary_Weapons_NbXyhDASDCqpg4eG.json b/src/packs/items/weapons/folders_Secondary_Weapons_NbXyhDASDCqpg4eG.json new file mode 100644 index 00000000..fc340cab --- /dev/null +++ b/src/packs/items/weapons/folders_Secondary_Weapons_NbXyhDASDCqpg4eG.json @@ -0,0 +1,22 @@ +{ + "type": "Item", + "folder": null, + "name": "Secondary Weapons", + "color": null, + "sorting": "a", + "_id": "NbXyhDASDCqpg4eG", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": "FecEtPuoQh6MpjQ0", + "modifiedTime": 1753737049233 + }, + "_key": "!folders!NbXyhDASDCqpg4eG" +} diff --git a/src/packs/items/weapons/folders_Tier_1_6nJ3reb1jx83CtRy.json b/src/packs/items/weapons/folders_Tier_1_6nJ3reb1jx83CtRy.json new file mode 100644 index 00000000..b9eb7f63 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_1_6nJ3reb1jx83CtRy.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "ECjoqjRcavLWZah1", + "name": "Tier 1", + "color": null, + "sorting": "a", + "_id": "6nJ3reb1jx83CtRy", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!6nJ3reb1jx83CtRy" +} diff --git a/src/packs/items/weapons/folders_Tier_1_cnmKLegyDD1xkSuI.json b/src/packs/items/weapons/folders_Tier_1_cnmKLegyDD1xkSuI.json new file mode 100644 index 00000000..4f11ee6d --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_1_cnmKLegyDD1xkSuI.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "vc6psFLwYfjOAVZu", + "name": "Tier 1", + "color": null, + "sorting": "a", + "_id": "cnmKLegyDD1xkSuI", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!cnmKLegyDD1xkSuI" +} diff --git a/src/packs/items/weapons/folders_Tier_1_d7tdCsIUd94XuTtq.json b/src/packs/items/weapons/folders_Tier_1_d7tdCsIUd94XuTtq.json index 468d4ee4..055cc2cb 100644 --- a/src/packs/items/weapons/folders_Tier_1_d7tdCsIUd94XuTtq.json +++ b/src/packs/items/weapons/folders_Tier_1_d7tdCsIUd94XuTtq.json @@ -1,23 +1,23 @@ { "type": "Item", - "folder": null, + "folder": "w1HdMrtozpCGF8UB", "name": "Tier 1", "color": null, "sorting": "a", "_id": "d7tdCsIUd94XuTtq", "description": "", - "sort": 0, + "sort": 100000, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1748717279663, - "modifiedTime": 1748717279663, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753828177628, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!folders!d7tdCsIUd94XuTtq" } diff --git a/src/packs/items/weapons/folders_Tier_1_mV306wqqkeIDd9EE.json b/src/packs/items/weapons/folders_Tier_1_mV306wqqkeIDd9EE.json new file mode 100644 index 00000000..088d983a --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_1_mV306wqqkeIDd9EE.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "NbXyhDASDCqpg4eG", + "name": "Tier 1", + "color": null, + "sorting": "a", + "_id": "mV306wqqkeIDd9EE", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!mV306wqqkeIDd9EE" +} diff --git a/src/packs/items/weapons/folders_Tier_2_ereMKW01MCYg0qUY.json b/src/packs/items/weapons/folders_Tier_2_ereMKW01MCYg0qUY.json index 54ac1fe7..8e6eed38 100644 --- a/src/packs/items/weapons/folders_Tier_2_ereMKW01MCYg0qUY.json +++ b/src/packs/items/weapons/folders_Tier_2_ereMKW01MCYg0qUY.json @@ -1,23 +1,23 @@ { "type": "Item", - "folder": null, + "folder": "vc6psFLwYfjOAVZu", "name": "Tier 2", "color": null, "sorting": "a", "_id": "ereMKW01MCYg0qUY", "description": "", - "sort": 0, + "sort": 200000, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1748717283254, - "modifiedTime": 1748717283254, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753740492449, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!folders!ereMKW01MCYg0qUY" } diff --git a/src/packs/items/weapons/folders_Tier_2_fFuMdvpD1F3UshmM.json b/src/packs/items/weapons/folders_Tier_2_fFuMdvpD1F3UshmM.json new file mode 100644 index 00000000..f5fb310b --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_2_fFuMdvpD1F3UshmM.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "ECjoqjRcavLWZah1", + "name": "Tier 2", + "color": null, + "sorting": "a", + "_id": "fFuMdvpD1F3UshmM", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!fFuMdvpD1F3UshmM" +} diff --git a/src/packs/items/weapons/folders_Tier_2_guNyg9qBShhQOIWT.json b/src/packs/items/weapons/folders_Tier_2_guNyg9qBShhQOIWT.json new file mode 100644 index 00000000..ea337755 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_2_guNyg9qBShhQOIWT.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "w1HdMrtozpCGF8UB", + "name": "Tier 2", + "color": null, + "sorting": "a", + "_id": "guNyg9qBShhQOIWT", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!guNyg9qBShhQOIWT" +} diff --git a/src/packs/items/weapons/folders_Tier_2_iSQtZICf7fVFJ7IS.json b/src/packs/items/weapons/folders_Tier_2_iSQtZICf7fVFJ7IS.json new file mode 100644 index 00000000..e4b6b093 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_2_iSQtZICf7fVFJ7IS.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "NbXyhDASDCqpg4eG", + "name": "Tier 2", + "color": null, + "sorting": "a", + "_id": "iSQtZICf7fVFJ7IS", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!iSQtZICf7fVFJ7IS" +} diff --git a/src/packs/items/weapons/folders_Tier_3_OKJC8cHvPuseBHWq.json b/src/packs/items/weapons/folders_Tier_3_OKJC8cHvPuseBHWq.json new file mode 100644 index 00000000..3be5c79a --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_3_OKJC8cHvPuseBHWq.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "w1HdMrtozpCGF8UB", + "name": "Tier 3", + "color": null, + "sorting": "a", + "_id": "OKJC8cHvPuseBHWq", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!OKJC8cHvPuseBHWq" +} diff --git a/src/packs/items/weapons/folders_Tier_3_TyqMEXhSkjOUq5SA.json b/src/packs/items/weapons/folders_Tier_3_TyqMEXhSkjOUq5SA.json new file mode 100644 index 00000000..d5445a55 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_3_TyqMEXhSkjOUq5SA.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "ECjoqjRcavLWZah1", + "name": "Tier 3", + "color": null, + "sorting": "a", + "_id": "TyqMEXhSkjOUq5SA", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!TyqMEXhSkjOUq5SA" +} diff --git a/src/packs/items/weapons/folders_Tier_3_oreMpiiytMRaR9sy.json b/src/packs/items/weapons/folders_Tier_3_oreMpiiytMRaR9sy.json index 015eeaef..8e851efb 100644 --- a/src/packs/items/weapons/folders_Tier_3_oreMpiiytMRaR9sy.json +++ b/src/packs/items/weapons/folders_Tier_3_oreMpiiytMRaR9sy.json @@ -1,23 +1,23 @@ { "type": "Item", - "folder": null, + "folder": "vc6psFLwYfjOAVZu", "name": "Tier 3", "color": null, "sorting": "a", "_id": "oreMpiiytMRaR9sy", "description": "", - "sort": 0, + "sort": 300000, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1748717286219, - "modifiedTime": 1748717286219, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753740494136, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!folders!oreMpiiytMRaR9sy" } diff --git a/src/packs/items/weapons/folders_Tier_3_v3OQH9vwMVYsZvXS.json b/src/packs/items/weapons/folders_Tier_3_v3OQH9vwMVYsZvXS.json new file mode 100644 index 00000000..8d350bc2 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_3_v3OQH9vwMVYsZvXS.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "NbXyhDASDCqpg4eG", + "name": "Tier 3", + "color": null, + "sorting": "a", + "_id": "v3OQH9vwMVYsZvXS", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!v3OQH9vwMVYsZvXS" +} diff --git a/src/packs/items/weapons/folders_Tier_4_UNDVQEo6UtTuueNQ.json b/src/packs/items/weapons/folders_Tier_4_UNDVQEo6UtTuueNQ.json index db695459..a5451590 100644 --- a/src/packs/items/weapons/folders_Tier_4_UNDVQEo6UtTuueNQ.json +++ b/src/packs/items/weapons/folders_Tier_4_UNDVQEo6UtTuueNQ.json @@ -1,23 +1,23 @@ { "type": "Item", - "folder": null, + "folder": "vc6psFLwYfjOAVZu", "name": "Tier 4", "color": null, "sorting": "a", "_id": "UNDVQEo6UtTuueNQ", "description": "", - "sort": 0, + "sort": 400000, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, - "coreVersion": "13.344", + "coreVersion": "13.346", "systemId": "daggerheart", "systemVersion": "0.0.1", "createdTime": 1748717289155, - "modifiedTime": 1748717289155, - "lastModifiedBy": "WafZqd6qLGpBRGTt" + "modifiedTime": 1753740495137, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" }, "_key": "!folders!UNDVQEo6UtTuueNQ" } diff --git a/src/packs/items/weapons/folders_Tier_4_beilKE5ZPAihKg3O.json b/src/packs/items/weapons/folders_Tier_4_beilKE5ZPAihKg3O.json new file mode 100644 index 00000000..b2b25c1d --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_4_beilKE5ZPAihKg3O.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "ECjoqjRcavLWZah1", + "name": "Tier 4", + "color": null, + "sorting": "a", + "_id": "beilKE5ZPAihKg3O", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!beilKE5ZPAihKg3O" +} diff --git a/src/packs/items/weapons/folders_Tier_4_cvhQpWXCo3YJhtwx.json b/src/packs/items/weapons/folders_Tier_4_cvhQpWXCo3YJhtwx.json new file mode 100644 index 00000000..70adbfb1 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_4_cvhQpWXCo3YJhtwx.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "w1HdMrtozpCGF8UB", + "name": "Tier 4", + "color": null, + "sorting": "a", + "_id": "cvhQpWXCo3YJhtwx", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!cvhQpWXCo3YJhtwx" +} diff --git a/src/packs/items/weapons/folders_Tier_4_woovqIJsIyoK1ZQW.json b/src/packs/items/weapons/folders_Tier_4_woovqIJsIyoK1ZQW.json new file mode 100644 index 00000000..c5dd1458 --- /dev/null +++ b/src/packs/items/weapons/folders_Tier_4_woovqIJsIyoK1ZQW.json @@ -0,0 +1,21 @@ +{ + "type": "Item", + "folder": "NbXyhDASDCqpg4eG", + "name": "Tier 4", + "color": null, + "sorting": "a", + "_id": "woovqIJsIyoK1ZQW", + "description": "", + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "lastModifiedBy": null + }, + "_key": "!folders!woovqIJsIyoK1ZQW" +} diff --git a/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json b/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json new file mode 100644 index 00000000..a51a5c14 --- /dev/null +++ b/src/packs/items/weapons/loot_Black_Powder_Revolver_NUbvkPLS71XO073r.json @@ -0,0 +1,31 @@ +{ + "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 new file mode 100644 index 00000000..16c4b359 --- /dev/null +++ b/src/packs/items/weapons/weapon_Aantari_Bow_ijodu5yNBoMxpkHV.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Aantari Bow", + "type": "weapon", + "_id": "ijodu5yNBoMxpkHV", + "img": "icons/weapons/bows/shortbow-leaves-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "HrbJ0bI7lMAYUCux" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "HrbJ0bI7lMAYUCux", + "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": 1753835307838, + "modifiedTime": 1753835307838, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!ijodu5yNBoMxpkHV.HrbJ0bI7lMAYUCux" + } + ], + "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": 1753835285790, + "modifiedTime": 1753835317605, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f0796325 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Arcane_Frame_Wheelchair_la3sAWgnvadc4NvP.json @@ -0,0 +1,161 @@ +{ + "folder": "TyqMEXhSkjOUq5SA", + "name": "Advanced Arcane-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "G561ymlNGmaFAYFB" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "G561ymlNGmaFAYFB", + "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", + "lastModifiedBy": null + }, + "_key": "!items.effects!la3sAWgnvadc4NvP.G561ymlNGmaFAYFB" + } + ], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836715885, + "modifiedTime": 1753836789197, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "la3sAWgnvadc4NvP", + "sort": 0, + "_key": "!items!la3sAWgnvadc4NvP" +} diff --git a/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json b/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json new file mode 100644 index 00000000..7e06132f --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Arcane_Gauntlets_hXR56fTKwZ6s1obs.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Arcane Gauntlets", + "type": "weapon", + "_id": "hXR56fTKwZ6s1obs", + "img": "icons/equipment/hand/glove-tooled-leather-red-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833079329, + "modifiedTime": 1753833112531, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b99dee62 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Battleaxe_FcbvY1ydbNVMjKvk.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Battleaxe", + "type": "weapon", + "_id": "FcbvY1ydbNVMjKvk", + "img": "icons/weapons/axes/axe-double-engraved-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831668041, + "modifiedTime": 1753831689481, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ad5ad7ae --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Broadsword_WtQAGz0TUgz8Xg70.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Broadsword", + "type": "weapon", + "_id": "WtQAGz0TUgz8Xg70", + "img": "icons/weapons/swords/sword-guard-embossed-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "fRPKHzbKRz4yTHAF" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "fRPKHzbKRz4yTHAF", + "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": 1753831629563, + "modifiedTime": 1753831629563, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!WtQAGz0TUgz8Xg70.fRPKHzbKRz4yTHAF" + } + ], + "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": 1753831599435, + "modifiedTime": 1753831629573, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..cd64eb4b --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Crossbow_3HGs0AgVrdIBTaKG.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Crossbow", + "type": "weapon", + "_id": "3HGs0AgVrdIBTaKG", + "img": "icons/weapons/crossbows/crossbow-ornamental-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832024062, + "modifiedTime": 1753832046861, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f2dd3e0f --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Cutlass_bw9WO9lxkM9bWZxQ.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Cutlass", + "type": "weapon", + "_id": "bw9WO9lxkM9bWZxQ", + "img": "icons/weapons/swords/scimitar-guard-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831881396, + "modifiedTime": 1753831904535, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..17aa209b --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Dagger_mrioysDjNQEIE8hN.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Dagger", + "type": "weapon", + "_id": "mrioysDjNQEIE8hN", + "img": "icons/weapons/daggers/dagger-simple-violet.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831785214, + "modifiedTime": 1753831814649, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..dc665696 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Dualstaff_X5x3sC7v2f3L9sjL.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Dualstaff", + "type": "weapon", + "_id": "X5x3sC7v2f3L9sjL", + "img": "icons/weapons/staves/staff-ornate-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833383897, + "modifiedTime": 1753833411958, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c647f3da --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Glowing_Rings_InQoh8mZPnwarQkX.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Glowing Rings", + "type": "weapon", + "_id": "InQoh8mZPnwarQkX", + "img": "icons/equipment/finger/ring-band-engraved-spirals-wood.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833176806, + "modifiedTime": 1753833243855, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ffb6bb44 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Grappler_7vvhVl4TDJHtjpFK.json @@ -0,0 +1,146 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Grappler", + "type": "weapon", + "_id": "7vvhVl4TDJHtjpFK", + "img": "icons/weapons/sickles/sickle-blue-purple.webp", + "system": { + "description": "", + "actions": { + "vpm0kyd1SFRuBaak": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Hook", + "description": "On a successful attack, you can pull the target into Melee range.", + "img": "icons/skills/melee/strike-chain-whip-blue.webp", + "_id": "vpm0kyd1SFRuBaak", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "hooked", + "effectIds": [], + "actionIds": [ + "vpm0kyd1SFRuBaak" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753795033661, + "modifiedTime": 1753795079243, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..cbd63dd5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Greatstaff_4UzxqfkwF8gDSdu7.json @@ -0,0 +1,168 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Greatstaff", + "type": "weapon", + "_id": "4UzxqfkwF8gDSdu7", + "img": "icons/weapons/wands/wand-carved-stone-shard.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "sGVVxSM68Fmr1sSM" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "sGVVxSM68Fmr1sSM", + "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": 1753833596394, + "modifiedTime": 1753833596394, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!4UzxqfkwF8gDSdu7.sGVVxSM68Fmr1sSM" + } + ], + "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": 1753833576312, + "modifiedTime": 1753833602381, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..81d05554 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Greatsword_MAC6YWTo4lzSotQc.json @@ -0,0 +1,173 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Greatsword", + "type": "weapon", + "_id": "MAC6YWTo4lzSotQc", + "img": "icons/weapons/swords/greatsword-crossguard-engraved-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "massive", + "effectIds": [ + "E0PjC15OP55vIype" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Massive", + "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/skills/melee/strike-flail-destructive-yellow.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + }, + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "E0PjC15OP55vIype", + "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": 1753831714716, + "modifiedTime": 1753831714716, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!MAC6YWTo4lzSotQc.E0PjC15OP55vIype" + } + ], + "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": 1753831701352, + "modifiedTime": 1753831723203, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..d314f604 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Halberd_C8gQn7onAc9wsrCs.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Halberd", + "type": "weapon", + "_id": "C8gQn7onAc9wsrCs", + "img": "icons/weapons/polearms/halberd-crescent-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "pdRt0nO1ooGPO3cm" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "pdRt0nO1ooGPO3cm", + "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": 1753831956883, + "modifiedTime": 1753831956883, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!C8gQn7onAc9wsrCs.pdRt0nO1ooGPO3cm" + } + ], + "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": 1753831933214, + "modifiedTime": 1753831956886, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..52840548 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Hallowed_Axe_BiyXKX2Mo1TQbKgk.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Hallowed Axe", + "type": "weapon", + "_id": "BiyXKX2Mo1TQbKgk", + "img": "icons/weapons/axes/axe-battle-skull-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833120834, + "modifiedTime": 1753833164907, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ef1eb127 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Hand_Crossbow_Lsvocst8aGqkBj7g.json @@ -0,0 +1,116 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Hand Crossbow", + "type": "weapon", + "_id": "Lsvocst8aGqkBj7g", + "img": "icons/weapons/crossbows/crossbow-slotted.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753795089792, + "modifiedTime": 1753795117775, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9f78b140 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Hand_Runes_PQACczSghZIVTdgZ.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Hand Runes", + "type": "weapon", + "_id": "PQACczSghZIVTdgZ", + "img": "icons/magic/symbols/rune-sigil-hook-white-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833253569, + "modifiedTime": 1753833282989, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..34383448 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Heavy_Frame_Wheelchair_eT2Qwb0RdrLX2hH1.json @@ -0,0 +1,161 @@ +{ + "folder": "TyqMEXhSkjOUq5SA", + "name": "Advanced Heavy-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "1godgiqdDADyR0Tw" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "1godgiqdDADyR0Tw", + "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", + "lastModifiedBy": null + }, + "_key": "!items.effects!eT2Qwb0RdrLX2hH1.1godgiqdDADyR0Tw" + } + ], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836675558, + "modifiedTime": 1753836795905, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "eT2Qwb0RdrLX2hH1", + "sort": 0, + "_key": "!items!eT2Qwb0RdrLX2hH1" +} 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 new file mode 100644 index 00000000..add61418 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Light_Frame_Wheelchair_BuMfupnCzHbziQ8o.json @@ -0,0 +1,154 @@ +{ + "folder": "TyqMEXhSkjOUq5SA", + "name": "Advanced Light-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": { + "V1GupKWIUExrfrf9": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "V1GupKWIUExrfrf9", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "V1GupKWIUExrfrf9" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836614032, + "modifiedTime": 1753836802197, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "BuMfupnCzHbziQ8o", + "sort": 0, + "_key": "!items!BuMfupnCzHbziQ8o" +} diff --git a/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json b/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json new file mode 100644 index 00000000..0ebb1d08 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Longbow_M5CywMAyPKGgebsJ.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Longbow", + "type": "weapon", + "_id": "M5CywMAyPKGgebsJ", + "img": "icons/weapons/bows/longbow-leather-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "CUpkNgCUE6CWAXc3" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "CUpkNgCUE6CWAXc3", + "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": 1753832086910, + "modifiedTime": 1753832086910, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!M5CywMAyPKGgebsJ.CUpkNgCUE6CWAXc3" + } + ], + "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": 1753832060079, + "modifiedTime": 1753832086913, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..79ce8416 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Longsword_9xkB3MWXahrsVP4N.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Longsword", + "type": "weapon", + "_id": "9xkB3MWXahrsVP4N", + "img": "icons/weapons/swords/sword-guard-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831635467, + "modifiedTime": 1753831658646, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..770a061c --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Mace_WreMYiH5uhVDaoVw.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Mace", + "type": "weapon", + "_id": "WreMYiH5uhVDaoVw", + "img": "icons/weapons/maces/mace-spiked-steel-wood.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831730528, + "modifiedTime": 1753831747562, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e9a2ff48 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Quarterstaff_zJtm2f9ZFKZRtCRg.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Quarterstaff", + "type": "weapon", + "_id": "zJtm2f9ZFKZRtCRg", + "img": "icons/weapons/staves/staff-orb-feather.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831826360, + "modifiedTime": 1753831868734, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e108d48f --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Rapier_KxFne76d7cak15dO.json @@ -0,0 +1,154 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Rapier", + "type": "weapon", + "_id": "KxFne76d7cak15dO", + "img": "icons/weapons/swords/sword-jeweled-red.webp", + "system": { + "description": "", + "actions": { + "bx2JFFD7JglAsVG6": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "bx2JFFD7JglAsVG6", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "bx2JFFD7JglAsVG6" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831909596, + "modifiedTime": 1753831926420, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e549ce09 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Returning_Blade_sIGXA4KMeYBUjcEO.json @@ -0,0 +1,146 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Returning Blade", + "type": "weapon", + "_id": "sIGXA4KMeYBUjcEO", + "img": "icons/weapons/swords/greatsword-crossguard-flanged.webp", + "system": { + "description": "", + "actions": { + "guRvZkjZnWrpH6HT": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Return", + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack.", + "img": "icons/magic/movement/trail-streak-pink.webp", + "_id": "guRvZkjZnWrpH6HT", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "returning", + "effectIds": [], + "actionIds": [ + "guRvZkjZnWrpH6HT" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833291783, + "modifiedTime": 1753833332963, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9240fbaf --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Round_Shield_hiEOGF2reabGLUoi.json @@ -0,0 +1,163 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Round Shield", + "type": "weapon", + "_id": "hiEOGF2reabGLUoi", + "img": "icons/equipment/shield/round-wooden-boss-gold-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "protective", + "effectIds": [ + "i5HfkF5aKQuUCTEG" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Protective", + "description": "Add your character'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" + } + ], + "_id": "i5HfkF5aKQuUCTEG", + "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": 1753794875150, + "modifiedTime": 1753794875150, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!hiEOGF2reabGLUoi.i5HfkF5aKQuUCTEG" + } + ], + "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": 1753794853303, + "modifiedTime": 1753794890718, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..0f24c888 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Scepter_2Khzuj768yoWN9QK.json @@ -0,0 +1,190 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Scepter", + "type": "weapon", + "_id": "2Khzuj768yoWN9QK", + "img": "icons/weapons/staves/staff-forest-hooked.webp", + "system": { + "description": "", + "actions": { + "4w1WlA4yZzUcRMXA": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": 4, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "magical" + ], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "melee", + "roll": { + "useDefault": true, + "type": "attack", + "trait": "presence", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "4w1WlA4yZzUcRMXA", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/maces/shortmace-ornate-gold.webp" + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833421806, + "modifiedTime": 1753835888435, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e54b4eea --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Shortbow_JpSlJvDR0X8VFDns.json @@ -0,0 +1,116 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Shortbow", + "type": "weapon", + "_id": "JpSlJvDR0X8VFDns", + "img": "icons/weapons/bows/shortbow-recurve-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831998635, + "modifiedTime": 1753832018423, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b09613da --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Shortstaff_T5exRCqOXhrjSYnI.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Shortstaff", + "type": "weapon", + "_id": "T5exRCqOXhrjSYnI", + "img": "icons/weapons/staves/staff-ornate-hook.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833341389, + "modifiedTime": 1753833375298, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..91796337 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Shortsword_p3nz5CaGUoyuGVg0.json @@ -0,0 +1,163 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Shortsword", + "type": "weapon", + "_id": "p3nz5CaGUoyuGVg0", + "img": "icons/weapons/swords/shortsword-guard-silver.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "WSMhQAuJyjWet29Z" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "WSMhQAuJyjWet29Z", + "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": 1753794842150, + "modifiedTime": 1753794842150, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!p3nz5CaGUoyuGVg0.WSMhQAuJyjWet29Z" + } + ], + "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": 1753794821174, + "modifiedTime": 1753794842154, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..cf3ae063 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Small_Dagger_0thN0BpN05KT8Avx.json @@ -0,0 +1,163 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Small Dagger", + "type": "weapon", + "_id": "0thN0BpN05KT8Avx", + "img": "icons/weapons/daggers/dagger-double-engraved-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "gJ7Ey9CfPZqYgxEO" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "gJ7Ey9CfPZqYgxEO", + "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": 1753794991410, + "modifiedTime": 1753794991410, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!0thN0BpN05KT8Avx.gJ7Ey9CfPZqYgxEO" + } + ], + "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": 1753794938643, + "modifiedTime": 1753794991413, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..433533e3 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Spear_pK6dsNABKKp1CIGN.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Spear", + "type": "weapon", + "_id": "pK6dsNABKKp1CIGN", + "img": "icons/weapons/polearms/spear-flared-worn-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "hl0S2LrBY5Mg69q6" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Cumbersome", + "description": "-1 to Finesse", + "img": "icons/commodities/metal/mail-plate-steel.webp", + "changes": [ + { + "key": "system.traits.finesse.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "hl0S2LrBY5Mg69q6", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "transfer": true, + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753831987001, + "modifiedTime": 1753831987001, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!pK6dsNABKKp1CIGN.hl0S2LrBY5Mg69q6" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753831962536, + "modifiedTime": 1753831987004, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..33d9f577 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Tower_Shield_OfOzQbs4hg6QbfTG.json @@ -0,0 +1,168 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Tower Shield", + "type": "weapon", + "_id": "OfOzQbs4hg6QbfTG", + "img": "icons/equipment/shield/kite-wooden-thistle-pink.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "barrier", + "effectIds": [ + "87gedjJZGdFY81Mt" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Barrier", + "description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion", + "img": "icons/skills/melee/shield-block-bash-blue.webp", + "changes": [ + { + "key": "system.armorScore", + "mode": 2, + "value": "ITEM.@system.tier + 1" + }, + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "87gedjJZGdFY81Mt", + "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": 1753794929238, + "modifiedTime": 1753794929238, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!OfOzQbs4hg6QbfTG.87gedjJZGdFY81Mt" + } + ], + "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": 1753794904892, + "modifiedTime": 1753794929241, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..65bd9fc3 --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Wand_jU9jWIardjtdAQcs.json @@ -0,0 +1,116 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Advanced Wand", + "type": "weapon", + "_id": "jU9jWIardjtdAQcs", + "img": "icons/weapons/wands/wand-gem-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833518519, + "modifiedTime": 1753833553163, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..56eb31fc --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Warhammer_8Lipw3RRKDgBVP0p.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Advanced Warhammer", + "type": "weapon", + "_id": "8Lipw3RRKDgBVP0p", + "img": "icons/weapons/hammers/hammer-double-engraved-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "S6jedo3xSQhFBQH0" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "S6jedo3xSQhFBQH0", + "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": 1753831777543, + "modifiedTime": 1753831777543, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!8Lipw3RRKDgBVP0p.S6jedo3xSQhFBQH0" + } + ], + "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": 1753831754451, + "modifiedTime": 1753831777547, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b9c4242d --- /dev/null +++ b/src/packs/items/weapons/weapon_Advanced_Whip_01izMUSJcAUo79IX.json @@ -0,0 +1,154 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Advanced Whip", + "type": "weapon", + "_id": "01izMUSJcAUo79IX", + "img": "icons/weapons/misc/whip-red-yellow.webp", + "system": { + "description": "", + "actions": { + "9x82us4KqCFp2ds0": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Startle", + "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range.", + "img": "icons/magic/control/fear-fright-mask-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "9x82us4KqCFp2ds0", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "startling", + "effectIds": [], + "actionIds": [ + "9x82us4KqCFp2ds0" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753795001576, + "modifiedTime": 1753808405822, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..6d18e14c --- /dev/null +++ b/src/packs/items/weapons/weapon_Arcane_Frame_Wheelchair_XRChepscgr75Uug7.json @@ -0,0 +1,163 @@ +{ + "folder": "6nJ3reb1jx83CtRy", + "name": "Arcane-Frame Wheelchair", + "type": "weapon", + "_id": "XRChepscgr75Uug7", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "G561ymlNGmaFAYFB" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "G561ymlNGmaFAYFB", + "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": 1753836707582, + "modifiedTime": 1753836707582, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!XRChepscgr75Uug7.G561ymlNGmaFAYFB" + } + ], + "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": 1753836689082, + "modifiedTime": 1753836707594, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..abef59b7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Arcane_Gauntlets_PC5EyEIq7NWBV0n5.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Arcane Gauntlets", + "type": "weapon", + "_id": "PC5EyEIq7NWBV0n5", + "img": "icons/equipment/hand/glove-tooled-leather-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828194643, + "modifiedTime": 1753828233213, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ae0f0398 --- /dev/null +++ b/src/packs/items/weapons/weapon_Axe_of_Fortunis_YcS1rHgfnSlla8Xf.json @@ -0,0 +1,154 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Axe of Fortunis", + "type": "weapon", + "_id": "YcS1rHgfnSlla8Xf", + "img": "icons/weapons/axes/axe-double-blue.webp", + "system": { + "description": "", + "actions": { + "AtVHF6Y00zLo8W5G": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Luck", + "description": "On a failed attack, you can mark a Stress to reroll your attack.", + "img": "icons/magic/control/buff-luck-fortune-green.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "AtVHF6Y00zLo8W5G", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "lucky", + "effectIds": [], + "actionIds": [ + "AtVHF6Y00zLo8W5G" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833614959, + "modifiedTime": 1753833653403, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!YcS1rHgfnSlla8Xf" +} diff --git a/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json b/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json new file mode 100644 index 00000000..00034072 --- /dev/null +++ b/src/packs/items/weapons/weapon_Battleaxe_fbDYUja3ll9vCtrB.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Battleaxe", + "type": "weapon", + "_id": "fbDYUja3ll9vCtrB", + "img": "icons/weapons/axes/axe-double-jagged-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827787429, + "modifiedTime": 1753827801986, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..916958c9 --- /dev/null +++ b/src/packs/items/weapons/weapon_Black_Powder_Revolver_AokqTusPzn0hghkE.json @@ -0,0 +1,146 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Black Powder Revolver", + "type": "weapon", + "_id": "AokqTusPzn0hghkE", + "img": "icons/weapons/guns/gun-pistol-brass.webp", + "system": { + "description": "", + "actions": { + "8BHprlLTXO0C71ps": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Reload", + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again.", + "img": "icons/weapons/ammunition/shot-round-blue.webp", + "_id": "8BHprlLTXO0C71ps", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reloading", + "effectIds": [], + "actionIds": [ + "8BHprlLTXO0C71ps" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832483435, + "modifiedTime": 1753832502167, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9e188b9f --- /dev/null +++ b/src/packs/items/weapons/weapon_Bladed_Whip_5faflfNz20cFW1EM.json @@ -0,0 +1,154 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Bladed Whip", + "type": "weapon", + "_id": "5faflfNz20cFW1EM", + "img": "icons/weapons/misc/whip-red-yellow.webp", + "system": { + "description": "", + "actions": { + "ss8Qu3f33HCTMwXB": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "ss8Qu3f33HCTMwXB", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "ss8Qu3f33HCTMwXB" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829680830, + "modifiedTime": 1753829701111, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ec6d9eaf --- /dev/null +++ b/src/packs/items/weapons/weapon_Blessed_Anlace_n1oPTk5czTIGTkVj.json @@ -0,0 +1,165 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Blessed Anlace", + "type": "weapon", + "_id": "n1oPTk5czTIGTkVj", + "img": "icons/weapons/daggers/dagger-magical-glowing-blue.webp", + "system": { + "description": "", + "actions": { + "dmOSrd6R6EIQyZ0r": { + "type": "healing", + "actionType": "action", + "chatDisplay": true, + "name": "Heal", + "description": "During downtime, automatically clear a Hit Point.", + "img": "icons/magic/life/cross-beam-green.webp", + "_id": "dmOSrd6R6EIQyZ0r", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "damage": { + "parts": [], + "includeBase": false + }, + "target": { + "type": "any", + "amount": null + }, + "roll": { + "type": null, + "trait": null, + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "healing", + "effectIds": [], + "actionIds": [ + "dmOSrd6R6EIQyZ0r" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833663905, + "modifiedTime": 1753833710722, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!n1oPTk5czTIGTkVj" +} diff --git a/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json b/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json new file mode 100644 index 00000000..abd09941 --- /dev/null +++ b/src/packs/items/weapons/weapon_Bloodstaff_IoMVDz92WVvfGGdc.json @@ -0,0 +1,154 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Bloodstaff", + "type": "weapon", + "_id": "IoMVDz92WVvfGGdc", + "img": "icons/weapons/staves/staff-ornate-orb-steel-red.webp", + "system": { + "description": "", + "actions": { + "Unom5L1XimxLcXSp": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Pain", + "description": "Each time you make a successful attack, you must mark a Stress.", + "img": "icons/skills/wounds/injury-face-impact-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "Unom5L1XimxLcXSp", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "painful", + "effectIds": [], + "actionIds": [ + "Unom5L1XimxLcXSp" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d20", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753836256052, + "modifiedTime": 1753836294025, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!IoMVDz92WVvfGGdc" +} diff --git a/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json b/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json new file mode 100644 index 00000000..7d211d92 --- /dev/null +++ b/src/packs/items/weapons/weapon_Blunderbuss_SLFrK0WmldPo0shz.json @@ -0,0 +1,146 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Blunderbuss", + "type": "weapon", + "_id": "SLFrK0WmldPo0shz", + "img": "icons/weapons/guns/gun-blunderbuss-steel.webp", + "system": { + "description": "", + "actions": { + "ah3BGmVtSTNNPZto": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Reload", + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again.", + "img": "icons/weapons/ammunition/shot-round-blue.webp", + "_id": "ah3BGmVtSTNNPZto", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "reloading", + "effectIds": [], + "actionIds": [ + "ah3BGmVtSTNNPZto" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829780930, + "modifiedTime": 1753829802107, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!SLFrK0WmldPo0shz" +} diff --git a/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json b/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json new file mode 100644 index 00000000..6b9af93d --- /dev/null +++ b/src/packs/items/weapons/weapon_Braveshield_QEvgVoz9xKBSKsGi.json @@ -0,0 +1,146 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Braveshield", + "type": "weapon", + "_id": "QEvgVoz9xKBSKsGi", + "img": "icons/equipment/shield/kite-wooden-dragon-green.webp", + "system": { + "description": "", + "actions": { + "Ctsyr3xDVCsDYbZ3": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Shelter", + "description": "When you mark an Armor Slot, it reduces damage for you and all allies within Melee range of you who took the same damage.", + "img": "icons/skills/melee/shield-block-gray-yellow.webp", + "_id": "Ctsyr3xDVCsDYbZ3", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "sheltering", + "effectIds": [], + "actionIds": [ + "Ctsyr3xDVCsDYbZ3" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753797203355, + "modifiedTime": 1753797247008, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!QEvgVoz9xKBSKsGi" +} diff --git a/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json b/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json new file mode 100644 index 00000000..b5d7559f --- /dev/null +++ b/src/packs/items/weapons/weapon_Bravesword_QZrWAkprA2tL2MOI.json @@ -0,0 +1,168 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Bravesword", + "type": "weapon", + "_id": "QZrWAkprA2tL2MOI", + "img": "icons/weapons/swords/greatsword-crossguard-embossed-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "brave", + "effectIds": [ + "lLM5uyDAGk3zVxoa" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Brave", + "description": "-1 to Evasion; + Weapon Tier to Severe damage threshold", + "img": "icons/magic/life/heart-cross-strong-flame-purple-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + }, + { + "key": "system.damageThresholds.severe", + "mode": 2, + "value": "ITEM.@system.tier" + } + ], + "_id": "lLM5uyDAGk3zVxoa", + "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": 1753832160783, + "modifiedTime": 1753832160783, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!QZrWAkprA2tL2MOI.lLM5uyDAGk3zVxoa" + } + ], + "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": 1753832142373, + "modifiedTime": 1753832160787, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!QZrWAkprA2tL2MOI" +} diff --git a/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json b/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json new file mode 100644 index 00000000..1934036f --- /dev/null +++ b/src/packs/items/weapons/weapon_Broadsword_1cwWNt4sqlgA8gCT.json @@ -0,0 +1,163 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Broadsword", + "type": "weapon", + "_id": "1cwWNt4sqlgA8gCT", + "img": "icons/weapons/swords/sword-guard-worn.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "GNwIa1EAaa0T0RZi" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "type": [ + "physical" + ], + "value": { + "multiplier": "prof", + "dice": "d8", + "flatMultiplier": 1, + "bonus": null, + "custom": { + "enabled": false + } + }, + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "GNwIa1EAaa0T0RZi", + "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": 1753827762112, + "modifiedTime": 1753827762112, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!1cwWNt4sqlgA8gCT.GNwIa1EAaa0T0RZi" + } + ], + "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": 1753827734892, + "modifiedTime": 1753827762118, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!1cwWNt4sqlgA8gCT" +} diff --git a/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json new file mode 100644 index 00000000..9232ac7d --- /dev/null +++ b/src/packs/items/weapons/weapon_Buckler_EmFTp9wzT6MHSaNz.json @@ -0,0 +1,200 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Buckler", + "type": "weapon", + "_id": "EmFTp9wzT6MHSaNz", + "img": "icons/equipment/shield/heater-wooden-worn.webp", + "system": { + "description": "", + "actions": { + "BspGQXodaANPEQcl": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Deflect", + "description": "When you are attacked, you can mark an Armor Slot to gain a bonus to your Evasion equal to your Armor Score against the attack.", + "img": "icons/skills/melee/hand-grip-sword-strike-orange.webp", + "target": { + "type": "self", + "amount": null + }, + "cost": [ + { + "key": "armorStack", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "effects": [ + { + "_id": "Anbxt99bL9IWnlGh", + "onSave": false + } + ], + "_id": "BspGQXodaANPEQcl", + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "deflecting", + "effectIds": [ + "Anbxt99bL9IWnlGh" + ], + "actionIds": [ + "BspGQXodaANPEQcl" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Deflecting", + "description": "Gain a bonus to your Evasion equal to your Armor Score against the attack", + "img": "icons/skills/melee/hand-grip-sword-strike-orange.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "@system.armorScore" + } + ], + "transfer": false, + "_id": "Anbxt99bL9IWnlGh", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753808413748, + "modifiedTime": 1753808413748, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!EmFTp9wzT6MHSaNz.Anbxt99bL9IWnlGh" + } + ], + "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": 1753795181779, + "modifiedTime": 1753808413753, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..6394645b --- /dev/null +++ b/src/packs/items/weapons/weapon_Casting_Sword_2Fbf2cxLfbdGkU4I.json @@ -0,0 +1,188 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Casting Sword", + "type": "weapon", + "_id": "2Fbf2cxLfbdGkU4I", + "img": "icons/weapons/swords/sword-flanged-lightning.webp", + "system": { + "description": "", + "actions": { + "jMGBWGhvcxDgVH86": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d6", + "bonus": 3, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "far", + "roll": { + "useDefault": false, + "type": "attack", + "trait": "knowledge", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "jMGBWGhvcxDgVH86", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/swords/sword-flanged-lightning.webp" + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831124348, + "modifiedTime": 1753831194254, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!2Fbf2cxLfbdGkU4I" +} diff --git a/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json b/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json new file mode 100644 index 00000000..ac1fdb6a --- /dev/null +++ b/src/packs/items/weapons/weapon_Crossbow_cw7HG1Z7hp7OOLD0.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Crossbow", + "type": "weapon", + "_id": "cw7HG1Z7hp7OOLD0", + "img": "icons/weapons/crossbows/crossbow-loaded-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828109370, + "modifiedTime": 1753828127762, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c3c4b5d6 --- /dev/null +++ b/src/packs/items/weapons/weapon_Curved_Dagger_Fk69R40svV0kanZD.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Curved Dagger", + "type": "weapon", + "_id": "Fk69R40svV0kanZD", + "img": "icons/weapons/daggers/dagger-curved-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "serrated", + "effectIds": [ + "X3a0PAJ9Tk4zVyxz" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Serrated", + "description": "When you roll a 1 on a damage die, it deals 8 damage instead.", + "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", + "changes": [ + { + "key": "system.rules.damage.flipMinDiceValue", + "mode": 5, + "value": "1" + } + ], + "_id": "X3a0PAJ9Tk4zVyxz", + "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": 1753835111140, + "modifiedTime": 1753835111140, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!Fk69R40svV0kanZD.X3a0PAJ9Tk4zVyxz" + } + ], + "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": 1753835098261, + "modifiedTime": 1753835125696, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!Fk69R40svV0kanZD" +} diff --git a/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json b/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json new file mode 100644 index 00000000..42839516 --- /dev/null +++ b/src/packs/items/weapons/weapon_Cutlass_CWrbnethuILXrEpA.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Cutlass", + "type": "weapon", + "_id": "CWrbnethuILXrEpA", + "img": "icons/weapons/swords/scimitar-worn-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827943490, + "modifiedTime": 1753827960371, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!CWrbnethuILXrEpA" +} diff --git a/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json b/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json new file mode 100644 index 00000000..fe6e34bb --- /dev/null +++ b/src/packs/items/weapons/weapon_Dagger_iStO0BbeMTTR0rQi.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Dagger", + "type": "weapon", + "_id": "iStO0BbeMTTR0rQi", + "img": "icons/weapons/daggers/dagger-straight-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827894955, + "modifiedTime": 1753827907060, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..153220f1 --- /dev/null +++ b/src/packs/items/weapons/weapon_Devouring_Dagger_C5wSGglR8e0euQnY.json @@ -0,0 +1,146 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Devouring Dagger", + "type": "weapon", + "_id": "C5wSGglR8e0euQnY", + "img": "icons/weapons/daggers/dagger-double-skull-pink.webp", + "system": { + "description": "", + "actions": { + "TKFadp8ZfOmB8PF8": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Scare", + "description": "On a successful attack, the target must mark a Stress.", + "img": "icons/magic/death/skull-energy-light-purple.webp", + "_id": "TKFadp8ZfOmB8PF8", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "scary", + "effectIds": [], + "actionIds": [ + "TKFadp8ZfOmB8PF8" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831203997, + "modifiedTime": 1753831225429, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..2a3a6095 --- /dev/null +++ b/src/packs/items/weapons/weapon_Double_Flail_xm1yU7k58fMgXxRR.json @@ -0,0 +1,168 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Double Flail", + "type": "weapon", + "_id": "xm1yU7k58fMgXxRR", + "img": "icons/weapons/maces/flail-triple-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "DCie5eR1dZH2Qvln" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "DCie5eR1dZH2Qvln", + "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": 1753832354486, + "modifiedTime": 1753832354486, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!xm1yU7k58fMgXxRR.DCie5eR1dZH2Qvln" + } + ], + "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": 1753832332785, + "modifiedTime": 1753832367770, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4463cef4 --- /dev/null +++ b/src/packs/items/weapons/weapon_Dual_Ended_Sword_nXjuBa215H1sTUK3.json @@ -0,0 +1,154 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Dual-Ended Sword", + "type": "weapon", + "_id": "nXjuBa215H1sTUK3", + "img": "icons/weapons/swords/swords-sharp-worn.webp", + "system": { + "description": "", + "actions": { + "MCgtEP3nlCk86cGl": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "MCgtEP3nlCk86cGl", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "MCgtEP3nlCk86cGl" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834935521, + "modifiedTime": 1753835006406, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!nXjuBa215H1sTUK3" +} diff --git a/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json b/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json new file mode 100644 index 00000000..35cf3dd6 --- /dev/null +++ b/src/packs/items/weapons/weapon_Dualstaff_j8cdNeIUYxxzFVji.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Dualstaff", + "type": "weapon", + "_id": "j8cdNeIUYxxzFVji", + "img": "icons/weapons/staves/staff-simple-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828411828, + "modifiedTime": 1753828446546, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..2d54aa50 --- /dev/null +++ b/src/packs/items/weapons/weapon_Ego_Blade_G7rH31KQ5eEZXcv0.json @@ -0,0 +1,146 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Ego Blade", + "type": "weapon", + "_id": "G7rH31KQ5eEZXcv0", + "img": "icons/weapons/swords/sword-runed-glowing.webp", + "system": { + "description": "", + "actions": { + "5etzGd1Hp6LxkrJX": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Pompous", + "description": "You must have a Presence of 0 or lower to use this weapon.", + "img": "icons/magic/control/control-influence-crown-gold.webp", + "_id": "5etzGd1Hp6LxkrJX", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "pompous", + "effectIds": [], + "actionIds": [ + "5etzGd1Hp6LxkrJX" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831084805, + "modifiedTime": 1753831108928, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f9637a9e --- /dev/null +++ b/src/packs/items/weapons/weapon_Elder_Bow_JdWcn9W1edhAEInL.json @@ -0,0 +1,168 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Elder Bow", + "type": "weapon", + "_id": "JdWcn9W1edhAEInL", + "img": "icons/weapons/bows/longbow-recurve-skull-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "sZ1XotFlGdkPPDG4" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "sZ1XotFlGdkPPDG4", + "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": 1753831327534, + "modifiedTime": 1753831327534, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!JdWcn9W1edhAEInL.sZ1XotFlGdkPPDG4" + } + ], + "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": 1753831304971, + "modifiedTime": 1753831327540, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..65b0a657 --- /dev/null +++ b/src/packs/items/weapons/weapon_Extended_Polearm_fJHKMxZokVP34MCi.json @@ -0,0 +1,146 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Extended Polearm", + "type": "weapon", + "_id": "fJHKMxZokVP34MCi", + "img": "icons/weapons/polearms/pike-flared-brown.webp", + "system": { + "description": "", + "actions": { + "NzpJeAJKyd4SItjH": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Long", + "description": "This weapon's attack targets all adversaries in a line within range.", + "img": "icons/skills/melee/strike-weapon-polearm-ice-blue.webp", + "_id": "NzpJeAJKyd4SItjH", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "long", + "effectIds": [], + "actionIds": [ + "NzpJeAJKyd4SItjH" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835136460, + "modifiedTime": 1753835169098, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5dba19c9 --- /dev/null +++ b/src/packs/items/weapons/weapon_Finehair_Bow_ykF3jouxHZ6YR8Bg.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Finehair Bow", + "type": "weapon", + "_id": "ykF3jouxHZ6YR8Bg", + "img": "icons/weapons/bows/longbow-gold-pink.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "7bvIKGGQvmSGeg4O" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "7bvIKGGQvmSGeg4O", + "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": 1753829859086, + "modifiedTime": 1753829859086, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!ykF3jouxHZ6YR8Bg.7bvIKGGQvmSGeg4O" + } + ], + "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": 1753829844531, + "modifiedTime": 1753829859088, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!ykF3jouxHZ6YR8Bg" +} diff --git a/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json b/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json new file mode 100644 index 00000000..f71b63b2 --- /dev/null +++ b/src/packs/items/weapons/weapon_Firestaff_BtCm2RhWEfs00g38.json @@ -0,0 +1,146 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Firestaff", + "type": "weapon", + "_id": "BtCm2RhWEfs00g38", + "img": "icons/weapons/staves/staff-engraved-red.webp", + "system": { + "description": "", + "actions": { + "9j81Lxp3sDskHFDS": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Burn", + "description": "When you roll a 6 on a damage die, the target must mark a Stress.", + "img": "icons/magic/fire/blast-jet-stream-embers-orange.webp", + "_id": "9j81Lxp3sDskHFDS", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "burning", + "effectIds": [], + "actionIds": [ + "9j81Lxp3sDskHFDS" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833915734, + "modifiedTime": 1753834249920, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..6696a3fb --- /dev/null +++ b/src/packs/items/weapons/weapon_Flickerfly_Blade_xLJ5RRpUoTRmAC3G.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Flickerfly Blade", + "type": "weapon", + "_id": "xLJ5RRpUoTRmAC3G", + "img": "icons/weapons/swords/sword-hooked.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "sharpwing", + "effectIds": [ + "jMIrOhpPUncn7dWg" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Sharpwing", + "description": "Gain a bonus to your damage rolls equal to your Agility.", + "img": "icons/weapons/swords/sword-winged-pink.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "@system.traits.agility.value" + } + ], + "_id": "jMIrOhpPUncn7dWg", + "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": 1753832118145, + "modifiedTime": 1753832118145, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!xLJ5RRpUoTRmAC3G.jMIrOhpPUncn7dWg" + } + ], + "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": 1753832095587, + "modifiedTime": 1753832129589, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..48087189 --- /dev/null +++ b/src/packs/items/weapons/weapon_Floating_Bladeshards_3vti3xfo0wJND7ew.json @@ -0,0 +1,168 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Floating Bladeshards", + "type": "weapon", + "_id": "3vti3xfo0wJND7ew", + "img": "icons/weapons/swords/sword-broad-serrated-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "T831j6kZiMnpMNmv" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "T831j6kZiMnpMNmv", + "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": 1753836181960, + "modifiedTime": 1753836181960, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!3vti3xfo0wJND7ew.T831j6kZiMnpMNmv" + } + ], + "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": 1753836170763, + "modifiedTime": 1753836240655, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e8e14abb --- /dev/null +++ b/src/packs/items/weapons/weapon_Fusion_Gloves_uK1RhtYAsDeoPNGx.json @@ -0,0 +1,163 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Fusion Gloves", + "type": "weapon", + "_id": "uK1RhtYAsDeoPNGx", + "img": "icons/equipment/hand/gauntlet-plate-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "bonded", + "effectIds": [ + "7ltP049dqxCaedyX" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Weapon Bond", + "description": "Gain a bonus to your damage rolls equal to your level.", + "img": "icons/magic/symbols/chevron-elipse-circle-blue.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "@system.levelData.level.current" + } + ], + "_id": "7ltP049dqxCaedyX", + "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": 1753836472488, + "modifiedTime": 1753836472488, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!uK1RhtYAsDeoPNGx.7ltP049dqxCaedyX" + } + ], + "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": 1753836449043, + "modifiedTime": 1753836485751, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!uK1RhtYAsDeoPNGx" +} diff --git a/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json b/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json new file mode 100644 index 00000000..a5d39bea --- /dev/null +++ b/src/packs/items/weapons/weapon_Ghostblade_6gFvOFTE97QZ74Zr.json @@ -0,0 +1,117 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Ghostblade", + "type": "weapon", + "_id": "6gFvOFTE97QZ74Zr", + "img": "icons/weapons/swords/greatsword-evil-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical", + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833724570, + "modifiedTime": 1753833788108, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..bf6423c5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Gilded_Bow_ctTgFfMbM3YtmsYU.json @@ -0,0 +1,163 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Gilded Bow", + "type": "weapon", + "_id": "ctTgFfMbM3YtmsYU", + "img": "icons/weapons/bows/shortbow-recurve-yellow.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "selfCorrecting", + "effectIds": [ + "zoWZsD4ogzfPSPi7" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Self Correcting", + "description": "When you roll a 1 on a damage die, it deals 6 damage instead.", + "img": "icons/weapons/ammunition/arrow-broadhead-glowing-orange.webp", + "changes": [ + { + "key": "system.rules.damage.flipMinDiceValue", + "mode": 5, + "value": "1" + } + ], + "_id": "zoWZsD4ogzfPSPi7", + "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": 1753833899797, + "modifiedTime": 1753833899797, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!ctTgFfMbM3YtmsYU.zoWZsD4ogzfPSPi7" + } + ], + "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": 1753833878513, + "modifiedTime": 1753833907298, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e9372819 --- /dev/null +++ b/src/packs/items/weapons/weapon_Gilded_Falchion_VwcOgqnzjf9LBj2S.json @@ -0,0 +1,168 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Gilded Falchion", + "type": "weapon", + "_id": "VwcOgqnzjf9LBj2S", + "img": "icons/weapons/swords/sword-guard-worn-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "ir4iKLIQ4CH1Qckn" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "ir4iKLIQ4CH1Qckn", + "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": 1753829587869, + "modifiedTime": 1753829587869, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!VwcOgqnzjf9LBj2S.ir4iKLIQ4CH1Qckn" + } + ], + "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": 1753829584359, + "modifiedTime": 1753829600720, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..d1b43470 --- /dev/null +++ b/src/packs/items/weapons/weapon_Glowing_Rings_wG9f5NpCwSbaLy8t.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Glowing Rings", + "type": "weapon", + "_id": "wG9f5NpCwSbaLy8t", + "img": "icons/equipment/finger/ring-band-studded.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828268892, + "modifiedTime": 1753828300354, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!wG9f5NpCwSbaLy8t" +} diff --git a/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json b/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json new file mode 100644 index 00000000..760cd787 --- /dev/null +++ b/src/packs/items/weapons/weapon_Grappler_iEzPscUc18GuFoB6.json @@ -0,0 +1,146 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Grappler", + "type": "weapon", + "_id": "iEzPscUc18GuFoB6", + "img": "icons/weapons/sickles/sickle-hooked-wood.webp", + "system": { + "description": "", + "actions": { + "PaIPWLldOnp89Mfk": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Hook", + "description": "On a successful attack, you can pull the target into Melee range.", + "img": "icons/skills/melee/strike-chain-whip-blue.webp", + "_id": "PaIPWLldOnp89Mfk", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "hooked", + "actionIds": [ + "PaIPWLldOnp89Mfk" + ], + "effectIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "i9jZXe5K5nIc58AG", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753744418464, + "modifiedTime": 1753794424526, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!iEzPscUc18GuFoB6" +} diff --git a/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json b/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json new file mode 100644 index 00000000..40092016 --- /dev/null +++ b/src/packs/items/weapons/weapon_Greatbow_MXBpbqQsZFln4rZk.json @@ -0,0 +1,168 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Greatbow", + "type": "weapon", + "_id": "MXBpbqQsZFln4rZk", + "img": "icons/weapons/bows/bow-ornamental-silver-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "K4VgrDjVj1U1m9Ie" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "K4VgrDjVj1U1m9Ie", + "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": 1753829828349, + "modifiedTime": 1753829828349, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!MXBpbqQsZFln4rZk.K4VgrDjVj1U1m9Ie" + } + ], + "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": 1753829810496, + "modifiedTime": 1753829836266, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!MXBpbqQsZFln4rZk" +} diff --git a/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json b/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json new file mode 100644 index 00000000..91ab35c3 --- /dev/null +++ b/src/packs/items/weapons/weapon_Greatstaff_Yk8pTEmyLLi4095S.json @@ -0,0 +1,168 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Greatstaff", + "type": "weapon", + "_id": "Yk8pTEmyLLi4095S", + "img": "icons/weapons/wands/wand-gem-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "904orawScurM9GjG" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "904orawScurM9GjG", + "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": 1753828561510, + "modifiedTime": 1753828561510, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!Yk8pTEmyLLi4095S.904orawScurM9GjG" + } + ], + "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": 1753828546209, + "modifiedTime": 1753828572366, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!Yk8pTEmyLLi4095S" +} diff --git a/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json b/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json new file mode 100644 index 00000000..88d68120 --- /dev/null +++ b/src/packs/items/weapons/weapon_Greatsword_70ysaFJDREwTgvZa.json @@ -0,0 +1,173 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Greatsword", + "type": "weapon", + "_id": "70ysaFJDREwTgvZa", + "img": "icons/weapons/swords/greatsword-crossguard-barbed.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "massive", + "effectIds": [ + "cffkpiwGpEGhjiUC" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Massive", + "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/skills/melee/strike-flail-destructive-yellow.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + }, + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "cffkpiwGpEGhjiUC", + "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": 1753827825532, + "modifiedTime": 1753827825532, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!70ysaFJDREwTgvZa.cffkpiwGpEGhjiUC" + } + ], + "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": 1753827812456, + "modifiedTime": 1753827837860, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!70ysaFJDREwTgvZa" +} diff --git a/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json b/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json new file mode 100644 index 00000000..76ef57d5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Halberd_qT7FfmauAumOjJoq.json @@ -0,0 +1,163 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Halberd", + "type": "weapon", + "_id": "qT7FfmauAumOjJoq", + "img": "icons/weapons/polearms/halberd-engraved-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "YxaGOWcQEesO9zPR" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "YxaGOWcQEesO9zPR", + "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": 1753828021173, + "modifiedTime": 1753828021173, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!qT7FfmauAumOjJoq.YxaGOWcQEesO9zPR" + } + ], + "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": 1753828005240, + "modifiedTime": 1753828027571, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..dfb94b82 --- /dev/null +++ b/src/packs/items/weapons/weapon_Hallowed_Axe_Vayg7CnRTFBrunjM.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Hallowed Axe", + "type": "weapon", + "_id": "Vayg7CnRTFBrunjM", + "img": "icons/weapons/axes/axe-broad-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828229603, + "modifiedTime": 1753828259599, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..79b179e2 --- /dev/null +++ b/src/packs/items/weapons/weapon_Hammer_of_Exota_0lAkBEUvbM9Osmqb.json @@ -0,0 +1,146 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Hammer of Exota", + "type": "weapon", + "_id": "0lAkBEUvbM9Osmqb", + "img": "icons/weapons/hammers/hammer-double-glowing-yellow.webp", + "system": { + "description": "", + "actions": { + "yrqmcBPVjCKmx1fp": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Erupt", + "description": "On a successful attack against a target within Melee range, all other adversaries within Very Close range must succeed on a reaction roll (14) or take half damage.", + "img": "icons/skills/melee/strike-hammer-destructive-blue.webp", + "_id": "yrqmcBPVjCKmx1fp", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "eruptive", + "effectIds": [], + "actionIds": [ + "yrqmcBPVjCKmx1fp" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831233943, + "modifiedTime": 1753831254600, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..0733bc22 --- /dev/null +++ b/src/packs/items/weapons/weapon_Hammer_of_Wrath_1R4uzOpWD8bkYRUm.json @@ -0,0 +1,154 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Hammer of Wrath", + "type": "weapon", + "_id": "1R4uzOpWD8bkYRUm", + "img": "icons/weapons/hammers/hammer-double-studded.webp", + "system": { + "description": "", + "actions": { + "nTogna9Phzw7VjPr": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Devastate", + "description": "Before you make an attack roll, you can mark a Stress to use a d20 as your damage die.", + "img": "icons/skills/melee/strike-flail-destructive-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "nTogna9Phzw7VjPr", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "devastating", + "effectIds": [], + "actionIds": [ + "nTogna9Phzw7VjPr" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832169515, + "modifiedTime": 1753832195344, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9dfce730 --- /dev/null +++ b/src/packs/items/weapons/weapon_Hand_Cannon_MyGz8nd5sieRQ7zl.json @@ -0,0 +1,146 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Hand Cannon", + "type": "weapon", + "_id": "MyGz8nd5sieRQ7zl", + "img": "icons/weapons/guns/gun-purple.webp", + "system": { + "description": "", + "actions": { + "fZ4lxZ9eXeCSVKrT": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Reload", + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again.", + "img": "icons/weapons/ammunition/shot-round-blue.webp", + "_id": "fZ4lxZ9eXeCSVKrT", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reloading", + "effectIds": [], + "actionIds": [ + "fZ4lxZ9eXeCSVKrT" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835328057, + "modifiedTime": 1753835363359, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..7cbbeaec --- /dev/null +++ b/src/packs/items/weapons/weapon_Hand_Crossbow_zxKt6qXe7uZB6ljm.json @@ -0,0 +1,116 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Hand Crossbow", + "type": "weapon", + "_id": "zxKt6qXe7uZB6ljm", + "img": "icons/weapons/crossbows/crossbow-simple-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "i9jZXe5K5nIc58AG", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753744526958, + "modifiedTime": 1753794520954, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b16488ce --- /dev/null +++ b/src/packs/items/weapons/weapon_Hand_Runes_3whiedn0jBMNRdIb.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Hand Runes", + "type": "weapon", + "_id": "3whiedn0jBMNRdIb", + "img": "icons/magic/symbols/rune-sigil-white-pink.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828308338, + "modifiedTime": 1753828333546, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..39a16ddb --- /dev/null +++ b/src/packs/items/weapons/weapon_Hand_Sling_RAIaoMi6iO1PKIlK.json @@ -0,0 +1,188 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Hand Sling", + "type": "weapon", + "_id": "RAIaoMi6iO1PKIlK", + "img": "icons/weapons/slings/slingshot-wood.webp", + "system": { + "description": "", + "actions": { + "GgtsuUCtxGX9e4Kg": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": 4, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "close", + "roll": { + "useDefault": true, + "type": "attack", + "trait": "finesse", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "GgtsuUCtxGX9e4Kg", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/slings/slingshot-wood.webp" + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753796778752, + "modifiedTime": 1753796892053, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..92131406 --- /dev/null +++ b/src/packs/items/weapons/weapon_Heavy_Frame_Wheelchair_XjPQjhRCH08VUIbr.json @@ -0,0 +1,163 @@ +{ + "folder": "6nJ3reb1jx83CtRy", + "name": "Heavy-Frame Wheelchair", + "type": "weapon", + "_id": "XjPQjhRCH08VUIbr", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "1godgiqdDADyR0Tw" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "1godgiqdDADyR0Tw", + "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": 1753836663678, + "modifiedTime": 1753836663678, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!XjPQjhRCH08VUIbr.1godgiqdDADyR0Tw" + } + ], + "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": 1753836652314, + "modifiedTime": 1753836667128, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5d2ad638 --- /dev/null +++ b/src/packs/items/weapons/weapon_Ilmari_s_Rifle_TMrUzVC3KvcHmdt8.json @@ -0,0 +1,146 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Ilmari's Rifle", + "type": "weapon", + "_id": "TMrUzVC3KvcHmdt8", + "img": "icons/weapons/guns/gun-green.webp", + "system": { + "description": "", + "actions": { + "BaU47zTo2F4PwjVT": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Reload", + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again.", + "img": "icons/weapons/ammunition/shot-round-blue.webp", + "_id": "BaU47zTo2F4PwjVT", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reloading", + "effectIds": [], + "actionIds": [ + "BaU47zTo2F4PwjVT" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "Zz0k98NVLRpebKgq", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834324778, + "modifiedTime": 1753834352088, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5dd794d9 --- /dev/null +++ b/src/packs/items/weapons/weapon_Impact_Gauntlet_Zg6IutksQVOqAg8K.json @@ -0,0 +1,154 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Impact Gauntlet", + "type": "weapon", + "_id": "Zg6IutksQVOqAg8K", + "img": "icons/equipment/hand/gauntlet-armored-red-gold.webp", + "system": { + "description": "", + "actions": { + "wh1Op9x5dVDpwXyd": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Concuss", + "description": "On a successful attack, you can spend a Hope to knock the target back to Far range.", + "img": "icons/skills/melee/shield-block-bash-yellow.webp", + "target": { + "type": "any", + "amount": null + }, + "cost": [ + { + "key": "hope", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "wh1Op9x5dVDpwXyd", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "concussive", + "effectIds": [], + "actionIds": [ + "wh1Op9x5dVDpwXyd" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835022121, + "modifiedTime": 1753835056093, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..36070ae1 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Arcane_Frame_Wheelchair_N9P695V5KKlJbAY5.json @@ -0,0 +1,161 @@ +{ + "folder": "fFuMdvpD1F3UshmM", + "name": "Improved Arcane-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "G561ymlNGmaFAYFB" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "G561ymlNGmaFAYFB", + "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", + "lastModifiedBy": null + }, + "_key": "!items.effects!N9P695V5KKlJbAY5.G561ymlNGmaFAYFB" + } + ], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836714712, + "modifiedTime": 1753836748404, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "N9P695V5KKlJbAY5", + "sort": 0, + "_key": "!items!N9P695V5KKlJbAY5" +} diff --git a/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json b/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json new file mode 100644 index 00000000..ace2d7f5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Arcane_Gauntlets_kENTDpa1hr5LDhIT.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Arcane Gauntlets", + "type": "weapon", + "_id": "kENTDpa1hr5LDhIT", + "img": "icons/equipment/hand/glove-studded-leather-pink.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830663702, + "modifiedTime": 1753830688044, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..78a1d9ce --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Battleaxe_nxGUpuHLmuKdKsDC.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Battleaxe", + "type": "weapon", + "_id": "nxGUpuHLmuKdKsDC", + "img": "icons/weapons/axes/axe-double-engraved-runes.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829159520, + "modifiedTime": 1753829179084, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..dad2f4db --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Broadsword_OcKeLJxvmdT81VBc.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Broadsword", + "type": "weapon", + "_id": "OcKeLJxvmdT81VBc", + "img": "icons/weapons/swords/sword-guard-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "xU0DD5ydbwmXMKtF" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "xU0DD5ydbwmXMKtF", + "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": 1753829126416, + "modifiedTime": 1753829126416, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!OcKeLJxvmdT81VBc.xU0DD5ydbwmXMKtF" + } + ], + "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": 1753829098118, + "modifiedTime": 1753829367508, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4ebf336e --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Crossbow_55NwHIIZHUeKSE3M.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Crossbow", + "type": "weapon", + "_id": "55NwHIIZHUeKSE3M", + "img": "icons/weapons/crossbows/crossbow-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829524850, + "modifiedTime": 1753829540618, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..57ead715 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Cutlass_ddRjXnp2vbohu7rJ.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Cutlass", + "type": "weapon", + "_id": "ddRjXnp2vbohu7rJ", + "img": "icons/weapons/swords/scimitar-guard-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829336088, + "modifiedTime": 1753829379988, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..09e93778 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Dagger_ScjTkb9qrndhlk9S.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Dagger", + "type": "weapon", + "_id": "ScjTkb9qrndhlk9S", + "img": "icons/weapons/daggers/dagger-straight-stone.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829275876, + "modifiedTime": 1753829295031, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..a55aedd0 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Dualstaff_f7hhHlZ5nL3AhYEM.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Dualstaff", + "type": "weapon", + "_id": "f7hhHlZ5nL3AhYEM", + "img": "icons/weapons/staves/staff-ornate-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830887023, + "modifiedTime": 1753830918763, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..1ee640bb --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Glowing_Rings_N5amhkxR1xn3B7r2.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Glowing Rings", + "type": "weapon", + "_id": "N5amhkxR1xn3B7r2", + "img": "icons/equipment/finger/ring-band-engraved-teal.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830729041, + "modifiedTime": 1753830753601, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..d8b91be7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Grappler_3T3o9zfe61t22L1H.json @@ -0,0 +1,146 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Grappler", + "type": "weapon", + "_id": "3T3o9zfe61t22L1H", + "img": "icons/weapons/sickles/sickle-hooked-worn.webp", + "system": { + "description": "", + "actions": { + "HzrHPd2DgvhdCHkL": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Hook", + "description": "On a successful attack, you can pull the target into Melee range.", + "img": "icons/skills/melee/strike-chain-whip-blue.webp", + "_id": "HzrHPd2DgvhdCHkL", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "hooked", + "effectIds": [], + "actionIds": [ + "HzrHPd2DgvhdCHkL" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753794386984, + "modifiedTime": 1753795053642, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9b239f60 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Greatstaff_LCuTrYXi4lhg6LqW.json @@ -0,0 +1,168 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Greatstaff", + "type": "weapon", + "_id": "LCuTrYXi4lhg6LqW", + "img": "icons/weapons/wands/wand-carved-pink.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "hnayB09P25ZW3gVY" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "hnayB09P25ZW3gVY", + "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": 1753831053150, + "modifiedTime": 1753831053150, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!LCuTrYXi4lhg6LqW.hnayB09P25ZW3gVY" + } + ], + "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": 1753831031130, + "modifiedTime": 1753831074766, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..28cad987 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Greatsword_FPX4ouDrxXiQ5MDf.json @@ -0,0 +1,173 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Greatsword", + "type": "weapon", + "_id": "FPX4ouDrxXiQ5MDf", + "img": "icons/weapons/swords/greatsword-crossguard-silver.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "massive", + "effectIds": [ + "2nl35v8sPAudiOIb" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Massive", + "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/skills/melee/strike-flail-destructive-yellow.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + }, + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "2nl35v8sPAudiOIb", + "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": 1753829211946, + "modifiedTime": 1753829211946, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!FPX4ouDrxXiQ5MDf.2nl35v8sPAudiOIb" + } + ], + "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": 1753829188168, + "modifiedTime": 1753829211950, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..bc88174b --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Halberd_F9PETfCQGwczBPif.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Halberd", + "type": "weapon", + "_id": "F9PETfCQGwczBPif", + "img": "icons/weapons/polearms/halberd-crescent-worn.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "POQepSxCro9T9OYT" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "POQepSxCro9T9OYT", + "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": 1753829436555, + "modifiedTime": 1753829436555, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!F9PETfCQGwczBPif.POQepSxCro9T9OYT" + } + ], + "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": 1753829414070, + "modifiedTime": 1753829436559, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..818c0f55 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Hallowed_Axe_wFOXMN2uiX4j6Gd9.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Hallowed Axe", + "type": "weapon", + "_id": "wFOXMN2uiX4j6Gd9", + "img": "icons/weapons/axes/axe-broad-hooked.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830697026, + "modifiedTime": 1753830717920, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..63e7f363 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Hand_Crossbow_XEDRkuw3BhMoVBn9.json @@ -0,0 +1,116 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Hand Crossbow", + "type": "weapon", + "_id": "XEDRkuw3BhMoVBn9", + "img": "icons/weapons/crossbows/crossbow-simple-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753794476404, + "modifiedTime": 1753794517681, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..246a4dff --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Hand_Runes_jMEukC3VpNDz5AOD.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Hand Runes", + "type": "weapon", + "_id": "jMEukC3VpNDz5AOD", + "img": "icons/magic/symbols/rune-sigil-rough-white-teal.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830762576, + "modifiedTime": 1753830786247, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..41abaff0 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Heavy_Frame_Wheelchair_L5KeCtrs768PmYWW.json @@ -0,0 +1,161 @@ +{ + "folder": "fFuMdvpD1F3UshmM", + "name": "Improved Heavy-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "1godgiqdDADyR0Tw" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "1godgiqdDADyR0Tw", + "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", + "lastModifiedBy": null + }, + "_key": "!items.effects!L5KeCtrs768PmYWW.1godgiqdDADyR0Tw" + } + ], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836674233, + "modifiedTime": 1753836769685, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "L5KeCtrs768PmYWW", + "sort": 0, + "_key": "!items!L5KeCtrs768PmYWW" +} 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 new file mode 100644 index 00000000..c750bac9 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Light_Frame_Wheelchair_ZJsetdHKV77ygtCE.json @@ -0,0 +1,154 @@ +{ + "folder": "fFuMdvpD1F3UshmM", + "name": "Improved Light-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": { + "V1GupKWIUExrfrf9": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "V1GupKWIUExrfrf9", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "V1GupKWIUExrfrf9" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836612291, + "modifiedTime": 1753836778961, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "ZJsetdHKV77ygtCE", + "sort": 0, + "_key": "!items!ZJsetdHKV77ygtCE" +} diff --git a/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json b/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json new file mode 100644 index 00000000..18b98cc0 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Longbow_NacNonjbzyoVMNhI.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Longbow", + "type": "weapon", + "_id": "NacNonjbzyoVMNhI", + "img": "icons/weapons/bows/longbow-recurve-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "TC4yGDrnOisOpDQu" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "TC4yGDrnOisOpDQu", + "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": 1753829574673, + "modifiedTime": 1753829574673, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!NacNonjbzyoVMNhI.TC4yGDrnOisOpDQu" + } + ], + "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": 1753829548741, + "modifiedTime": 1753829574677, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..867a563f --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Longsword_QyBZ5NxM8F9nCL9s.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Longsword", + "type": "weapon", + "_id": "QyBZ5NxM8F9nCL9s", + "img": "icons/weapons/swords/sword-guard-red-jewel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829133179, + "modifiedTime": 1753829150848, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..3c079674 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Mace_zSLx52U4Yltqx8F1.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Mace", + "type": "weapon", + "_id": "zSLx52U4Yltqx8F1", + "img": "icons/weapons/maces/mace-spiked-wood-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829219204, + "modifiedTime": 1753829233784, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..54b220a5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Quarterstaff_BEmAR60PM3ZaiNXa.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Quarterstaff", + "type": "weapon", + "_id": "BEmAR60PM3ZaiNXa", + "img": "icons/weapons/staves/staff-simple-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829305566, + "modifiedTime": 1753829326219, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..27808573 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Rapier_LFPH8nD2f4Blv3AM.json @@ -0,0 +1,154 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Rapier", + "type": "weapon", + "_id": "LFPH8nD2f4Blv3AM", + "img": "icons/weapons/swords/sword-jeweled-red.webp", + "system": { + "description": "", + "actions": { + "zXJzLttPMezUzh49": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "zXJzLttPMezUzh49", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "zXJzLttPMezUzh49" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829388946, + "modifiedTime": 1753829406872, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..64404db7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Returning_Blade_SKNwkW23eVQjN4Zy.json @@ -0,0 +1,146 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Returning Blade", + "type": "weapon", + "_id": "SKNwkW23eVQjN4Zy", + "img": "icons/weapons/swords/shortsword-hooked-blue.webp", + "system": { + "description": "", + "actions": { + "6nWKaQBWwjztIzCr": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Return", + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack.", + "img": "icons/magic/movement/trail-streak-pink.webp", + "_id": "6nWKaQBWwjztIzCr", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "returning", + "effectIds": [], + "actionIds": [ + "6nWKaQBWwjztIzCr" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830798994, + "modifiedTime": 1753830839524, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..49be7813 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Round_Shield_DlinEBGZfIlvreO3.json @@ -0,0 +1,163 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Round Shield", + "type": "weapon", + "_id": "DlinEBGZfIlvreO3", + "img": "icons/equipment/shield/round-wooden-reinforced-boss-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "protective", + "effectIds": [ + "cXWSV50apzaNQkdA" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "i9jZXe5K5nIc58AG", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Protective", + "description": "Add your character'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" + } + ], + "_id": "cXWSV50apzaNQkdA", + "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": 1753794098464, + "modifiedTime": 1753794098464, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!DlinEBGZfIlvreO3.cXWSV50apzaNQkdA" + } + ], + "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": 1753744776245, + "modifiedTime": 1753794098472, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..a97d7e10 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Scepter_tj26lbNkwy8bORF4.json @@ -0,0 +1,190 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Scepter", + "type": "weapon", + "_id": "tj26lbNkwy8bORF4", + "img": "icons/weapons/staves/staff-crescent-green.webp", + "system": { + "description": "", + "actions": { + "1g3dZUkJPaGCfYN6": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": 3, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "magical" + ], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "melee", + "roll": { + "useDefault": true, + "type": "attack", + "trait": "presence", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "1g3dZUkJPaGCfYN6", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/maces/shortmace-ornate-gold.webp" + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830930043, + "modifiedTime": 1753835907269, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ec704881 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Shortbow_6ZWl6ARfvYBaAMwY.json @@ -0,0 +1,116 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Shortbow", + "type": "weapon", + "_id": "6ZWl6ARfvYBaAMwY", + "img": "icons/weapons/bows/shortbow-recurve-bone.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829484986, + "modifiedTime": 1753829516515, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5ff31862 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Shortstaff_Mn8ja5Oi1sXvvPSk.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Shortstaff", + "type": "weapon", + "_id": "Mn8ja5Oi1sXvvPSk", + "img": "icons/weapons/staves/staff-ornate.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830852208, + "modifiedTime": 1753830874554, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..65f03b0b --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Shortsword_rSyBNRwemBVuTo3H.json @@ -0,0 +1,163 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Shortsword", + "type": "weapon", + "_id": "rSyBNRwemBVuTo3H", + "img": "icons/weapons/swords/shortsword-broad-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "cSmiIOXeuw0xpjel" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "i9jZXe5K5nIc58AG", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "cSmiIOXeuw0xpjel", + "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": 1753794021004, + "modifiedTime": 1753794021004, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!rSyBNRwemBVuTo3H.cSmiIOXeuw0xpjel" + } + ], + "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": 1753744566951, + "modifiedTime": 1753794021010, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..04379b71 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Small_Dagger_nMuF8ZDZ2aXZVTg6.json @@ -0,0 +1,163 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Small Dagger", + "type": "weapon", + "_id": "nMuF8ZDZ2aXZVTg6", + "img": "icons/weapons/daggers/dagger-jeweled-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "rOjtLkrnI9EZHJm8" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "rOjtLkrnI9EZHJm8", + "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": 1753794340876, + "modifiedTime": 1753794340876, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!nMuF8ZDZ2aXZVTg6.rOjtLkrnI9EZHJm8" + } + ], + "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": 1753794291887, + "modifiedTime": 1753794340879, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..beb295d6 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Spear_j5Pt1thLfcvopBij.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Spear", + "type": "weapon", + "_id": "j5Pt1thLfcvopBij", + "img": "icons/weapons/polearms/spear-flared-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "8twXPJELZpvFWA5K" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Cumbersome", + "description": "-1 to Finesse", + "img": "icons/commodities/metal/mail-plate-steel.webp", + "changes": [ + { + "key": "system.traits.finesse.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "8twXPJELZpvFWA5K", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "transfer": true, + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753829466016, + "modifiedTime": 1753829466016, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!j5Pt1thLfcvopBij.8twXPJELZpvFWA5K" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753829443743, + "modifiedTime": 1753829474262, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b612daef --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Tower_Shield_bxt3NsbMqTSdI5ab.json @@ -0,0 +1,168 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Tower Shield", + "type": "weapon", + "_id": "bxt3NsbMqTSdI5ab", + "img": "icons/equipment/shield/pavise-wooden-seahorse-blue-white.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "barrier", + "effectIds": [ + "tkNEA1PO3jEFhKCa" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Barrier", + "description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion", + "img": "icons/skills/melee/shield-block-bash-blue.webp", + "changes": [ + { + "key": "system.armorScore", + "mode": 2, + "value": "ITEM.@system.tier + 1" + }, + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "tkNEA1PO3jEFhKCa", + "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": 1753794257125, + "modifiedTime": 1753794257125, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!bxt3NsbMqTSdI5ab.tkNEA1PO3jEFhKCa" + } + ], + "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": 1753794198427, + "modifiedTime": 1753794267315, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..951b4115 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Wand_6d9B2b5X2d2U56jt.json @@ -0,0 +1,116 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Improved Wand", + "type": "weapon", + "_id": "6d9B2b5X2d2U56jt", + "img": "icons/weapons/wands/wand-gem-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753830985241, + "modifiedTime": 1753831019167, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..115195a7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Warhammer_pxaN4ZK4eqKrjtWj.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Improved Warhammer", + "type": "weapon", + "_id": "pxaN4ZK4eqKrjtWj", + "img": "icons/weapons/hammers/hammer-double-engraved-ruby.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "KvdwqkM3ErLxMzDq" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "KvdwqkM3ErLxMzDq", + "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": 1753829265348, + "modifiedTime": 1753829265348, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!pxaN4ZK4eqKrjtWj.KvdwqkM3ErLxMzDq" + } + ], + "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": 1753829240673, + "modifiedTime": 1753829265352, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..1035131d --- /dev/null +++ b/src/packs/items/weapons/weapon_Improved_Whip_ftTp8VlsBQ1r4LFD.json @@ -0,0 +1,154 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Improved Whip", + "type": "weapon", + "_id": "ftTp8VlsBQ1r4LFD", + "img": "icons/weapons/misc/whip-red-yellow.webp", + "system": { + "description": "", + "actions": { + "itHKcDEckRlitu2z": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Startle", + "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range.", + "img": "icons/magic/control/fear-fright-mask-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "itHKcDEckRlitu2z", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "startling", + "effectIds": [], + "actionIds": [ + "itHKcDEckRlitu2z" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753794353291, + "modifiedTime": 1753808384267, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c7b5c32f --- /dev/null +++ b/src/packs/items/weapons/weapon_Keeper_s_Staff_q382JqMkqLaaFLIr.json @@ -0,0 +1,163 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Keeper's Staff", + "type": "weapon", + "_id": "q382JqMkqLaaFLIr", + "img": "icons/weapons/wands/wand-gem-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "FlmOrbhYbieIAVJL" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "FlmOrbhYbieIAVJL", + "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": 1753831441325, + "modifiedTime": 1753831441325, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!q382JqMkqLaaFLIr.FlmOrbhYbieIAVJL" + } + ], + "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": 1753831418620, + "modifiedTime": 1753831441332, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..fafe9bbc --- /dev/null +++ b/src/packs/items/weapons/weapon_Knuckle_Blades_U8gfyvxoHm024inM.json @@ -0,0 +1,146 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Knuckle Blades", + "type": "weapon", + "_id": "U8gfyvxoHm024inM", + "img": "icons/equipment/hand/gauntlet-tooled-steel-grey.webp", + "system": { + "description": "", + "actions": { + "oTuCXX7dCQYmabzi": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.name", + "description": "DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.description", + "img": "icons/skills/melee/strike-dagger-blood-red.webp", + "_id": "oTuCXX7dCQYmabzi", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "brutal", + "effectIds": [], + "actionIds": [ + "oTuCXX7dCQYmabzi" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829611315, + "modifiedTime": 1753829635422, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c65353db --- /dev/null +++ b/src/packs/items/weapons/weapon_Knuckle_Claws_SFqganS8Du4aEKjQ.json @@ -0,0 +1,188 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Knuckle Claws", + "type": "weapon", + "_id": "SFqganS8Du4aEKjQ", + "img": "icons/skills/melee/blade-tips-triple-steel.webp", + "system": { + "description": "", + "actions": { + "fRKcEeShWSLkoExh": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Double Up", + "description": "When you make an attack with your primary weapon, you can deal damage to another target within Melee range.", + "img": "icons/skills/melee/strike-slashes-orange.webp", + "_id": "fRKcEeShWSLkoExh", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + }, + "lVsEmJwjYgpYL9l4": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Double Up", + "description": "When you make an attack with your primary weapon, you can deal damage to another target within Melee range.", + "img": "icons/skills/melee/strike-slashes-orange.webp", + "_id": "lVsEmJwjYgpYL9l4", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + }, + "2ndqofzTHsEUMxsm": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Double Up", + "description": "When you make an attack with your primary weapon, you can deal damage to another target within Melee range.", + "img": "icons/skills/melee/strike-slashes-orange.webp", + "_id": "2ndqofzTHsEUMxsm", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "doubledUp", + "effectIds": [], + "actionIds": [ + "2ndqofzTHsEUMxsm" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 8, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753797258168, + "modifiedTime": 1753798882899, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..fe91f8a1 --- /dev/null +++ b/src/packs/items/weapons/weapon_Labrys_Axe_ijWppQzSOqVCb3rE.json @@ -0,0 +1,163 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Labrys Axe", + "type": "weapon", + "_id": "ijWppQzSOqVCb3rE", + "img": "icons/weapons/axes/axe-battle-jagged.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "protective", + "effectIds": [ + "qTxADRsQnKiYfOiQ" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Protective", + "description": "Add your character'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" + } + ], + "_id": "qTxADRsQnKiYfOiQ", + "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": 1753832220497, + "modifiedTime": 1753832220497, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!ijWppQzSOqVCb3rE.qTxADRsQnKiYfOiQ" + } + ], + "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": 1753832206440, + "modifiedTime": 1753832248436, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..16211d24 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Arcane_Frame_Wheelchair_gA2tiET9VHGhwMoO.json @@ -0,0 +1,161 @@ +{ + "folder": "beilKE5ZPAihKg3O", + "name": "Legendary Arcane-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "G561ymlNGmaFAYFB" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "G561ymlNGmaFAYFB", + "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", + "lastModifiedBy": null + }, + "_key": "!items.effects!gA2tiET9VHGhwMoO.G561ymlNGmaFAYFB" + } + ], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836717240, + "modifiedTime": 1753836812453, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "gA2tiET9VHGhwMoO", + "sort": 0, + "_key": "!items!gA2tiET9VHGhwMoO" +} diff --git a/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json b/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json new file mode 100644 index 00000000..ba769375 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Arcane_Gauntlets_umADDPYCaykXDc1v.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Arcane Gauntlets", + "type": "weapon", + "_id": "umADDPYCaykXDc1v", + "img": "icons/equipment/hand/gauntlet-armored-leather-steel-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835451334, + "modifiedTime": 1753835475492, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c7376573 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Battleaxe_1nztpLzoHGfbKf5x.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Battleaxe", + "type": "weapon", + "_id": "1nztpLzoHGfbKf5x", + "img": "icons/weapons/axes/axe-double-engraved-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834500236, + "modifiedTime": 1753834519405, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ca0622de --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Broadsword_y3hfTPfZhMognyaJ.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Broadsword", + "type": "weapon", + "_id": "y3hfTPfZhMognyaJ", + "img": "icons/weapons/swords/sword-guard-bronze.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "lmUzKw6J6RW3krRT" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "lmUzKw6J6RW3krRT", + "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": 1753834461846, + "modifiedTime": 1753834461846, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!y3hfTPfZhMognyaJ.lmUzKw6J6RW3krRT" + } + ], + "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": 1753834430378, + "modifiedTime": 1753834465538, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..51bc4ea3 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Crossbow_1G6xX2QL9O0Rsgz7.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Crossbow", + "type": "weapon", + "_id": "1G6xX2QL9O0Rsgz7", + "img": "icons/weapons/crossbows/crossbow-ornamental-winged.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834862922, + "modifiedTime": 1753834882694, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..99950a86 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Cutlass_Rpyz0jbFJ1SwqfyD.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Cutlass", + "type": "weapon", + "_id": "Rpyz0jbFJ1SwqfyD", + "img": "icons/weapons/swords/scimitar-guard.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834710917, + "modifiedTime": 1753834734158, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..02b8cdce --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Dagger_GmTg3Fdne1UPNs8t.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Dagger", + "type": "weapon", + "_id": "GmTg3Fdne1UPNs8t", + "img": "icons/weapons/daggers/dagger-jeweled-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834616464, + "modifiedTime": 1753834659439, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5c7977cc --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Dualstaff_o3rsLvImcLAx5TvD.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Dualstaff", + "type": "weapon", + "_id": "o3rsLvImcLAx5TvD", + "img": "icons/weapons/staves/staff-ornate-teal.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835724086, + "modifiedTime": 1753835787515, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9d55a327 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Glowing_Rings_PReWrfuPjoNQuieo.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Glowing Rings", + "type": "weapon", + "_id": "PReWrfuPjoNQuieo", + "img": "icons/equipment/finger/ring-bone-teeth.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835522076, + "modifiedTime": 1753835564865, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..3a22dde7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Grappler_IrtUj0UntBMNn49G.json @@ -0,0 +1,146 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Grappler", + "type": "weapon", + "_id": "IrtUj0UntBMNn49G", + "img": "icons/weapons/sickles/sickle-hooked-silver.webp", + "system": { + "description": "", + "actions": { + "swNMa4gW6guA8GaH": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Hook", + "description": "On a successful attack, you can pull the target into Melee range.", + "img": "icons/skills/melee/strike-chain-whip-blue.webp", + "_id": "swNMa4gW6guA8GaH", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "hooked", + "effectIds": [], + "actionIds": [ + "swNMa4gW6guA8GaH" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753797131628, + "modifiedTime": 1753797154423, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..a7dbbfc5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Greatstaff_jDtvEabkHY1GFgfc.json @@ -0,0 +1,168 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Greatstaff", + "type": "weapon", + "_id": "jDtvEabkHY1GFgfc", + "img": "icons/weapons/wands/wand-carved-fire.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "OV1Ly7vX4owBUgLQ" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "OV1Ly7vX4owBUgLQ", + "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": 1753835979594, + "modifiedTime": 1753835979594, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!jDtvEabkHY1GFgfc.OV1Ly7vX4owBUgLQ" + } + ], + "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": 1753835957503, + "modifiedTime": 1753835997508, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..cfd0cfc6 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Greatsword_zMZ46F9VR7zdTxb9.json @@ -0,0 +1,173 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Greatsword", + "type": "weapon", + "_id": "zMZ46F9VR7zdTxb9", + "img": "icons/weapons/swords/greatsword-crossguard-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "massive", + "effectIds": [ + "oRCiXSElN5xufUfn" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Massive", + "description": "-1 to Evasion; on a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/skills/melee/strike-flail-destructive-yellow.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + }, + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "oRCiXSElN5xufUfn", + "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": 1753834531834, + "modifiedTime": 1753834531834, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!zMZ46F9VR7zdTxb9.oRCiXSElN5xufUfn" + } + ], + "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": 1753834526945, + "modifiedTime": 1753834554233, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..caeb9c2e --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Halberd_1AuMNiJz96Ez9fur.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Halberd", + "type": "weapon", + "_id": "1AuMNiJz96Ez9fur", + "img": "icons/weapons/polearms/halberd-crescent-glowing.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "MmVRlnSLFWBfNJlB" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "MmVRlnSLFWBfNJlB", + "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": 1753834787206, + "modifiedTime": 1753834787206, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!1AuMNiJz96Ez9fur.MmVRlnSLFWBfNJlB" + } + ], + "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": 1753834772989, + "modifiedTime": 1753834797363, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..2c56cdaa --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Hallowed_Axe_0HmhnZnv1I6uX69c.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Hallowed Axe", + "type": "weapon", + "_id": "0HmhnZnv1I6uX69c", + "img": "icons/weapons/axes/axe-battle-worn-eye.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835486056, + "modifiedTime": 1753835507874, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..35e53a9a --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Hand_Crossbow_32nYyMaeDWaakSxz.json @@ -0,0 +1,116 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Hand Crossbow", + "type": "weapon", + "_id": "32nYyMaeDWaakSxz", + "img": "icons/weapons/crossbows/handcrossbow-black.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753797168339, + "modifiedTime": 1753797192489, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..73886272 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Hand_Runes_DWLkswhluXuMy3bB.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Hand Runes", + "type": "weapon", + "_id": "DWLkswhluXuMy3bB", + "img": "icons/magic/symbols/rune-sigil-red-orange.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835579627, + "modifiedTime": 1753835606935, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ade62012 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Heavy_Frame_Wheelchair_S6nB0CNlzdU05o5U.json @@ -0,0 +1,161 @@ +{ + "folder": "beilKE5ZPAihKg3O", + "name": "Legendary Heavy-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "1godgiqdDADyR0Tw" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "1godgiqdDADyR0Tw", + "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", + "lastModifiedBy": null + }, + "_key": "!items.effects!S6nB0CNlzdU05o5U.1godgiqdDADyR0Tw" + } + ], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836676831, + "modifiedTime": 1753836820180, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "S6nB0CNlzdU05o5U", + "sort": 0, + "_key": "!items!S6nB0CNlzdU05o5U" +} 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 new file mode 100644 index 00000000..5b704d6c --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Light_Frame_Wheelchair_Xt8tVSn5Fu6ly6LF.json @@ -0,0 +1,154 @@ +{ + "folder": "beilKE5ZPAihKg3O", + "name": "Legendary Light-Frame Wheelchair", + "type": "weapon", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": { + "V1GupKWIUExrfrf9": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "V1GupKWIUExrfrf9", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "V1GupKWIUExrfrf9" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [], + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836615437, + "modifiedTime": 1753836826572, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_id": "Xt8tVSn5Fu6ly6LF", + "sort": 0, + "_key": "!items!Xt8tVSn5Fu6ly6LF" +} diff --git a/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json b/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json new file mode 100644 index 00000000..333632dc --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Longbow_Utt1GpoH1fhaTOtN.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Longbow", + "type": "weapon", + "_id": "Utt1GpoH1fhaTOtN", + "img": "icons/weapons/bows/bow-ornamental-carved-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "004BkCQeQzuMVGS3" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "004BkCQeQzuMVGS3", + "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": 1753834914733, + "modifiedTime": 1753834914733, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!Utt1GpoH1fhaTOtN.004BkCQeQzuMVGS3" + } + ], + "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": 1753834890609, + "modifiedTime": 1753834925920, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..186cd1c1 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Longsword_14abPqQcROJfDChR.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Longsword", + "type": "weapon", + "_id": "14abPqQcROJfDChR", + "img": "icons/weapons/swords/sword-guard-engraved.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834472085, + "modifiedTime": 1753834491863, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e037c5c8 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Mace_RsDsy7tIhrhaAQQc.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Mace", + "type": "weapon", + "_id": "RsDsy7tIhrhaAQQc", + "img": "icons/weapons/maces/mace-spiked-steel-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834566762, + "modifiedTime": 1753834581202, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b4ea03f9 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Quarterstaff_1ZciqG7vIKLYpKsP.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Quarterstaff", + "type": "weapon", + "_id": "1ZciqG7vIKLYpKsP", + "img": "icons/weapons/staves/staff-orante-gold.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834677366, + "modifiedTime": 1753834698077, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..bbdf3ad9 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Rapier_BakN97v4jTePcXiZ.json @@ -0,0 +1,154 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Rapier", + "type": "weapon", + "_id": "BakN97v4jTePcXiZ", + "img": "icons/weapons/swords/sword-jeweled-red.webp", + "system": { + "description": "", + "actions": { + "AwoesSV7Nt5W0lbf": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "AwoesSV7Nt5W0lbf", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "AwoesSV7Nt5W0lbf" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834740751, + "modifiedTime": 1753834763060, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..8081d1ce --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Returning_Blade_mcj3CPkcSSDdAcBB.json @@ -0,0 +1,146 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Returning Blade", + "type": "weapon", + "_id": "mcj3CPkcSSDdAcBB", + "img": "icons/weapons/swords/scimitar-blue.webp", + "system": { + "description": "", + "actions": { + "ZbZIFYeEfo0cpOEO": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Return", + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack.", + "img": "icons/magic/movement/trail-streak-pink.webp", + "_id": "ZbZIFYeEfo0cpOEO", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "returning", + "effectIds": [], + "actionIds": [ + "ZbZIFYeEfo0cpOEO" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835615004, + "modifiedTime": 1753835665790, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..421df201 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Round_Shield_A28WL9E2lJ3iLZHW.json @@ -0,0 +1,163 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Round Shield", + "type": "weapon", + "_id": "A28WL9E2lJ3iLZHW", + "img": "icons/equipment/shield/round-wooden-boss-steel-yellow-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "protective", + "effectIds": [ + "Z2p00q5h6x6seXys" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Protective", + "description": "Add your character'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" + } + ], + "_id": "Z2p00q5h6x6seXys", + "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": 1753796983285, + "modifiedTime": 1753796983285, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!A28WL9E2lJ3iLZHW.Z2p00q5h6x6seXys" + } + ], + "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": 1753796968563, + "modifiedTime": 1753797012196, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..92d9b49c --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Scepter_IZ4CWNxfuM46JeCN.json @@ -0,0 +1,190 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Scepter", + "type": "weapon", + "_id": "IZ4CWNxfuM46JeCN", + "img": "icons/weapons/staves/staff-orb-purple.webp", + "system": { + "description": "", + "actions": { + "h6UfUEGdR11jD6g4": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": 6, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "magical" + ], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "melee", + "roll": { + "useDefault": true, + "type": "attack", + "trait": "presence", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "h6UfUEGdR11jD6g4", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/staves/staff-orb-purple.webp" + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835822353, + "modifiedTime": 1753835867763, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..0cf8c3de --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Shortbow_j7kp36jaetfn5jb3.json @@ -0,0 +1,116 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Shortbow", + "type": "weapon", + "_id": "j7kp36jaetfn5jb3", + "img": "icons/weapons/bows/shortbow-recurve-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753834834626, + "modifiedTime": 1753834854507, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9a3c1f13 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Shortstaff_D3SbNvNJZAFuzfhg.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Shortstaff", + "type": "weapon", + "_id": "D3SbNvNJZAFuzfhg", + "img": "icons/weapons/staves/staff-ornate-engraved-blue.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835676579, + "modifiedTime": 1753835813150, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..2f832ee7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Shortsword_dEumq3BIZBk5xYTk.json @@ -0,0 +1,163 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Shortsword", + "type": "weapon", + "_id": "dEumq3BIZBk5xYTk", + "img": "icons/weapons/swords/shortsword-broad-engraved.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "DgZQSBJx9JmoOngB" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "DgZQSBJx9JmoOngB", + "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": 1753796957432, + "modifiedTime": 1753796957432, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!dEumq3BIZBk5xYTk.DgZQSBJx9JmoOngB" + } + ], + "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": 1753796913551, + "modifiedTime": 1753796957439, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..be3a5886 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Small_Dagger_Px3Rh3kIvAqyISxJ.json @@ -0,0 +1,163 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Small Dagger", + "type": "weapon", + "_id": "Px3Rh3kIvAqyISxJ", + "img": "icons/weapons/daggers/dagger-crooked-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "Wjl3MEwNdQPeY63u" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "Wjl3MEwNdQPeY63u", + "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": 1753797088930, + "modifiedTime": 1753797088930, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!Px3Rh3kIvAqyISxJ.Wjl3MEwNdQPeY63u" + } + ], + "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": 1753797057472, + "modifiedTime": 1753797088933, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c1322de0 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Spear_4e5pWxi2qohuGsWh.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Spear", + "type": "weapon", + "_id": "4e5pWxi2qohuGsWh", + "img": "icons/weapons/polearms/spear-flared-worn-grey.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "f44KWDgCQeKYfccr" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Cumbersome", + "description": "-1 to Finesse", + "img": "icons/commodities/metal/mail-plate-steel.webp", + "changes": [ + { + "key": "system.traits.finesse.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "f44KWDgCQeKYfccr", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "transfer": true, + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753834816288, + "modifiedTime": 1753834816288, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!4e5pWxi2qohuGsWh.f44KWDgCQeKYfccr" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753834806427, + "modifiedTime": 1753834827595, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..7e62f1aa --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Tower_Shield_MaJIROht7A9LxIZx.json @@ -0,0 +1,168 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Tower Shield", + "type": "weapon", + "_id": "MaJIROht7A9LxIZx", + "img": "icons/equipment/shield/kite-wooden-sigil-purple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "barrier", + "effectIds": [ + "lBJMzxdGO2nJdTQS" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Barrier", + "description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion", + "img": "icons/skills/melee/shield-block-bash-blue.webp", + "changes": [ + { + "key": "system.armorScore", + "mode": 2, + "value": "ITEM.@system.tier + 1" + }, + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "lBJMzxdGO2nJdTQS", + "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": 1753797037220, + "modifiedTime": 1753797037220, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!MaJIROht7A9LxIZx.lBJMzxdGO2nJdTQS" + } + ], + "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": 1753797026049, + "modifiedTime": 1753797043015, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..be8b131b --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Wand_wPjg0LufJH9vUfVM.json @@ -0,0 +1,116 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Legendary Wand", + "type": "weapon", + "_id": "wPjg0LufJH9vUfVM", + "img": "icons/weapons/wands/wand-gem-teal.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 10, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835923888, + "modifiedTime": 1753835965485, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b449fca5 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Warhammer_W9ymfEDck2icfvla.json @@ -0,0 +1,163 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Legendary Warhammer", + "type": "weapon", + "_id": "W9ymfEDck2icfvla", + "img": "icons/weapons/hammers/hammer-double-engraved-green.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "hKvwLqCltaPV1C7n" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 12, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "hKvwLqCltaPV1C7n", + "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": 1753834602368, + "modifiedTime": 1753834602368, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!W9ymfEDck2icfvla.hKvwLqCltaPV1C7n" + } + ], + "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": 1753834588280, + "modifiedTime": 1753834609113, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b4b8bf02 --- /dev/null +++ b/src/packs/items/weapons/weapon_Legendary_Whip_Wcdbf6yS3LEt7nsg.json @@ -0,0 +1,154 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Legendary Whip", + "type": "weapon", + "_id": "Wcdbf6yS3LEt7nsg", + "img": "icons/weapons/misc/whip-red-yellow.webp", + "system": { + "description": "", + "actions": { + "0kcm7huG68hS7sRz": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Startle", + "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range.", + "img": "icons/magic/control/fear-fright-mask-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "0kcm7huG68hS7sRz", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "startling", + "effectIds": [], + "actionIds": [ + "0kcm7huG68hS7sRz" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 6, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753797101746, + "modifiedTime": 1753808440137, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..543a0f23 --- /dev/null +++ b/src/packs/items/weapons/weapon_Light_Frame_Wheelchair_iaGnlUkShBgdeMo0.json @@ -0,0 +1,154 @@ +{ + "folder": "6nJ3reb1jx83CtRy", + "name": "Light-Frame Wheelchair", + "type": "weapon", + "_id": "iaGnlUkShBgdeMo0", + "img": "icons/svg/item-bag.svg", + "system": { + "description": "", + "actions": { + "V1GupKWIUExrfrf9": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "V1GupKWIUExrfrf9", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "V1GupKWIUExrfrf9" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "fKTeCKjfyQauf5bA", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "type": [ + "physical" + ], + "value": { + "multiplier": "prof", + "dice": "d8", + "flatMultiplier": 1, + "bonus": null, + "custom": { + "enabled": false + } + }, + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753836579296, + "modifiedTime": 1753836587147, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!iaGnlUkShBgdeMo0" +} diff --git a/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json b/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json new file mode 100644 index 00000000..e20f9111 --- /dev/null +++ b/src/packs/items/weapons/weapon_Longbow_YfVs6Se903az4Yet.json @@ -0,0 +1,163 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Longbow", + "type": "weapon", + "_id": "YfVs6Se903az4Yet", + "img": "icons/weapons/bows/longbow-recurve-leather-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "9gKDF96uId07289w" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": "9gKDF96uId07289w", + "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": 1753828147996, + "modifiedTime": 1753828147996, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!YfVs6Se903az4Yet.9gKDF96uId07289w" + } + ], + "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": 1753828135552, + "modifiedTime": 1753828159427, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!YfVs6Se903az4Yet" +} diff --git a/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json b/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json new file mode 100644 index 00000000..54d18b78 --- /dev/null +++ b/src/packs/items/weapons/weapon_Longsword_Iv8BZM1R24QMT72M.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Longsword", + "type": "weapon", + "_id": "Iv8BZM1R24QMT72M", + "img": "icons/weapons/swords/sword-guard.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827769163, + "modifiedTime": 1753827781183, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!Iv8BZM1R24QMT72M" +} diff --git a/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json b/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json new file mode 100644 index 00000000..529e3874 --- /dev/null +++ b/src/packs/items/weapons/weapon_Mace_cKQCDyM2UopDL9zF.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Mace", + "type": "weapon", + "_id": "cKQCDyM2UopDL9zF", + "img": "icons/weapons/maces/mace-studded-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827843717, + "modifiedTime": 1753827858825, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f609e409 --- /dev/null +++ b/src/packs/items/weapons/weapon_Mage_Orb_XKBmBUEoGLdLcuqQ.json @@ -0,0 +1,168 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Mage Orb", + "type": "weapon", + "_id": "XKBmBUEoGLdLcuqQ", + "img": "icons/commodities/gems/pearl-purple-smooth.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "powerful", + "effectIds": [ + "2J6vzNUel78JFypp" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "Zz0k98NVLRpebKgq", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Powerful", + "description": "On a successful attack, roll an additional damage die and discard the lowest result.", + "img": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.extraDice", + "mode": 2, + "value": "1" + }, + { + "key": "system.rules.weapon.dropLowestDamageDice", + "mode": 5, + "value": "1" + } + ], + "_id": "2J6vzNUel78JFypp", + "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": 1753834272503, + "modifiedTime": 1753834272503, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!XKBmBUEoGLdLcuqQ.2J6vzNUel78JFypp" + } + ], + "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": 1753834259866, + "modifiedTime": 1753834310221, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..daa68be1 --- /dev/null +++ b/src/packs/items/weapons/weapon_Magus_Revolver_jGykNGQiKm63tCiE.json @@ -0,0 +1,146 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Magus Revolver", + "type": "weapon", + "_id": "jGykNGQiKm63tCiE", + "img": "icons/weapons/guns/gun-pistol-flintlock-metal.webp", + "system": { + "description": "", + "actions": { + "242ZR9HyiRtJqhqG": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Reload", + "description": "After you make an attack, roll a d6. On a result of 1, you must mark a Stress to reload this weapon before you can fire it again.", + "img": "icons/weapons/ammunition/shot-round-blue.webp", + "_id": "242ZR9HyiRtJqhqG", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "reloading", + "effectIds": [], + "actionIds": [ + "242ZR9HyiRtJqhqG" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 13, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753836385650, + "modifiedTime": 1753836419000, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e7809a76 --- /dev/null +++ b/src/packs/items/weapons/weapon_Meridian_Cutlass_Gi26Zk9VqlAAgx3E.json @@ -0,0 +1,146 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Meridian Cutlass", + "type": "weapon", + "_id": "Gi26Zk9VqlAAgx3E", + "img": "icons/weapons/swords/sword-guard-gold-red.webp", + "system": { + "description": "", + "actions": { + "KcmlvkOW0EbdCxTz": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Duel", + "description": "When there are no other creatures within Close range of the target, gain advantage on your attack roll against them.", + "img": "icons/skills/melee/weapons-crossed-swords-pink.webp", + "_id": "KcmlvkOW0EbdCxTz", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "dueling", + "effectIds": [], + "actionIds": [ + "KcmlvkOW0EbdCxTz" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832261628, + "modifiedTime": 1753832286780, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..420f28b8 --- /dev/null +++ b/src/packs/items/weapons/weapon_Midas_Scythe_BdLfy5i488VZgkjP.json @@ -0,0 +1,192 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Midas Scythe", + "type": "weapon", + "_id": "BdLfy5i488VZgkjP", + "img": "icons/weapons/sickles/scythe-bone-green-fire.webp", + "system": { + "description": "", + "actions": { + "kKEAq1C1fz0WZmlZ": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Greedy", + "description": "Spend a handful of gold to gain a +1 bonus to your Proficiency on a damage roll.", + "img": "icons/commodities/currency/coins-crown-stack-gold.webp", + "effects": [ + { + "_id": "1C5o1D5JYgLdt2eU", + "onSave": false + } + ], + "_id": "kKEAq1C1fz0WZmlZ", + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "greedy", + "effectIds": [ + "1C5o1D5JYgLdt2eU" + ], + "actionIds": [ + "kKEAq1C1fz0WZmlZ" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Greed", + "description": "Spend a handful of gold to gain a +1 bonus to your Proficiency on a damage roll.", + "img": "icons/commodities/currency/coins-crown-stack-gold.webp", + "changes": [ + { + "key": "system.proficiency", + "mode": 2, + "value": "1" + } + ], + "transfer": false, + "_id": "1C5o1D5JYgLdt2eU", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753836142588, + "modifiedTime": 1753836142588, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!BdLfy5i488VZgkjP.1C5o1D5JYgLdt2eU" + } + ], + "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": 1753836123608, + "modifiedTime": 1753836160033, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c4a796a7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Parrying_Dagger_taAZDkDCpeNgxhnn.json @@ -0,0 +1,146 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Parrying Dagger", + "type": "weapon", + "_id": "taAZDkDCpeNgxhnn", + "img": "icons/weapons/daggers/dagger-ritual-brown.webp", + "system": { + "description": "", + "actions": { + "zcYv4uYbkMS4OLdc": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Parry", + "description": "When you are attacked, roll this weapon's damage dice. If any of the attacker's damage dice rolled the same value as your dice, the matching results are discarded from the attacker's damage dice before the damage you take is totaled.", + "img": "icons/skills/melee/shield-block-fire-orange.webp", + "_id": "zcYv4uYbkMS4OLdc", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "parry", + "effectIds": [], + "actionIds": [ + "zcYv4uYbkMS4OLdc" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753794685727, + "modifiedTime": 1753794748494, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..417fae15 --- /dev/null +++ b/src/packs/items/weapons/weapon_Powered_Gauntlet_bW3xw5S9DbaLCN3E.json @@ -0,0 +1,200 @@ +{ + "folder": "v3OQH9vwMVYsZvXS", + "name": "Powered Gauntlet", + "type": "weapon", + "_id": "bW3xw5S9DbaLCN3E", + "img": "icons/equipment/hand/gauntlet-armored-leather-teal-orange.webp", + "system": { + "description": "", + "actions": { + "GlA0PwKQSq5vwh7D": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Charge", + "description": "Mark a Stress to gain a +1 bonus to your Proficiency on a primary weapon attack.", + "img": "icons/magic/lightning/claws-unarmed-strike-teal.webp", + "target": { + "type": "self", + "amount": null + }, + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "effects": [ + { + "_id": "n5EB7pI0kv2Zx35G", + "onSave": false + } + ], + "_id": "GlA0PwKQSq5vwh7D", + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "charged", + "effectIds": [ + "n5EB7pI0kv2Zx35G" + ], + "actionIds": [ + "GlA0PwKQSq5vwh7D" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Charged", + "description": "Mark a Stress to gain a +1 bonus to your Proficiency on a primary weapon attack.", + "img": "icons/magic/lightning/claws-unarmed-strike-teal.webp", + "changes": [ + { + "key": "system.proficiency", + "mode": 2, + "value": "1" + } + ], + "transfer": false, + "_id": "n5EB7pI0kv2Zx35G", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753808423859, + "modifiedTime": 1753808423859, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!bW3xw5S9DbaLCN3E.n5EB7pI0kv2Zx35G" + } + ], + "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": 1753796723376, + "modifiedTime": 1753808423862, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..2b39a221 --- /dev/null +++ b/src/packs/items/weapons/weapon_Primer_Shard_SxcblanBvqaest3A.json @@ -0,0 +1,146 @@ +{ + "folder": "woovqIJsIyoK1ZQW", + "name": "Primer Shard", + "type": "weapon", + "_id": "SxcblanBvqaest3A", + "img": "icons/commodities/treasure/token-gold-gem-purple.webp", + "system": { + "description": "", + "actions": { + "KGJJgz0SMdY0f0em": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Lock On", + "description": "On a successful attack, your next attack against the same target with your primary weapon automatically succeeds.", + "img": "icons/skills/targeting/crosshair-arrowhead-blue.webp", + "_id": "KGJJgz0SMdY0f0em", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "lockedon", + "effectIds": [], + "actionIds": [ + "KGJJgz0SMdY0f0em" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753797317938, + "modifiedTime": 1753797376548, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!SxcblanBvqaest3A" +} diff --git a/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json b/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json new file mode 100644 index 00000000..7526e8c1 --- /dev/null +++ b/src/packs/items/weapons/weapon_Quarterstaff_mlIj88p1wcQNjEDG.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Quarterstaff", + "type": "weapon", + "_id": "mlIj88p1wcQNjEDG", + "img": "icons/weapons/staves/staff-simple.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827915482, + "modifiedTime": 1753827935877, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!mlIj88p1wcQNjEDG" +} diff --git a/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json b/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json new file mode 100644 index 00000000..01e1cbf2 --- /dev/null +++ b/src/packs/items/weapons/weapon_Rapier_zkAgEW6zMkRZalEm.json @@ -0,0 +1,154 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Rapier", + "type": "weapon", + "_id": "zkAgEW6zMkRZalEm", + "img": "icons/weapons/swords/sword-jeweled-red.webp", + "system": { + "description": "", + "actions": { + "ojcL8L3CFPDGaki6": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Quick", + "description": "When you make an attack, you can mark a Stress to target another creature within range.", + "img": "icons/skills/movement/arrow-upward-yellow.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "ojcL8L3CFPDGaki6", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "quick", + "effectIds": [], + "actionIds": [ + "ojcL8L3CFPDGaki6" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "type": [ + "physical" + ], + "value": { + "multiplier": "prof", + "dice": "d8", + "flatMultiplier": 1, + "bonus": null, + "custom": { + "enabled": false + } + }, + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753827969157, + "modifiedTime": 1753827996285, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..350d8b4f --- /dev/null +++ b/src/packs/items/weapons/weapon_Retractable_Saber_i8CqVTzqoRoCewNe.json @@ -0,0 +1,146 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Retractable Saber", + "type": "weapon", + "_id": "i8CqVTzqoRoCewNe", + "img": "icons/weapons/swords/sword-guard-worn-brown.webp", + "system": { + "description": "", + "actions": { + "u5thk5lEvDuHXAHq": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Retract", + "description": "The blade can be hidden in the hilt to avoid detection.", + "img": "icons/skills/melee/blade-tip-smoke-green.webp", + "_id": "u5thk5lEvDuHXAHq", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "retractable", + "effectIds": [], + "actionIds": [ + "u5thk5lEvDuHXAHq" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832298659, + "modifiedTime": 1753832323983, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..5fcd1214 --- /dev/null +++ b/src/packs/items/weapons/weapon_Returning_Axe_FtsQGwOg3r8uUCST.json @@ -0,0 +1,146 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Returning Axe", + "type": "weapon", + "_id": "FtsQGwOg3r8uUCST", + "img": "icons/weapons/axes/shortaxe-worn-black.webp", + "system": { + "description": "", + "actions": { + "IjEUAtr4mOIfXPAU": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Return", + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack.", + "img": "icons/magic/movement/trail-streak-pink.webp", + "_id": "IjEUAtr4mOIfXPAU", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "returning", + "effectIds": [], + "actionIds": [ + "IjEUAtr4mOIfXPAU" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753794760906, + "modifiedTime": 1753794803866, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..e20c840e --- /dev/null +++ b/src/packs/items/weapons/weapon_Returning_Blade_4fQpVfQ3NVwTHStA.json @@ -0,0 +1,146 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Returning Blade", + "type": "weapon", + "_id": "4fQpVfQ3NVwTHStA", + "img": "icons/weapons/swords/sword-broad-worn.webp", + "system": { + "description": "", + "actions": { + "N6KlXpv5ug8Gk5Hl": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Return", + "description": "When this weapon is thrown within its range, it appears in your hand immediately after the attack.", + "img": "icons/magic/movement/trail-streak-pink.webp", + "_id": "N6KlXpv5ug8Gk5Hl", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "returning", + "effectIds": [], + "actionIds": [ + "N6KlXpv5ug8Gk5Hl" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828345143, + "modifiedTime": 1753828368281, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..9c71aa5c --- /dev/null +++ b/src/packs/items/weapons/weapon_Ricochet_Axes_E9QDh5o9eQ1Qx0kH.json @@ -0,0 +1,154 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Ricochet Axes", + "type": "weapon", + "_id": "E9QDh5o9eQ1Qx0kH", + "img": "icons/weapons/axes/axe-battle-green.webp", + "system": { + "description": "", + "actions": { + "x9cz8u1utQ6DtoKA": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Bounce", + "description": "Mark 1 or more Stress to hit that many targets in range of the attack.", + "img": "icons/skills/movement/ball-spinning-blue.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "scalable": true, + "step": 1, + "keyIsID": false + } + ], + "_id": "x9cz8u1utQ6DtoKA", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "bouncing", + "effectIds": [], + "actionIds": [ + "x9cz8u1utQ6DtoKA" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835247877, + "modifiedTime": 1753835276839, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..c49aa7dd --- /dev/null +++ b/src/packs/items/weapons/weapon_Round_Shield_mxwWKDujgsRcZWPT.json @@ -0,0 +1,163 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Round Shield", + "type": "weapon", + "_id": "mxwWKDujgsRcZWPT", + "img": "icons/equipment/shield/buckler-wooden-boss-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "protective", + "effectIds": [ + "M70a81e0Mg66jHRL" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "h3g8PT67I6xr3xsW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d4", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Protective", + "description": "Add your character'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" + } + ], + "_id": "M70a81e0Mg66jHRL", + "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": 1753794114980, + "modifiedTime": 1753794114980, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!mxwWKDujgsRcZWPT.M70a81e0Mg66jHRL" + } + ], + "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": 1753742068200, + "modifiedTime": 1753794114990, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..ce7fe3bc --- /dev/null +++ b/src/packs/items/weapons/weapon_Runes_of_Ruination_EG6mZhr3ib56r974.json @@ -0,0 +1,154 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Runes of Ruination", + "type": "weapon", + "_id": "EG6mZhr3ib56r974", + "img": "icons/magic/symbols/mask-yellow-orange.webp", + "system": { + "description": "", + "actions": { + "pmnGErMlUT1lJFDL": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Pain", + "description": "Each time you make a successful attack, you must mark a Stress.", + "img": "icons/skills/wounds/injury-face-impact-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "pmnGErMlUT1lJFDL", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "painful", + "effectIds": [], + "actionIds": [ + "pmnGErMlUT1lJFDL" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d20", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833802007, + "modifiedTime": 1753833831195, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!EG6mZhr3ib56r974" +} diff --git a/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json b/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json new file mode 100644 index 00000000..c7a686e7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Scepter_GZh345N8fmuS4Jeh.json @@ -0,0 +1,190 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Scepter", + "type": "weapon", + "_id": "GZh345N8fmuS4Jeh", + "img": "icons/weapons/staves/staff-blue-jewel.webp", + "system": { + "description": "", + "actions": { + "c7McXmzSWTNGOdHL": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d8", + "bonus": null, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [ + "magical" + ], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "melee", + "roll": { + "useDefault": true, + "type": "attack", + "trait": "presence", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "c7McXmzSWTNGOdHL", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/maces/shortmace-ornate-gold.webp" + } + }, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828453134, + "modifiedTime": 1753835916388, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4348fbee --- /dev/null +++ b/src/packs/items/weapons/weapon_Scepter_of_Elias_acPGwIaUhx3R0mTq.json @@ -0,0 +1,146 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Scepter of Elias", + "type": "weapon", + "_id": "acPGwIaUhx3R0mTq", + "img": "icons/weapons/maces/mace-skull-ram.webp", + "system": { + "description": "", + "actions": { + "LI0LkywSh5xjkWrf": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Invigorate", + "description": "On a successful attack, roll a d4. On a result of 4, clear a Stress.", + "img": "icons/magic/life/heart-cross-green.webp", + "_id": "LI0LkywSh5xjkWrf", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "invigorating", + "effectIds": [], + "actionIds": [ + "LI0LkywSh5xjkWrf" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831343009, + "modifiedTime": 1753831365565, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!acPGwIaUhx3R0mTq" +} diff --git a/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json b/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json new file mode 100644 index 00000000..424f762d --- /dev/null +++ b/src/packs/items/weapons/weapon_Shortbow_p9tdjQr2AZP19RYm.json @@ -0,0 +1,116 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Shortbow", + "type": "weapon", + "_id": "p9tdjQr2AZP19RYm", + "img": "icons/weapons/bows/shortbow-leather.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828079904, + "modifiedTime": 1753828100575, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!p9tdjQr2AZP19RYm" +} diff --git a/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json b/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json new file mode 100644 index 00000000..ed9f9492 --- /dev/null +++ b/src/packs/items/weapons/weapon_Shortstaff_vHDHG3STcxTEfYAM.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Shortstaff", + "type": "weapon", + "_id": "vHDHG3STcxTEfYAM", + "img": "icons/weapons/staves/staff-simple-carved.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "instinct", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828380553, + "modifiedTime": 1753828404541, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!vHDHG3STcxTEfYAM" +} diff --git a/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json b/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json new file mode 100644 index 00000000..92cb44b7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Shortsword_cjGZpXCoshEqi1FI.json @@ -0,0 +1,163 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Shortsword", + "type": "weapon", + "_id": "cjGZpXCoshEqi1FI", + "img": "icons/weapons/swords/shortsword-guard-brass.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "VII5oRJrQTsSir0E" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "VS5Gc43b6SmYuaVF", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "VII5oRJrQTsSir0E", + "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": 1753793980974, + "modifiedTime": 1753793980974, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!cjGZpXCoshEqi1FI.VII5oRJrQTsSir0E" + } + ], + "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": 1753741549716, + "modifiedTime": 1753793980983, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..fcadecf6 --- /dev/null +++ b/src/packs/items/weapons/weapon_Siphoning_Gauntlets_1N1jggda5DfdzdMj.json @@ -0,0 +1,146 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Siphoning Gauntlets", + "type": "weapon", + "_id": "1N1jggda5DfdzdMj", + "img": "icons/equipment/hand/glove-spiked-leather-grey.webp", + "system": { + "description": "", + "actions": { + "JdOTTVL4daHd7iGp": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Lifesteal", + "description": "On a successful attack, roll a d6. On a result of 6, clear a Hit Point or clear a Stress.", + "img": "icons/magic/unholy/hand-claw-fire-blue.webp", + "_id": "JdOTTVL4daHd7iGp", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "lifestealing", + "effectIds": [], + "actionIds": [ + "JdOTTVL4daHd7iGp" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753836075703, + "modifiedTime": 1753836131553, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b37a1027 --- /dev/null +++ b/src/packs/items/weapons/weapon_Sledge_Axe_OxsEmffWriiQmqJK.json @@ -0,0 +1,218 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Sledge Axe", + "type": "weapon", + "_id": "OxsEmffWriiQmqJK", + "img": "icons/weapons/axes/axe-battle-heavy-jagged.webp", + "system": { + "description": "", + "actions": { + "0qVTvNMfapVST3sQ": { + "type": "damage", + "actionType": "action", + "chatDisplay": true, + "name": "Destruction", + "description": "DAGGERHEART.CONFIG.WeaponFeature.destructive.actions.attack.descriptive", + "img": "icons/skills/melee/strike-flail-spiked-pink.webp", + "range": "veryClose", + "target": { + "type": "hostile", + "amount": null + }, + "damage": { + "parts": [ + { + "applyTo": "stress", + "value": { + "custom": { + "enabled": true, + "formula": "1" + }, + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null + }, + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false, + "type": [] + } + ], + "includeBase": false + }, + "_id": "0qVTvNMfapVST3sQ", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "destructive", + "effectIds": [ + "dhhIibfRBwCGZ6Ab" + ], + "actionIds": [ + "0qVTvNMfapVST3sQ" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 13, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Destructive", + "description": "DAGGERHEART.CONFIG.WeaponFeature.destructive.effects.agility", + "img": "icons/skills/melee/strike-flail-spiked-pink.webp", + "changes": [ + { + "key": "system.traits.agility.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "dhhIibfRBwCGZ6Ab", + "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": 1753835076783, + "modifiedTime": 1753835076783, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!OxsEmffWriiQmqJK.dhhIibfRBwCGZ6Ab" + } + ], + "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": 1753835064119, + "modifiedTime": 1753835089195, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..4e9613f6 --- /dev/null +++ b/src/packs/items/weapons/weapon_Small_Dagger_wKklDxs5nkzILNp4.json @@ -0,0 +1,163 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Small Dagger", + "type": "weapon", + "_id": "wKklDxs5nkzILNp4", + "img": "icons/weapons/daggers/dagger-straight-cracked.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "paired", + "effectIds": [ + "2OLsxbZJqMgk680J" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "AVjlF2Mv5AMDflgy", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "type": [ + "physical" + ], + "value": { + "multiplier": "prof", + "dice": "d8", + "flatMultiplier": 1, + "bonus": null, + "custom": { + "enabled": false + } + }, + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Paired", + "description": "Add your character's Tier + 1 to primary weapon damage against targets within Melee range", + "img": "icons/skills/melee/weapons-crossed-swords-yellow-teal.webp", + "changes": [ + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "ITEM.@system.tier + 1" + } + ], + "_id": "2OLsxbZJqMgk680J", + "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": 1753794165509, + "modifiedTime": 1753794165509, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!wKklDxs5nkzILNp4.2OLsxbZJqMgk680J" + } + ], + "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": 1753744141625, + "modifiedTime": 1753794165511, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!wKklDxs5nkzILNp4" +} diff --git a/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json new file mode 100644 index 00000000..6aa8fe8c --- /dev/null +++ b/src/packs/items/weapons/weapon_Spear_TF85tKJetUjLwh54.json @@ -0,0 +1,163 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Spear", + "type": "weapon", + "_id": "TF85tKJetUjLwh54", + "img": "icons/weapons/polearms/spear-flared-steel.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "cumbersome", + "effectIds": [ + "Z5MnVI8EOOgzRdXC" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Cumbersome", + "description": "-1 to Finesse", + "img": "icons/commodities/metal/mail-plate-steel.webp", + "changes": [ + { + "key": "system.traits.finesse.value", + "mode": 2, + "value": "-1" + } + ], + "_id": "Z5MnVI8EOOgzRdXC", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "transfer": true, + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753828072355, + "modifiedTime": 1753828072355, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!TF85tKJetUjLwh54.Z5MnVI8EOOgzRdXC" + } + ], + "sort": 0, + "ownership": { + "default": 0, + "FecEtPuoQh6MpjQ0": 3 + }, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753828035153, + "modifiedTime": 1753828072360, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f4f34d63 --- /dev/null +++ b/src/packs/items/weapons/weapon_Spiked_Bow_O1w8KPYH85ZS8X64.json @@ -0,0 +1,188 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Spiked Bow", + "type": "weapon", + "_id": "O1w8KPYH85ZS8X64", + "img": "icons/weapons/bows/bow-recurve-black.webp", + "system": { + "description": "", + "actions": { + "WqhixEUWiKK4gwuG": { + "type": "attack", + "damage": { + "includeBase": false, + "parts": [ + { + "resultBased": false, + "value": { + "custom": { + "enabled": false + }, + "multiplier": "prof", + "dice": "d10", + "bonus": 5, + "flatMultiplier": 1 + }, + "applyTo": "hitPoints", + "type": [], + "base": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + } + } + ] + }, + "range": "melee", + "roll": { + "useDefault": true, + "type": "attack", + "trait": "agility", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + } + }, + "_id": "WqhixEUWiKK4gwuG", + "systemPath": "actions", + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": "", + "recovery": null + }, + "target": { + "type": "any", + "amount": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + }, + "name": "Versatile Attack", + "img": "icons/weapons/bows/bow-recurve-black.webp" + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "veryFar", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "agility", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832511150, + "modifiedTime": 1753832558389, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..8a40a800 --- /dev/null +++ b/src/packs/items/weapons/weapon_Spiked_Shield_vzyzFwLUniWZV1rt.json @@ -0,0 +1,168 @@ +{ + "folder": "iSQtZICf7fVFJ7IS", + "name": "Spiked Shield", + "type": "weapon", + "_id": "vzyzFwLUniWZV1rt", + "img": "icons/equipment/shield/targe-wooden-boss-steel-brown.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "doubleDuty", + "effectIds": [ + "qo4VPSV0VZha1ya2" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "qY9ylkwxFwRlPy6a", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 2, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Double Duty", + "description": "+1 to Armor Score; +1 to primary weapon damage within Melee range", + "img": "icons/skills/melee/sword-shield-stylized-white.webp", + "changes": [ + { + "key": "system.armorScore", + "mode": 2, + "value": "1" + }, + { + "key": "system.bonuses.damage.primaryWeapon.bonus", + "mode": 2, + "value": "1" + } + ], + "_id": "qo4VPSV0VZha1ya2", + "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": 1753794551639, + "modifiedTime": 1753794551639, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!vzyzFwLUniWZV1rt.qo4VPSV0VZha1ya2" + } + ], + "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": 1753794535926, + "modifiedTime": 1753794665373, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..a7d7cd60 --- /dev/null +++ b/src/packs/items/weapons/weapon_Steelforged_Halberd_6bkbw4Ap644KZGvJ.json @@ -0,0 +1,146 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Steelforged Halberd", + "type": "weapon", + "_id": "6bkbw4Ap644KZGvJ", + "img": "icons/weapons/polearms/halberd-crescent-wood.webp", + "system": { + "description": "", + "actions": { + "XJS4UHwz3j41g9Fc": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Scare", + "description": "On a successful attack, the target must mark a Stress.", + "img": "icons/magic/death/skull-energy-light-purple.webp", + "_id": "XJS4UHwz3j41g9Fc", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "scary", + "effectIds": [], + "actionIds": [ + "XJS4UHwz3j41g9Fc" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829710295, + "modifiedTime": 1753829730643, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..58d4a7c7 --- /dev/null +++ b/src/packs/items/weapons/weapon_Swinging_Ropeblade_1jOJHHKdtk3s2jaY.json @@ -0,0 +1,154 @@ +{ + "folder": "cvhQpWXCo3YJhtwx", + "name": "Swinging Ropeblade", + "type": "weapon", + "_id": "1jOJHHKdtk3s2jaY", + "img": "icons/weapons/swords/sword-hooked-worn.webp", + "system": { + "description": "", + "actions": { + "VDbthRuLKgowyruc": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Grapple", + "description": "On a successful attack, you can spend a Hope to Restrain the target or pull them into Melee range with you.", + "img": "icons/magic/control/debuff-chains-ropes-net-white.webp", + "cost": [ + { + "key": "hope", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "VDbthRuLKgowyruc", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "grappling", + "effectIds": [], + "actionIds": [ + "VDbthRuLKgowyruc" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "31XEMDUyjpqFA7H9", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 9, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753835178086, + "modifiedTime": 1753835227169, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..7985574e --- /dev/null +++ b/src/packs/items/weapons/weapon_Sword_of_Light___Flame_TVPCWnSELOVBv6G1.json @@ -0,0 +1,146 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Sword of Light & Flame", + "type": "weapon", + "_id": "TVPCWnSELOVBv6G1", + "img": "icons/skills/melee/strike-blade-hooked-orange-blue.webp", + "system": { + "description": "", + "actions": { + "KRjyYdwb8WgPhDVt": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Hot", + "description": "This weapon cuts through solid material.", + "img": "icons/magic/fire/dagger-rune-enchant-flame-red.webp", + "_id": "KRjyYdwb8WgPhDVt", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "hot", + "effectIds": [], + "actionIds": [ + "KRjyYdwb8WgPhDVt" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 11, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753836015665, + "modifiedTime": 1753836060729, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..fb6c6f98 --- /dev/null +++ b/src/packs/items/weapons/weapon_Talon_Blades_jlLtgK468rO5IssR.json @@ -0,0 +1,146 @@ +{ + "folder": "OKJC8cHvPuseBHWq", + "name": "Talon Blades", + "type": "weapon", + "_id": "jlLtgK468rO5IssR", + "img": "icons/weapons/swords/sword-guard-flanged.webp", + "system": { + "description": "", + "actions": { + "G7pAyfTwQ8uteLsP": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.name", + "description": "DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.description", + "img": "icons/skills/melee/strike-dagger-blood-red.webp", + "_id": "G7pAyfTwQ8uteLsP", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "brutal", + "effectIds": [], + "actionIds": [ + "G7pAyfTwQ8uteLsP" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "tSwiEa50USNh6uEJ", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 7, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753832378140, + "modifiedTime": 1753832420169, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!jlLtgK468rO5IssR" +} diff --git a/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json b/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json new file mode 100644 index 00000000..ca641ad2 --- /dev/null +++ b/src/packs/items/weapons/weapon_Thistlebow_I1nDGpulg29GpWOW.json @@ -0,0 +1,163 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Thistlebow", + "type": "weapon", + "_id": "I1nDGpulg29GpWOW", + "img": "icons/weapons/bows/longbow-gold-pink.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "YA5tbB6XBISWsf0p" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 13, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "YA5tbB6XBISWsf0p", + "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": 1753836322206, + "modifiedTime": 1753836322206, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!I1nDGpulg29GpWOW.YA5tbB6XBISWsf0p" + } + ], + "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": 1753836302436, + "modifiedTime": 1753836334493, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..874dfc5f --- /dev/null +++ b/src/packs/items/weapons/weapon_Tower_Shield_C9aWpK1shVMWP4m5.json @@ -0,0 +1,168 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Tower Shield", + "type": "weapon", + "_id": "C9aWpK1shVMWP4m5", + "img": "icons/equipment/shield/oval-wooden-boss-bronze.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "barrier", + "effectIds": [ + "8r0TcKWXboFV0eqS" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "h3g8PT67I6xr3xsW", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Barrier", + "description": "Gain Weapon Tier + 1 to Armor Score; -1 to Evasion", + "img": "icons/skills/melee/shield-block-bash-blue.webp", + "changes": [ + { + "key": "system.armorScore", + "mode": 2, + "value": "ITEM.@system.tier + 1" + }, + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "8r0TcKWXboFV0eqS", + "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": 1753742958195, + "modifiedTime": 1753742958195, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!C9aWpK1shVMWP4m5.8r0TcKWXboFV0eqS" + } + ], + "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": 1753742294258, + "modifiedTime": 1753742986604, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..b1fad87b --- /dev/null +++ b/src/packs/items/weapons/weapon_Urok_Broadsword_zGm6Wa1fGF6cECY5.json @@ -0,0 +1,146 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "Urok Broadsword", + "type": "weapon", + "_id": "zGm6Wa1fGF6cECY5", + "img": "icons/weapons/swords/greatsword-flamberge.webp", + "system": { + "description": "", + "actions": { + "mig52M2Mp3JDmH2p": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Deadly", + "description": "When you deal Severe damage, the target must mark an additional HP.", + "img": "icons/skills/melee/strike-sword-dagger-runes-red.webp", + "_id": "mig52M2Mp3JDmH2p", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "deadly", + "effectIds": [], + "actionIds": [ + "mig52M2Mp3JDmH2p" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753829648524, + "modifiedTime": 1753829674190, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!zGm6Wa1fGF6cECY5" +} diff --git a/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json b/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json new file mode 100644 index 00000000..d990e614 --- /dev/null +++ b/src/packs/items/weapons/weapon_Wand_ItWisJFNGMNWeaCV.json @@ -0,0 +1,116 @@ +{ + "folder": "cnmKLegyDD1xkSuI", + "name": "Wand", + "type": "weapon", + "_id": "ItWisJFNGMNWeaCV", + "img": "icons/weapons/wands/wand-gem-violet.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 1, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753828516647, + "modifiedTime": 1753828537368, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..46471b7f --- /dev/null +++ b/src/packs/items/weapons/weapon_Wand_of_Enthrallment_tP6vmnrmTq2h5sj7.json @@ -0,0 +1,200 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Wand of Enthrallment", + "type": "weapon", + "_id": "tP6vmnrmTq2h5sj7", + "img": "icons/weapons/wands/wand-skull-feathers.webp", + "system": { + "description": "", + "actions": { + "vqTZBX2RHTG1h6hz": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Persuade", + "description": "Before you make a Presence Roll, you can mark a Stress to gain a +2 bonus to the result.", + "img": "icons/magic/control/hypnosis-mesmerism-eye.webp", + "target": { + "type": "self", + "amount": null + }, + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "effects": [ + { + "_id": "hrJJzzepVs2BPYf5", + "onSave": false + } + ], + "_id": "vqTZBX2RHTG1h6hz", + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "persuasive", + "effectIds": [ + "hrJJzzepVs2BPYf5" + ], + "actionIds": [ + "vqTZBX2RHTG1h6hz" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Persuasive", + "description": "Gain a +2 bonus to the Presence roll", + "img": "icons/magic/control/hypnosis-mesmerism-eye.webp", + "changes": [ + { + "key": "system.traits.presence.value", + "mode": 2, + "value": "2" + } + ], + "transfer": false, + "_id": "hrJJzzepVs2BPYf5", + "type": "base", + "system": {}, + "disabled": false, + "duration": { + "startTime": null, + "combat": null + }, + "origin": null, + "tint": "#ffffff", + "statuses": [], + "sort": 0, + "flags": {}, + "_stats": { + "compendiumSource": null, + "duplicateSource": null, + "exportSource": null, + "coreVersion": "13.346", + "systemId": "daggerheart", + "systemVersion": "0.0.1", + "createdTime": 1753831397899, + "modifiedTime": 1753831397899, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!tP6vmnrmTq2h5sj7.hrJJzzepVs2BPYf5" + } + ], + "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": 1753831377291, + "modifiedTime": 1753831408550, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..96f3e22e --- /dev/null +++ b/src/packs/items/weapons/weapon_Wand_of_Essek_ZrRGNjGCgZTTfgDG.json @@ -0,0 +1,146 @@ +{ + "folder": "UNDVQEo6UtTuueNQ", + "name": "Wand of Essek", + "type": "weapon", + "_id": "ZrRGNjGCgZTTfgDG", + "img": "icons/weapons/wands/wand-gem-pink.webp", + "system": { + "description": "", + "actions": { + "TzNsQcYm4OVNFQyD": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Bend Time", + "description": "DAGGERHEART.CONFIG.WeaponFeature.actions.bendTime.description", + "img": "icons/magic/time/clock-spinning-gold-pink.webp", + "_id": "TzNsQcYm4OVNFQyD", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 4, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "timebending", + "effectIds": [], + "actionIds": [ + "TzNsQcYm4OVNFQyD" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "B2LewQYZb9Jhl4A6", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 13, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753836344144, + "modifiedTime": 1753836369996, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..458d8136 --- /dev/null +++ b/src/packs/items/weapons/weapon_War_Scythe_z6yEdFYQJ5IzgTX3.json @@ -0,0 +1,163 @@ +{ + "folder": "guNyg9qBShhQOIWT", + "name": "War Scythe", + "type": "weapon", + "_id": "z6yEdFYQJ5IzgTX3", + "img": "icons/weapons/sickles/scythe-wrapped-red.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "reliable", + "effectIds": [ + "Gt0tHtJDQwdSActw" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "6lmY7PMkxI3kmkpb", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d8", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Reliable", + "description": "+1 to attack rolls", + "img": "icons/skills/melee/strike-sword-slashing-red.webp", + "changes": [ + { + "key": "system.bonuses.roll.primaryWeapon.attack", + "mode": 2, + "value": "1" + } + ], + "_id": "Gt0tHtJDQwdSActw", + "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": 1753829771677, + "modifiedTime": 1753829771677, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!z6yEdFYQJ5IzgTX3.Gt0tHtJDQwdSActw" + } + ], + "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": 1753829740082, + "modifiedTime": 1753829771680, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!z6yEdFYQJ5IzgTX3" +} diff --git a/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json b/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json new file mode 100644 index 00000000..0804236c --- /dev/null +++ b/src/packs/items/weapons/weapon_Warhammer_ZXh1GQahBiODfSTC.json @@ -0,0 +1,163 @@ +{ + "folder": "d7tdCsIUd94XuTtq", + "name": "Warhammer", + "type": "weapon", + "_id": "ZXh1GQahBiODfSTC", + "img": "icons/weapons/hammers/hammer-double-engraved.webp", + "system": { + "description": "", + "actions": {}, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "heavy", + "effectIds": [ + "HT0SAlTBGKwolAOp" + ], + "actionIds": [] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "ZSdAawliPNsoA7nP", + "systemPath": "attack", + "type": "attack", + "range": "melee", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "strength", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d12", + "bonus": 3, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "effects": [ + { + "name": "Heavy", + "description": "-1 to Evasion", + "img": "icons/commodities/metal/ingot-worn-iron.webp", + "changes": [ + { + "key": "system.evasion", + "mode": 2, + "value": "-1" + } + ], + "_id": "HT0SAlTBGKwolAOp", + "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": 1753827888899, + "modifiedTime": 1753827888899, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items.effects!ZXh1GQahBiODfSTC.HT0SAlTBGKwolAOp" + } + ], + "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": 1753827866228, + "modifiedTime": 1753827888903, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!ZXh1GQahBiODfSTC" +} diff --git a/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json new file mode 100644 index 00000000..b354f5f4 --- /dev/null +++ b/src/packs/items/weapons/weapon_Whip_CmtWqw6DwoePnX7W.json @@ -0,0 +1,154 @@ +{ + "folder": "mV306wqqkeIDd9EE", + "name": "Whip", + "type": "weapon", + "_id": "CmtWqw6DwoePnX7W", + "img": "icons/weapons/misc/whip-red-yellow.webp", + "system": { + "description": "", + "actions": { + "N0CCc4o6N1HseQTn": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Startle", + "description": "Mark a Stress to crack the whip and force all adversaries within Melee range back to Close range.", + "img": "icons/magic/control/fear-fright-mask-orange.webp", + "cost": [ + { + "key": "stress", + "value": 1, + "keyIsID": false, + "scalable": false, + "step": null + } + ], + "_id": "N0CCc4o6N1HseQTn", + "effects": [], + "systemPath": "actions", + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 1, + "equipped": false, + "secondary": true, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "startling", + "effectIds": [], + "actionIds": [ + "N0CCc4o6N1HseQTn" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "AVjlF2Mv5AMDflgy", + "systemPath": "attack", + "type": "attack", + "range": "veryClose", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "presence", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": null, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "physical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753744226240, + "modifiedTime": 1753808365384, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..6b10b403 --- /dev/null +++ b/src/packs/items/weapons/weapon_Widogast_Pendant_8Z5QrThfwkYPXNco.json @@ -0,0 +1,146 @@ +{ + "folder": "oreMpiiytMRaR9sy", + "name": "Widogast Pendant", + "type": "weapon", + "_id": "8Z5QrThfwkYPXNco", + "img": "icons/equipment/neck/amulet-geometric-blue-yellow.webp", + "system": { + "description": "", + "actions": { + "gQFuVhPeKzNj93p6": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "Bend Time", + "description": "DAGGERHEART.CONFIG.WeaponFeature.actions.bendTime.description", + "img": "icons/magic/time/clock-spinning-gold-pink.webp", + "_id": "gQFuVhPeKzNj93p6", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 3, + "equipped": false, + "secondary": false, + "burden": "oneHanded", + "weaponFeatures": [ + { + "value": "timebending", + "effectIds": [], + "actionIds": [ + "gQFuVhPeKzNj93p6" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "8j3yjH0TiwwZsaBW", + "systemPath": "attack", + "type": "attack", + "range": "close", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "knowledge", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d10", + "bonus": 5, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753833840059, + "modifiedTime": 1753833870464, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_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 new file mode 100644 index 00000000..f096cbc4 --- /dev/null +++ b/src/packs/items/weapons/weapon_Yutari_Bloodbow_0XpSBYXxtywvBFQi.json @@ -0,0 +1,146 @@ +{ + "folder": "ereMKW01MCYg0qUY", + "name": "Yutari Bloodbow", + "type": "weapon", + "_id": "0XpSBYXxtywvBFQi", + "img": "icons/weapons/bows/longbow-recurve-leather-red.webp", + "system": { + "description": "", + "actions": { + "cLBfHGpuGzOatf5i": { + "type": "effect", + "actionType": "action", + "chatDisplay": true, + "name": "DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.name", + "description": "DAGGERHEART.CONFIG.WeaponFeature.brutal.actions.addDamage.description", + "img": "icons/skills/melee/strike-dagger-blood-red.webp", + "_id": "cLBfHGpuGzOatf5i", + "effects": [], + "systemPath": "actions", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "target": { + "type": "any", + "amount": null + } + } + }, + "attached": [], + "tier": 2, + "equipped": false, + "secondary": false, + "burden": "twoHanded", + "weaponFeatures": [ + { + "value": "brutal", + "effectIds": [], + "actionIds": [ + "cLBfHGpuGzOatf5i" + ] + } + ], + "attack": { + "name": "Attack", + "img": "icons/skills/melee/blood-slash-foam-red.webp", + "_id": "YHE291ruSIJAh44F", + "systemPath": "attack", + "type": "attack", + "range": "far", + "target": { + "type": "any", + "amount": 1 + }, + "roll": { + "trait": "finesse", + "type": "attack", + "difficulty": null, + "bonus": null, + "advState": "neutral", + "diceRolling": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "compare": null, + "treshold": null + }, + "useDefault": false + }, + "damage": { + "parts": [ + { + "value": { + "dice": "d6", + "bonus": 4, + "multiplier": "prof", + "flatMultiplier": 1, + "custom": { + "enabled": false + } + }, + "type": [ + "magical" + ], + "applyTo": "hitPoints", + "resultBased": false, + "valueAlt": { + "multiplier": "prof", + "flatMultiplier": 1, + "dice": "d6", + "bonus": null, + "custom": { + "enabled": false + } + }, + "base": false + } + ], + "includeBase": false + }, + "description": "", + "chatDisplay": true, + "actionType": "action", + "cost": [], + "uses": { + "value": null, + "max": null, + "recovery": null + }, + "effects": [], + "save": { + "trait": null, + "difficulty": null, + "damageMod": "none" + } + }, + "rules": { + "attack": { + "roll": { + "trait": null + } + } + } + }, + "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": 1753831267751, + "modifiedTime": 1753831296579, + "lastModifiedBy": "FecEtPuoQh6MpjQ0" + }, + "_key": "!items!0XpSBYXxtywvBFQi" +} diff --git a/styles/less/dialog/dice-roll/roll-selection.less b/styles/less/dialog/dice-roll/roll-selection.less index 4ee2ee1f..d536ee04 100644 --- a/styles/less/dialog/dice-roll/roll-selection.less +++ b/styles/less/dialog/dice-roll/roll-selection.less @@ -9,6 +9,36 @@ } .application.daggerheart.dialog.dh-style.views.roll-selection { + .dialog-header { + display: flex; + justify-content: center; + + h1 { + width: auto; + display: flex; + align-items: center; + gap: 8px; + + .reaction-roll-controller { + width: auto; + opacity: 0.3; + border-radius: 50%; + font-size: 18px; + font-weight: bold; + + &:hover { + opacity: 0.5; + background: light-dark(transparent, @golden); + color: light-dark(@dark-blue, @dark-blue); + } + + &.active { + opacity: 1; + } + } + } + } + .roll-dialog-container { display: flex; flex-direction: column; @@ -16,6 +46,7 @@ max-width: 550px; .dices-section { + position: relative; display: flex; gap: 60px; justify-content: center; diff --git a/styles/less/global/index.less b/styles/less/global/index.less index c37de0c7..031a9cfc 100644 --- a/styles/less/global/index.less +++ b/styles/less/global/index.less @@ -4,6 +4,7 @@ @import './tab-navigation.less'; @import './tab-form-footer.less'; @import './tab-actions.less'; +@import './tab-description.less'; @import './tab-features.less'; @import './tab-effects.less'; @import './tab-settings.less'; diff --git a/styles/less/global/item-header.less b/styles/less/global/item-header.less index 3b3e7ee9..1fb27325 100755 --- a/styles/less/global/item-header.less +++ b/styles/less/global/item-header.less @@ -1,4 +1,15 @@ @import '../utils/colors.less'; +@import '../utils/mixin.less'; + +.appTheme({ + .item-card-header .item-icons-list .item-icon img { + filter: invert(88%) sepia(98%) saturate(1784%) hue-rotate(311deg) brightness(104%) contrast(91%); + } +}, { + .item-card-header .item-icons-list .item-icon img { + filter: invert(87%) sepia(15%) saturate(343%) hue-rotate(333deg) brightness(110%) contrast(87%); + } +}); .application.sheet.daggerheart.dh-style { .item-sheet-header { @@ -68,7 +79,9 @@ .item-icons-list { position: absolute; display: flex; - align-items: center; + flex-direction: column; + gap: 5px; + align-items: end; justify-content: center; top: 50px; right: 10px; @@ -82,7 +95,8 @@ max-width: 50px; height: 50px; font-size: 1.2rem; - background: light-dark(@light-black, @semi-transparent-dark-blue); + background: light-dark(@dark-blue-60, @dark-golden-80); + backdrop-filter: blur(8px); border: 4px double light-dark(@beige, @golden); color: light-dark(@beige, @golden); border-radius: 999px; @@ -99,6 +113,11 @@ font-size: 0.8rem; } + img { + height: 24px; + width: 24px; + } + &:hover { max-width: 300px; padding: 0 10px; diff --git a/styles/less/global/prose-mirror.less b/styles/less/global/prose-mirror.less index 33e942e8..f7b78af3 100644 --- a/styles/less/global/prose-mirror.less +++ b/styles/less/global/prose-mirror.less @@ -1,6 +1,7 @@ @import '../utils/colors.less'; +@import '../utils/fonts.less'; -.application { +.application.daggerheart { prose-mirror { height: 100% !important; @@ -11,14 +12,70 @@ scrollbar-width: thin; scrollbar-color: light-dark(@dark-blue, @golden) transparent; h1 { - font-size: 36px; - } - h2 { font-size: 32px; } + h2 { + font-size: 28px; + font-weight: 600; + } h3 { - font-size: 24px; + font-size: 20px; + font-weight: 600; + } + h4 { + font-size: 16px; + color: @beige; + font-weight: 600; + } + + table { + font-family: @font-body; + border-radius: 3px; + + thead { + background-color: light-dark(@dark-blue, @golden); + color: light-dark(@beige, @dark-blue); + } + + tr:nth-child(odd) { + background-color: light-dark(@dark-blue-40, @golden-40); + border-color: light-dark(@golden, @dark-blue); + } + tr:nth-child(even) { + background-color: light-dark(@dark-blue-10, @golden-10); + border-color: light-dark(@golden, @dark-blue); + } + } + + ul, + ol { + margin: 1rem 0; + padding: 0 0 0 1.25rem; + + li { + font-family: @font-body; + margin-bottom: 0.25rem; + } + } + + ul { + list-style: disc; + } + + pre { + code { + border-radius: 6px; + background-color: @dark; + color: @beige; + border-color: @dark-blue; + } + } + + blockquote { + border-radius: 3px; + border-left: 3px solid light-dark(@dark-blue-40, @golden-40); + background-color: light-dark(@dark-blue-10, @golden-10); } } } -} \ No newline at end of file +} diff --git a/styles/less/global/tab-description.less b/styles/less/global/tab-description.less new file mode 100644 index 00000000..4d81f2f2 --- /dev/null +++ b/styles/less/global/tab-description.less @@ -0,0 +1,13 @@ +@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; + } + } +} diff --git a/styles/less/utils/colors.less b/styles/less/utils/colors.less index 033a42cb..ea4cdcb7 100755 --- a/styles/less/utils/colors.less +++ b/styles/less/utils/colors.less @@ -5,6 +5,9 @@ @golden-10: #f3c26710; @golden-40: #f3c26740; +@dark-golden: #2b1d03; +@dark-golden-80: #2b1d0380; + @red: #e54e4e; @red-10: #e54e4e10; @red-40: #e54e4e40; diff --git a/templates/actionTypes/cost.hbs b/templates/actionTypes/cost.hbs index 116fc631..e956b284 100644 --- a/templates/actionTypes/cost.hbs +++ b/templates/actionTypes/cost.hbs @@ -6,7 +6,7 @@ {{#each source as |cost index|}}