Add description to the mob data model

This commit is contained in:
Oliver-Akins 2024-02-02 19:12:04 -07:00
parent 91a98d3d2a
commit 36e3a551b8

View file

@ -38,6 +38,10 @@ export class MobData extends foundry.abstract.TypeDataModel {
initial: 0, initial: 0,
min: 0, min: 0,
}), }),
description: new fields.StringField({
initial: ``,
blank: true,
}),
}; };
}; };
}; };