forked from public/fvtt-cthulhu-eternal
16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
export default class CthulhuEternalInjury extends foundry.abstract.TypeDataModel {
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields
|
|
const requiredInteger = { required: true, nullable: false, integer: true }
|
|
const schema = {}
|
|
|
|
schema.description = new fields.HTMLField({ required: true, textSearch: true })
|
|
|
|
return schema
|
|
}
|
|
|
|
/** @override */
|
|
static LOCALIZATION_PREFIXES = ["CTHULHUETERNAL.Gift"]
|
|
|
|
}
|