2021-02-12 18:31:49 +01:00
|
|
|
import { Grammar } from "../grammar.js";
|
2021-12-12 17:36:22 +01:00
|
|
|
import { TMRUtility } from "../tmr-utility.js";
|
2023-11-15 22:14:00 +01:00
|
|
|
import { tmrTokenZIndex } from "../tmr-constants.js";
|
2021-02-11 02:48:27 +01:00
|
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
|
|
|
|
export class PontImpraticable extends Draconique {
|
|
|
|
|
|
|
|
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) {
|
2023-11-15 22:14:00 +01:00
|
|
|
await this.createCaseTmr(actor, 'Pont impraticable', tmr, souffle.id);
|
2021-02-12 18:31:49 +01:00
|
|
|
}
|
|
|
|
}
|
2021-02-11 02:48:27 +01:00
|
|
|
|
|
|
|
code() { return 'pont-impraticable' }
|
2023-11-15 22:14:00 +01:00
|
|
|
tooltip(linkData) { return `Pont impraticable` }
|
|
|
|
img() { return 'systems/foundryvtt-reve-de-dragon/icons/tmr/debordement.svg' }
|
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,
|
2023-11-15 22:14:00 +01:00
|
|
|
decallage: pixiTMR.sizes.decallage(0, 2/3),
|
|
|
|
taille: () => pixiTMR.sizes.half,
|
2021-02-11 02:48:27 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async _creerCaseTmr(actor) {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|