mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-13 04:01:06 +01:00
- Add _module.mjs file to simplify imports - Update all import paths - Rename class for use the new acronym DH
12 lines
358 B
JavaScript
12 lines
358 B
JavaScript
import featuresSchema from '../interface/featuresSchema.mjs';
|
|
|
|
export default class DHAncestry extends foundry.abstract.TypeDataModel {
|
|
/** @inheritDoc */
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
description: new fields.HTMLField({}),
|
|
abilities: featuresSchema()
|
|
};
|
|
}
|
|
}
|