mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 18:39:55 +02:00
Merge branch 'main' into feature/enhance-fear-tracker
This commit is contained in:
commit
5e28d34729
76 changed files with 1641 additions and 1058 deletions
|
|
@ -825,7 +825,7 @@ export const refreshTypes = {
|
|||
export const itemAbilityCosts = {
|
||||
resource: {
|
||||
id: 'resource',
|
||||
label: 'DAGGERHEART.GENERAL.resource',
|
||||
label: 'DAGGERHEART.GENERAL.Resource.single',
|
||||
group: 'Global'
|
||||
},
|
||||
quantity: {
|
||||
|
|
|
|||
|
|
@ -27,8 +27,10 @@ export const menu = {
|
|||
};
|
||||
|
||||
export const gameSettings = {
|
||||
/** @type {'Automation'} */
|
||||
Automation: 'Automation',
|
||||
Metagaming: 'Metagaming',
|
||||
/** @type {'Homebrew'} */
|
||||
Homebrew: 'Homebrew',
|
||||
appearance: 'Appearance',
|
||||
GlobalOverrides: 'GlobalOverrides',
|
||||
|
|
@ -37,6 +39,7 @@ export const gameSettings = {
|
|||
Fear: 'ResourcesFear'
|
||||
},
|
||||
LevelTiers: 'LevelTiers',
|
||||
/** @type {'Countdowns'} */
|
||||
Countdowns: 'Countdowns',
|
||||
LastMigrationVersion: 'LastMigrationVersion',
|
||||
SpotlightRequestQueue: 'SpotlightRequestQueue',
|
||||
|
|
@ -59,3 +62,18 @@ export const actionAutomationChoices = {
|
|||
label: 'DAGGERHEART.CONFIG.ActionAutomationChoices.always'
|
||||
}
|
||||
};
|
||||
|
||||
export const reloadChoices = {
|
||||
off: {
|
||||
id: 'off',
|
||||
label: 'DAGGERHEART.CONFIG.ReloadChoices.off.label'
|
||||
},
|
||||
button: {
|
||||
id: 'button',
|
||||
label: 'DAGGERHEART.CONFIG.ReloadChoices.button.label'
|
||||
},
|
||||
auto: {
|
||||
id: 'auto',
|
||||
label: 'DAGGERHEART.CONFIG.ReloadChoices.auto.label'
|
||||
}
|
||||
};
|
||||
|
|
@ -12,6 +12,7 @@ import * as HOOKS from './hooksConfig.mjs';
|
|||
import * as TRIGGER from './triggerConfig.mjs';
|
||||
import * as ITEMBROWSER from './itemBrowserConfig.mjs';
|
||||
|
||||
/** @type {"daggerheart"} */
|
||||
export const SYSTEM_ID = 'daggerheart';
|
||||
|
||||
export const SYSTEM = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue