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 PontImpraticable 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('impraticabilite des ponts'); }
|
2021-02-11 02:48:27 +01:00
|
|
|
|
2021-02-12 18:31:49 +01:00
|
|
|
async onActorCreateOwned(actor, souffle) {
|
|
|
|
const ponts = TMRUtility.getListTMR('pont');
|
|
|
|
for (let tmr of ponts) {
|
2021-03-29 23:41:08 +02:00
|
|
|
await this.createCaseTmr(actor, 'Pont impraticable: ' + tmr.label, tmr, souffle.id);
|
2021-02-12 18:31:49 +01:00
|
|
|
}
|
|
|
|
}
|
2021-02-11 02:48:27 +01:00
|
|
|
|
|
|
|
code() { return 'pont-impraticable' }
|
2021-02-12 01:16:02 +01:00
|
|
|
tooltip(linkData) { return `${this.tmrLabel(linkData)} impraticable` }
|
2021-05-02 21:08:50 +02:00
|
|
|
img() { return 'systems/foundryvtt-reve-de-dragon/icons/tmr/wave.webp' }
|
2021-02-11 02:48:27 +01:00
|
|
|
|
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.casehumide,
|
|
|
|
color: tmrColors.casehumide,
|
|
|
|
alpha: 0.5,
|
|
|
|
taille: tmrConstants.twoThird,
|
|
|
|
decallage: tmrConstants.bottom
|
2021-02-11 02:48:27 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async _creerCaseTmr(actor) {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|