mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 15:03:37 +02:00
61 lines
1.5 KiB
JavaScript
61 lines
1.5 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'
|
|
}
|
|
};
|