mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 07:59:03 +01:00
Merge branch 'main' into feature/106-items-browser
This commit is contained in:
commit
e5f0ac7d30
41 changed files with 888 additions and 209 deletions
|
|
@ -55,8 +55,17 @@ export const domains = {
|
|||
}
|
||||
};
|
||||
|
||||
export const classDomainMap = {
|
||||
rogue: [domains.midnight, domains.grace]
|
||||
export const allDomains = () => ({
|
||||
...domains,
|
||||
...game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).domains
|
||||
});
|
||||
|
||||
export const orderedDomains = () => {
|
||||
const all = {
|
||||
...domains,
|
||||
...game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Homebrew).domains
|
||||
};
|
||||
return Object.values(all).sort((a, b) => game.i18n.localize(a.label).localeCompare(game.i18n.localize(b.label)));
|
||||
};
|
||||
|
||||
export const subclassMap = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue