mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* . * . * Removed outcommented code * Raised to minor version * Added confirmation on import of old character data
31 lines
741 B
JavaScript
31 lines
741 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: 'Automation',
|
|
Homebrew: 'Homebrew',
|
|
appearance: 'Appearance',
|
|
variantRules: 'VariantRules',
|
|
Resources: {
|
|
Fear: 'ResourcesFear'
|
|
},
|
|
LevelTiers: 'LevelTiers',
|
|
Countdowns: 'Countdowns',
|
|
LastMigrationVersion: 'LastMigrationVersion'
|
|
};
|