42bd63c999
ajout de methode tmrLabel pour les tooltips ajout de l'item en paramètre aux ajouts/suppressions ajout d'un 'sourceId' pour les casetmr liées à un souffle/queue/tête
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import { tmrColors, tmrConstants, TMRUtility } from "../tmr-utility.js";
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
export class Debordement extends Draconique {
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
type() { return 'souffle' }
|
|
match(item) { return Draconique.isSouffleDragon(item) && item.name.toLowerCase().includes('trou noir'); }
|
|
manualMessage() { return false }
|
|
async onActorCreateOwned(actor, item) { await this._creerCaseTmr(actor); }
|
|
|
|
code() { return 'debordement' }
|
|
tooltip(linkData) { return `Débordement en ${this.tmrLabel(linkData)}` }
|
|
img() { return 'systems/foundryvtt-reve-de-dragon/icons/svg/wave.svg' }
|
|
|
|
_createSprite(pixiTMR) {
|
|
return pixiTMR.sprite(this.code(),
|
|
{
|
|
color: tmrColors.casehumide, alpha: 0.5, taille: tmrConstants.twoThird, decallage: tmrConstants.bottom
|
|
});
|
|
}
|
|
|
|
async _creerCaseTmr(actor) {
|
|
const existants = actor.data.items.filter(it => this.isCase(it)).map(it => it.data.coord);
|
|
const tmr = TMRUtility.getTMRAleatoire(it => !(TMRUtility.isCaseHumide(it) || existants.includes(it.coord)));
|
|
await this.createCaseTmr(actor, 'Debordement: ' + tmr.label, tmr);
|
|
}
|
|
}
|