mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* FEAT: add baseDataModel logic * FEAT: new PseudoDocumentsField FIX: BasePseudoDocument 's getEmbeddedDocument * FEAT: PseudoDocument class * FEAT: add TypedPseudoDocument REFACTOR: PreudoDocument FIX: Typos Bug * FIX: CONFIG types * FEAT: basic PseudoDocumentSheet * FIX: remove schema ADD: input of example --------- Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com> Co-authored-by: WBHarry <williambjrklund@gmail.com>
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
export const actionTypes = {
|
|
attack: {
|
|
id: 'attack',
|
|
name: 'DAGGERHEART.Actions.Types.Attack.Name',
|
|
icon: 'fa-swords'
|
|
},
|
|
spellcast: {
|
|
id: 'spellcast',
|
|
name: 'DAGGERHEART.Actions.Types.Spellcast.Name',
|
|
icon: 'fa-book-sparkles'
|
|
},
|
|
healing: {
|
|
id: 'healing',
|
|
name: 'DAGGERHEART.Actions.Types.Healing.Name',
|
|
icon: 'fa-kit-medical'
|
|
},
|
|
resource: {
|
|
id: 'resource',
|
|
name: 'DAGGERHEART.Actions.Types.Resource.Name',
|
|
icon: 'fa-honey-pot'
|
|
},
|
|
damage: {
|
|
id: 'damage',
|
|
name: 'DAGGERHEART.Actions.Types.Damage.Name',
|
|
icon: 'fa-bone-break'
|
|
},
|
|
summon: {
|
|
id: 'summon',
|
|
name: 'DAGGERHEART.Actions.Types.Summon.Name',
|
|
icon: 'fa-ghost'
|
|
},
|
|
effect: {
|
|
id: 'effect',
|
|
name: 'DAGGERHEART.Actions.Types.Effect.Name',
|
|
icon: 'fa-person-rays'
|
|
},
|
|
macro: {
|
|
id: 'macro',
|
|
name: 'DAGGERHEART.Actions.Types.Macro.Name',
|
|
icon: 'fa-scroll'
|
|
}
|
|
};
|
|
|
|
export const targetTypes = {
|
|
self: {
|
|
id: 'self',
|
|
label: 'Self'
|
|
},
|
|
other: {
|
|
id: 'other',
|
|
label: 'Other'
|
|
}
|
|
};
|