mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
- Add _module.mjs file to simplify imports - Update all import paths - Rename class for use the new acronym DH
36 lines
No EOL
834 B
JavaScript
36 lines
No EOL
834 B
JavaScript
import DHAncestry from './ancestry.mjs';
|
|
import DHArmor from './armor.mjs';
|
|
import DHClass from './class.mjs';
|
|
import DHCommunity from './community.mjs';
|
|
import DHConsumable from './consumable.mjs';
|
|
import DHDomainCard from './domainCard.mjs';
|
|
import DHFeature from './feature.mjs';
|
|
import DHMiscellaneous from './miscellaneous.mjs';
|
|
import DHSubclass from './subclass.mjs';
|
|
import DHWeapon from './weapon.mjs';
|
|
|
|
export {
|
|
DHAncestry,
|
|
DHArmor,
|
|
DHClass,
|
|
DHCommunity,
|
|
DHConsumable,
|
|
DHDomainCard,
|
|
DHFeature,
|
|
DHMiscellaneous,
|
|
DHSubclass,
|
|
DHWeapon,
|
|
}
|
|
|
|
export const config = {
|
|
ancestry: DHAncestry,
|
|
armor: DHArmor,
|
|
class: DHClass,
|
|
community: DHCommunity,
|
|
consumable: DHConsumable,
|
|
domainCard: DHDomainCard,
|
|
feature: DHFeature,
|
|
miscellaneous: DHMiscellaneous,
|
|
subclass: DHSubclass,
|
|
weapon: DHWeapon,
|
|
}; |