31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
|
import { tmrColors, tmrConstants, TMRUtility } from "../tmr-utility.js";
|
||
|
import { Draconique } from "./draconique.js";
|
||
|
|
||
|
export class TrouNoir 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 'trounoir' }
|
||
|
tooltip(linkData) { return `Trou noir en ${TMRUtility.getTMR(linkData.data.coord).label} !` }
|
||
|
img() { return 'icons/svg/explosion.svg' }
|
||
|
|
||
|
_createSprite(pixiTMR) {
|
||
|
return pixiTMR.sprite(this.code(),
|
||
|
{
|
||
|
color: tmrColors.trounoir, alpha: 1, taille: tmrConstants.full, decallage: { x: 2, y: 2 },
|
||
|
});
|
||
|
}
|
||
|
|
||
|
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, 'Trou noir: ' + tmr.label, tmr);
|
||
|
}
|
||
|
}
|