System development, WIP
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { SYSTEM } from "../config/system.mjs"
|
||||
import { htmlField } from "./shared.mjs"
|
||||
|
||||
export default class MGNEFeature extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
return {
|
||||
featureId: new foundry.data.fields.StringField({
|
||||
required: true,
|
||||
nullable: false,
|
||||
initial: "akimbo-hit-priest",
|
||||
choices: SYSTEM.featureChoices,
|
||||
}),
|
||||
description: htmlField(""),
|
||||
}
|
||||
}
|
||||
|
||||
/** @override */
|
||||
static LOCALIZATION_PREFIXES = ["MGNE.Feature"]
|
||||
}
|
||||
Reference in New Issue
Block a user