mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
fix: adds actions to prepare downtime actions
This commit is contained in:
parent
cad3f533ad
commit
93b30d445e
2 changed files with 108 additions and 2 deletions
|
|
@ -446,6 +446,10 @@
|
||||||
"description": "Describe how you are preparing for the next day's adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you may each take two Hope.",
|
"description": "Describe how you are preparing for the next day's adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you may each take two Hope.",
|
||||||
"name": "Prepare"
|
"name": "Prepare"
|
||||||
},
|
},
|
||||||
|
"prepareWithFriends": {
|
||||||
|
"description": "Describe how you are preparing for the next day's adventure, then gain a Hope. If you choose to Prepare with one or more members of your party, you may each take two Hope.",
|
||||||
|
"name": "Prepare (with Friends)"
|
||||||
|
},
|
||||||
"repairArmor": {
|
"repairArmor": {
|
||||||
"description": "Describe how you spend time repairing your armor and clear all of its Armor Slots. You may also do this to an ally's armor instead.",
|
"description": "Describe how you spend time repairing your armor and clear all of its Armor Slots. You may also do this to an ally's armor instead.",
|
||||||
"name": "Repair Armor"
|
"name": "Repair Armor"
|
||||||
|
|
@ -477,6 +481,10 @@
|
||||||
"prepare": {
|
"prepare": {
|
||||||
"name": "Prepare",
|
"name": "Prepare",
|
||||||
"description": "Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope."
|
"description": "Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope."
|
||||||
|
},
|
||||||
|
"prepareWithFriends": {
|
||||||
|
"name": "Prepare (with Friends)",
|
||||||
|
"description": "Describe how you prepare yourself for the path ahead, then gain a Hope. If you choose to Prepare with one or more members of your party, you each gain 2 Hope."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"refreshable": {
|
"refreshable": {
|
||||||
|
|
|
||||||
|
|
@ -331,7 +331,56 @@ export const defaultRestOptions = {
|
||||||
icon: 'fa-solid fa-dumbbell',
|
icon: 'fa-solid fa-dumbbell',
|
||||||
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
||||||
description: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.shortRest.prepare.description'),
|
description: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.shortRest.prepare.description'),
|
||||||
actions: {},
|
actions: {
|
||||||
|
prepare: {
|
||||||
|
type: 'healing',
|
||||||
|
systemPath: 'restMoves.shortRest.moves.prepare.actions',
|
||||||
|
name: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.shortRest.prepare.name'),
|
||||||
|
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
||||||
|
actionType: 'action',
|
||||||
|
chatDisplay: false,
|
||||||
|
target: {
|
||||||
|
type: 'self'
|
||||||
|
},
|
||||||
|
damage: {
|
||||||
|
parts: [
|
||||||
|
{
|
||||||
|
applyTo: healingTypes.hope.id,
|
||||||
|
value: {
|
||||||
|
custom: {
|
||||||
|
enabled: true,
|
||||||
|
formula: '1'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
prepareWithFriends: {
|
||||||
|
type: 'healing',
|
||||||
|
systemPath: 'restMoves.shortRest.moves.prepare.actions',
|
||||||
|
name: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.shortRest.prepareWithFriends.name'),
|
||||||
|
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
||||||
|
actionType: 'action',
|
||||||
|
chatDisplay: false,
|
||||||
|
target: {
|
||||||
|
type: 'self'
|
||||||
|
},
|
||||||
|
damage: {
|
||||||
|
parts: [
|
||||||
|
{
|
||||||
|
applyTo: healingTypes.hope.id,
|
||||||
|
value: {
|
||||||
|
custom: {
|
||||||
|
enabled: true,
|
||||||
|
formula: '2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
effects: []
|
effects: []
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
@ -446,7 +495,56 @@ export const defaultRestOptions = {
|
||||||
icon: 'fa-solid fa-dumbbell',
|
icon: 'fa-solid fa-dumbbell',
|
||||||
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
||||||
description: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.longRest.prepare.description'),
|
description: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.longRest.prepare.description'),
|
||||||
actions: {},
|
actions: {
|
||||||
|
prepare: {
|
||||||
|
type: 'healing',
|
||||||
|
systemPath: 'restMoves.longRest.moves.prepare.actions',
|
||||||
|
name: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.longRest.prepare.name'),
|
||||||
|
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
||||||
|
actionType: 'action',
|
||||||
|
chatDisplay: false,
|
||||||
|
target: {
|
||||||
|
type: 'self'
|
||||||
|
},
|
||||||
|
damage: {
|
||||||
|
parts: [
|
||||||
|
{
|
||||||
|
applyTo: healingTypes.hope.id,
|
||||||
|
value: {
|
||||||
|
custom: {
|
||||||
|
enabled: true,
|
||||||
|
formula: '1'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
prepareWithFriends: {
|
||||||
|
type: 'healing',
|
||||||
|
systemPath: 'restMoves.longRest.moves.prepare.actions',
|
||||||
|
name: game.i18n.localize('DAGGERHEART.APPLICATIONS.Downtime.longRest.prepareWithFriends.name'),
|
||||||
|
img: 'icons/skills/trades/academics-merchant-scribe.webp',
|
||||||
|
actionType: 'action',
|
||||||
|
chatDisplay: false,
|
||||||
|
target: {
|
||||||
|
type: 'self'
|
||||||
|
},
|
||||||
|
damage: {
|
||||||
|
parts: [
|
||||||
|
{
|
||||||
|
applyTo: healingTypes.hope.id,
|
||||||
|
value: {
|
||||||
|
custom: {
|
||||||
|
enabled: true,
|
||||||
|
formula: '2'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
effects: []
|
effects: []
|
||||||
},
|
},
|
||||||
workOnAProject: {
|
workOnAProject: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue