mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
44 lines
1 KiB
JavaScript
44 lines
1 KiB
JavaScript
export const menu = {
|
|
Automation: {
|
|
Name: 'GameSettingsAutomation',
|
|
Icon: 'fa-solid fa-robot'
|
|
},
|
|
Homebrew: {
|
|
Name: 'GameSettingsHomebrew',
|
|
Icon: 'fa-solid fa-flask-vial'
|
|
},
|
|
Range: {
|
|
Name: 'GameSettingsRange',
|
|
Icon: 'fa-solid fa-ruler'
|
|
}
|
|
};
|
|
|
|
export const gameSettings = {
|
|
Automation: {
|
|
Hope: 'AutomationHope',
|
|
ActionPoints: 'AutomationActionPoints'
|
|
},
|
|
Resources: {
|
|
Fear: 'ResourcesFear',
|
|
MaxFear: 'ResourcesMaxFear',
|
|
DisplayFear: 'DisplayFear'
|
|
},
|
|
General: {
|
|
AbilityArray: 'AbilityArray',
|
|
RangeMeasurement: 'RangeMeasurement'
|
|
},
|
|
DualityRollColor: 'DualityRollColor',
|
|
LevelTiers: 'LevelTiers',
|
|
appearance: 'Appearance'
|
|
};
|
|
|
|
export const DualityRollColor = {
|
|
colorful: {
|
|
value: 0,
|
|
label: 'DAGGERHEART.Settings.DualityRollColor.Options.Colorful'
|
|
},
|
|
normal: {
|
|
value: 1,
|
|
label: 'DAGGERHEART.Settings.DualityRollColor.Options.Normal'
|
|
}
|
|
};
|