mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Added DualityRoll direct rolls in chat * Added button render to renderJournalEntryPageProseMirrorSheet and renderHandlebarsApplication * Hope and Fear dice totals are now properly added together * Added Colorful/Normal DualityRoll color settings
40 lines
909 B
JavaScript
40 lines
909 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'
|
|
}
|
|
};
|
|
|
|
export const gameSettings = {
|
|
Automation: {
|
|
Hope: 'AutomationHope',
|
|
ActionPoints: 'AutomationActionPoints'
|
|
},
|
|
Resources: {
|
|
Fear: 'ResourcesFear'
|
|
},
|
|
General: {
|
|
AbilityArray: 'AbilityArray',
|
|
RangeMeasurement: 'RangeMeasurement'
|
|
},
|
|
DualityRollColor: 'DualityRollColor'
|
|
};
|
|
|
|
export const DualityRollColor = {
|
|
colorful: {
|
|
value: 0,
|
|
label: 'DAGGERHEART.Settings.DualityRollColor.Options.Colorful'
|
|
},
|
|
normal: {
|
|
value: 1,
|
|
label: 'DAGGERHEART.Settings.DualityRollColor.Options.Normal'
|
|
}
|
|
};
|