Nouvelles corrections sur la fiche
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
import { SYSTEM } from "../config/system.mjs"
|
||||
|
||||
export default class AwESpecialization extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
const fields = foundry.data.fields
|
||||
const schema = {}
|
||||
|
||||
schema.fieldName = new fields.StringField({
|
||||
required: true,
|
||||
nullable: false,
|
||||
initial: "",
|
||||
blank: true
|
||||
})
|
||||
|
||||
schema.keyAttributeOverride = new fields.StringField({
|
||||
required: false,
|
||||
nullable: true,
|
||||
initial: "",
|
||||
blank: true,
|
||||
choices: {
|
||||
"": "—",
|
||||
...Object.fromEntries(Object.values(SYSTEM.ATTRIBUTES).map(a => [a.id, a.label]))
|
||||
}
|
||||
})
|
||||
|
||||
schema.description = new fields.HTMLField({ required: true, textSearch: true })
|
||||
schema.traits = new fields.ArrayField(new fields.StringField())
|
||||
|
||||
return schema
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user