2021-02-12 18:31:49 +01:00
|
|
|
import { Grammar } from "../grammar.js";
|
2021-02-12 15:01:10 +01:00
|
|
|
import { tmrColors, tmrConstants, tmrTokenZIndex, TMRUtility } from "../tmr-utility.js";
|
2021-02-11 02:48:27 +01:00
|
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
|
|
|
|
export class TrouNoir extends Draconique {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
type() { return 'souffle' }
|
2021-02-12 18:31:49 +01:00
|
|
|
match(item) { return Draconique.isSouffleDragon(item) && Grammar.toLowerCaseNoAccent(item.name).includes('trou noir'); }
|
2021-02-11 02:48:27 +01:00
|
|
|
manualMessage() { return false }
|
2021-02-12 18:31:49 +01:00
|
|
|
|
|
|
|
async onActorCreateOwned(actor, souffle) {
|
|
|
|
const existants = actor.data.items.filter(it => this.isCase(it)).map(it => it.data.coord);
|
2021-05-11 21:45:43 +02:00
|
|
|
const tmr = await TMRUtility.getTMRAleatoire(it => !(TMRUtility.isCaseHumide(it) || existants.includes(it.coord)));
|
2021-03-29 23:41:08 +02:00
|
|
|
await this.createCaseTmr(actor, 'Trou noir: ' + tmr.label, tmr, souffle.id);
|
2021-02-12 18:31:49 +01:00
|
|
|
}
|
2021-02-11 02:48:27 +01:00
|
|
|
|
|
|
|
code() { return 'trounoir' }
|
2021-02-12 01:16:02 +01:00
|
|
|
tooltip(linkData) { return `Trou noir en ${this.tmrLabel(linkData)} !` }
|
2021-02-11 02:48:27 +01:00
|
|
|
img() { return 'icons/svg/explosion.svg' }
|
|
|
|
|
2021-02-12 18:31:49 +01:00
|
|
|
createSprite(pixiTMR) {
|
2021-02-11 02:48:27 +01:00
|
|
|
return pixiTMR.sprite(this.code(),
|
|
|
|
{
|
2021-02-12 15:01:10 +01:00
|
|
|
zIndex: tmrTokenZIndex.trounoir,
|
|
|
|
color: tmrColors.trounoir,
|
|
|
|
alpha: 1, taille:
|
|
|
|
tmrConstants.full,
|
|
|
|
decallage: { x: 2, y: 2 },
|
2021-02-11 02:48:27 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|