2021-02-12 18:31:49 +01:00
|
|
|
import { Grammar } from "../grammar.js";
|
2021-02-12 01:44:27 +01:00
|
|
|
import { Misc } from "../misc.js";
|
2021-05-11 21:45:43 +02:00
|
|
|
import { RdDDice } from "../rdd-dice.js";
|
2021-02-12 15:01:10 +01:00
|
|
|
import { tmrColors, tmrConstants, tmrTokenZIndex, TMRType, TMRUtility } from "../tmr-utility.js";
|
2021-02-12 01:44:27 +01:00
|
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
|
|
|
|
export class Desorientation 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('desorientation'); }
|
2021-02-12 01:44:27 +01:00
|
|
|
manualMessage() { return false }
|
|
|
|
|
|
|
|
async onActorCreateOwned(actor, souffle) {
|
2021-05-11 21:45:43 +02:00
|
|
|
const type = await RdDDice.rollOneOf(this._typesPossibles(actor));
|
2021-02-12 01:44:27 +01:00
|
|
|
console.log("désorientation", type);
|
|
|
|
souffle.name += ": " + TMRType[type].name;
|
|
|
|
await this._creerCasesTmr(actor, type, souffle);
|
|
|
|
}
|
|
|
|
|
|
|
|
_typesPossibles(actor) {
|
|
|
|
const dejaDesorientes = Misc.distinct(actor.data.items.filter(it => this.isCase(it)).map(it => it.type));
|
|
|
|
return Object.keys(TMRType).filter(it => !dejaDesorientes.includes(it));
|
|
|
|
}
|
|
|
|
|
|
|
|
code() { return 'desorientation' }
|
|
|
|
tooltip(linkData) { return `Désorientation, cette case n'existe plus !` }
|
|
|
|
img() { return 'icons/svg/explosion.svg' }
|
|
|
|
|
2021-02-12 18:31:49 +01:00
|
|
|
createSprite(pixiTMR) {
|
2021-02-12 01:44: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-12 01:44:27 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async _creerCasesTmr(actor, type, souffle) {
|
|
|
|
const existants = actor.data.items.filter(it => this.isCase(it)).map(it => it.data.coord);
|
|
|
|
let tmrs = TMRUtility.filterTMR(it => it.type == type && !existants.includes(it.coord));
|
|
|
|
for (let tmr of tmrs) {
|
2021-03-29 23:41:08 +02:00
|
|
|
await this.createCaseTmr(actor, 'Désorientation: ' + tmr.label, tmr, souffle.id);
|
2021-02-12 01:44:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|