Add the data model for structures and prevent them from being embedded in most actors.

This commit is contained in:
Oliver-Akins 2024-01-16 19:24:56 -07:00
parent 5286f403a1
commit 762b297895
4 changed files with 50 additions and 2 deletions

View file

@ -0,0 +1,23 @@
import { ItemHandler } from "./Handler.mjs";
/** @this {ItemHandler} */
async function _preCreate() {
if (this.isEmbedded) {
let actor = this.actor;
if (actor.type === "settlement") {
return await actor.preItemEmbed(this);
};
ui.notifications.error(
game.i18n.format(
`dotdungeon.notification.error.cant-embed-item`,
{ item: this, actor }
),
{ console: false, }
);
return false;
};
};
export default {
_preCreate,
};