forked from public/fvtt-cthulhu-eternal
20 lines
702 B
JavaScript
20 lines
702 B
JavaScript
|
import { SYSTEM } from "../config/system.mjs"
|
||
|
|
||
|
export default class CthulhuEternalEquipment extends foundry.abstract.TypeDataModel {
|
||
|
static defineSchema() {
|
||
|
const fields = foundry.data.fields
|
||
|
const schema = {}
|
||
|
const requiredInteger = { required: true, nullable: false, integer: true }
|
||
|
|
||
|
schema.description = new fields.HTMLField({ required: true, textSearch: true })
|
||
|
schema.settings = new fields.StringField({ required: true, initial: "common", choices: SYSTEM.AVAILABLE_SETTINGS })
|
||
|
schema.resourceLevel = new fields.NumberField({ required: true, initial: 0, min: 0 })
|
||
|
|
||
|
return schema
|
||
|
}
|
||
|
|
||
|
/** @override */
|
||
|
static LOCALIZATION_PREFIXES = ["CTHULHUETERNAL.Equipment"]
|
||
|
|
||
|
}
|