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
12 lines
359 B
JavaScript
12 lines
359 B
JavaScript
import featuresSchema from '../interface/featuresSchema.mjs';
|
|
|
|
export default class DHCommunity extends foundry.abstract.TypeDataModel {
|
|
/** @inheritDoc */
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
description: new fields.HTMLField({}),
|
|
abilities: featuresSchema()
|
|
};
|
|
}
|
|
}
|