mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-21 18:09:54 +02:00
76 lines
No EOL
1.9 KiB
JavaScript
76 lines
No EOL
1.9 KiB
JavaScript
export const keybindings = {
|
|
spotlight: 'DHSpotlight',
|
|
partySheet: 'DHPartySheet'
|
|
};
|
|
|
|
export const menu = {
|
|
Automation: {
|
|
Name: 'GameSettingsAutomation',
|
|
Icon: 'fa-solid fa-robot'
|
|
},
|
|
Metagaming: {
|
|
Name: 'GameSettingsMetagaming',
|
|
Icon: 'fa-solid fa-eye-low-vision'
|
|
},
|
|
Homebrew: {
|
|
Name: 'GameSettingsHomebrew',
|
|
Icon: 'fa-solid fa-flask-vial'
|
|
},
|
|
Range: {
|
|
Name: 'GameSettingsRange',
|
|
Icon: 'fa-solid fa-ruler'
|
|
},
|
|
VariantRules: {
|
|
Name: 'GameSettingsVariantrules',
|
|
Icon: 'fa-solid fa-scale-balanced'
|
|
}
|
|
};
|
|
|
|
export const gameSettings = {
|
|
Automation: 'Automation',
|
|
Metagaming: 'Metagaming',
|
|
Homebrew: 'Homebrew',
|
|
appearance: 'Appearance',
|
|
GlobalOverrides: 'GlobalOverrides',
|
|
variantRules: 'VariantRules',
|
|
Resources: {
|
|
Fear: 'ResourcesFear'
|
|
},
|
|
LevelTiers: 'LevelTiers',
|
|
Countdowns: 'Countdowns',
|
|
LastMigrationVersion: 'LastMigrationVersion',
|
|
SpotlightRequestQueue: 'SpotlightRequestQueue',
|
|
CompendiumBrowserSettings: 'CompendiumBrowserSettings',
|
|
SpotlightTracker: 'SpotlightTracker',
|
|
ActiveParty: 'ActiveParty'
|
|
};
|
|
|
|
export const actionAutomationChoices = {
|
|
never: {
|
|
id: 'never',
|
|
label: 'DAGGERHEART.CONFIG.ActionAutomationChoices.never'
|
|
},
|
|
showDialog: {
|
|
id: 'showDialog',
|
|
label: 'DAGGERHEART.CONFIG.ActionAutomationChoices.showDialog'
|
|
},
|
|
always: {
|
|
id: 'always',
|
|
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'
|
|
}
|
|
}; |