mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Added prettier with automatic useage on pre-commit to avoid style breakage * Ran Prettier on the project
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
export const actionTypes = {
|
|
damage: {
|
|
id: 'damage',
|
|
name: 'DAGGERHEART.Effects.Types.Health.Name'
|
|
}
|
|
};
|
|
|
|
export const targetTypes = {
|
|
self: {
|
|
id: 'self',
|
|
label: 'Self'
|
|
},
|
|
other: {
|
|
id: 'other',
|
|
label: 'Other'
|
|
}
|
|
};
|