import { SYSTEM } from "../config/system.mjs" export default class CthulhuEternalArcane 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: false, blank: true, initial: "", textSearch: true, }) return schema } /** @override */ static LOCALIZATION_PREFIXES = ["CTHULHUETERNAL.Arcane"] }