mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Added Combat and CombatTracker * Some cleneaup * Fixing and cleaning up * Added categories for combatants * Style improvements * Layout change
36 lines
857 B
JavaScript
36 lines
857 B
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'
|
|
},
|
|
VariantRules: {
|
|
Name: 'GameSettingsVariantrules',
|
|
Icon: 'fa-solid fa-scale-balanced'
|
|
}
|
|
};
|
|
|
|
export const gameSettings = {
|
|
Automation: {
|
|
Hope: 'AutomationHope',
|
|
ActionPoints: 'AutomationActionPoints'
|
|
},
|
|
Resources: {
|
|
Fear: 'ResourcesFear',
|
|
MaxFear: 'ResourcesMaxFear',
|
|
DisplayFear: 'DisplayFear'
|
|
},
|
|
General: {
|
|
AbilityArray: 'AbilityArray',
|
|
RangeMeasurement: 'RangeMeasurement'
|
|
},
|
|
appearance: 'Appearance',
|
|
variantRules: 'VariantRules'
|
|
};
|