mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Added prettier with automatic useage on pre-commit to avoid style breakage * Ran Prettier on the project
11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
import featuresSchema from './interface/featuresSchema.mjs';
|
|
|
|
export default class DhpCommunity extends foundry.abstract.TypeDataModel {
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
description: new fields.HTMLField({}),
|
|
abilities: featuresSchema()
|
|
};
|
|
}
|
|
}
|