mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* FIX: Remove the psudo-documents because they will be used. * FIX: ForeignDocumentUUIDField initialize like a getter FEAT: ForeignDocumentUUIDArrayField created and used * REFACTOR: prettier format --------- Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com>
20 lines
498 B
JavaScript
20 lines
498 B
JavaScript
import * as GENERAL from './generalConfig.mjs';
|
|
import * as DOMAIN from './domainConfig.mjs';
|
|
import * as ACTOR from './actorConfig.mjs';
|
|
import * as ITEM from './itemConfig.mjs';
|
|
import * as SETTINGS from './settingsConfig.mjs';
|
|
import * as EFFECTS from './effectConfig.mjs';
|
|
import * as ACTIONS from './actionConfig.mjs';
|
|
|
|
export const SYSTEM_ID = 'daggerheart';
|
|
|
|
export const SYSTEM = {
|
|
id: SYSTEM_ID,
|
|
GENERAL,
|
|
DOMAIN,
|
|
ACTOR,
|
|
ITEM,
|
|
SETTINGS,
|
|
EFFECTS,
|
|
ACTIONS,
|
|
};
|