mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* Merged with main * Added the display * . * Removed unused override function * Fixed layout for generic effects * feat: add basic style to effects tooltip * Corrected distancing * Use CSS based solution for shifting the countdowns * Centered tooltip header --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Carlos Fernandez <cfern1990@gmail.com>
26 lines
675 B
JavaScript
26 lines
675 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';
|
|
import * as FLAGS from './flagsConfig.mjs';
|
|
import HOOKS from './hooksConfig.mjs';
|
|
import * as ITEMBROWSER from './itemBrowserConfig.mjs';
|
|
|
|
export const SYSTEM_ID = 'daggerheart';
|
|
|
|
export const SYSTEM = {
|
|
id: SYSTEM_ID,
|
|
GENERAL,
|
|
DOMAIN,
|
|
ACTOR,
|
|
ITEM,
|
|
SETTINGS,
|
|
EFFECTS,
|
|
ACTIONS,
|
|
FLAGS,
|
|
HOOKS,
|
|
ITEMBROWSER
|
|
};
|