Use custom config for module data instead of including in all (#1724)

* Use custom config for module data instead of including in all

* More simple
This commit is contained in:
Carlos Fernandez 2026-03-11 05:56:14 -04:00 committed by GitHub
parent f478317f19
commit 97c91e040a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 21 deletions

View file

@ -71,15 +71,18 @@ const companionBaseResources = Object.freeze({
export const character = {
base: characterBaseResources,
custom: {}, // module stuff goes here
all: { ...characterBaseResources },
};
export const adversary = {
base: adversaryBaseResources,
custom: {}, // module stuff goes here
all: { ...adversaryBaseResources },
};
export const companion = {
base: companionBaseResources,
custom: {}, // module stuff goes here
all: { ...companionBaseResources },
};