Initial import
This commit is contained in:
17
module/models/oath.mjs
Normal file
17
module/models/oath.mjs
Normal file
@@ -0,0 +1,17 @@
|
||||
import { SYSTEM } from "../config/system.mjs"
|
||||
|
||||
export default class OathHammerOath extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
const fields = foundry.data.fields
|
||||
const schema = {}
|
||||
|
||||
schema.benefit = new fields.HTMLField({ required: true, textSearch: true })
|
||||
schema.violation = new fields.HTMLField({ required: true, textSearch: true })
|
||||
schema.oathType = new fields.StringField({ required: true, initial: "oath-of-justice", choices: SYSTEM.OATH_TYPES })
|
||||
schema.violated = new fields.BooleanField({ required: true, initial: false })
|
||||
|
||||
return schema
|
||||
}
|
||||
|
||||
static LOCALIZATION_PREFIXES = ["OATHHAMMER.Oath"]
|
||||
}
|
||||
Reference in New Issue
Block a user