Add minimap waypoints
This commit is contained in:
parent
f1d0d781d8
commit
9c967aa354
2 changed files with 7 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ import { gameTerms } from "../../gameTerms.mjs";
|
|||
const { fields } = foundry.data;
|
||||
|
||||
export class WeaponData extends foundry.abstract.TypeDataModel {
|
||||
// MARK: Schema
|
||||
static defineSchema() {
|
||||
return {
|
||||
traits: new fields.SetField(
|
||||
|
|
@ -32,10 +33,12 @@ export class WeaponData extends foundry.abstract.TypeDataModel {
|
|||
};
|
||||
};
|
||||
|
||||
// MARK: Base Data
|
||||
prepareBaseData() {
|
||||
super.prepareBaseData();
|
||||
};
|
||||
|
||||
// MARK: Derived Data
|
||||
prepareDerivedData() {
|
||||
super.prepareDerivedData();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue