import { tmrColors, tmrConstants, TMRUtility } from "../tmr-utility.js"; import { Draconique } from "./draconique.js"; export class FermetureCites extends Draconique { constructor() { super(); } type() { return 'souffle' } match(item) { return Draconique.isSouffleDragon(item) && item.name.toLowerCase() == 'fermeture des cités'; } manualMessage() { return false } async onActorCreateOwned(actor, item) { await this._fermerLesCites(actor); } code() { return 'fermeture' } tooltip(linkData) { return `La ${this.tmrLabel(linkData)} est fermée` } img() { return 'icons/svg/door-closed.svg' } _createSprite(pixiTMR) { return pixiTMR.sprite(this.code(), { color: tmrColors.souffle, alpha: 0.9, taille: tmrConstants.full, decallage: { x: 2, y: 0 } }); } async _fermerLesCites(actor) { let existants = actor.data.items.filter(it => this.isCase(it)).map(it => it.data.coord); let ouvertes = TMRUtility.filterTMR(it => it.type == 'cite' && !existants.includes(it.coord)); for (let tmr of ouvertes) { await this.createCaseTmr(actor, 'Fermeture: ' + tmr.label, tmr); } } }