2021-02-12 18:31:49 +01:00
|
|
|
import { Grammar } from "../grammar.js";
|
|
|
|
import { tmrColors, tmrConstants, tmrTokenZIndex } from "../tmr-utility.js";
|
2021-02-11 02:48:27 +01:00
|
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
|
|
|
|
export class TerreAttache extends Draconique {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
type() { return 'tete' }
|
2021-02-12 18:31:49 +01:00
|
|
|
match(item) { return Draconique.isTeteDragon(item) && Grammar.toLowerCaseNoAccent(item.name).includes("terre d'attache"); }
|
2021-02-11 02:48:27 +01:00
|
|
|
manualMessage() { return "Vous pouvez re-configurer votre Terre d'Attache" }
|
2021-02-12 18:31:49 +01:00
|
|
|
|
|
|
|
async onActorCreateOwned(actor, tete) {
|
2021-03-29 23:41:08 +02:00
|
|
|
await this.createCaseTmr(actor, "Terre d'attache à déterminer", { coord: 'A0' }, tete.id);
|
2021-02-12 18:31:49 +01:00
|
|
|
}
|
2021-02-11 02:48:27 +01:00
|
|
|
|
|
|
|
code() { return 'attache' }
|
2021-02-12 01:16:02 +01:00
|
|
|
tooltip(linkData) { return `Terre d'attache en ${this.tmrLabel(linkData)} !` }
|
2021-02-11 02:48:27 +01:00
|
|
|
img() { return 'icons/svg/anchor.svg' }
|
|
|
|
|
2021-02-12 18:31:49 +01:00
|
|
|
createSprite(pixiTMR) {
|
2021-02-12 15:01:10 +01:00
|
|
|
return pixiTMR.sprite(this.code(), {
|
|
|
|
zIndex: tmrTokenZIndex.tetes,
|
|
|
|
color: tmrColors.tetes,
|
|
|
|
decallage: tmrConstants.topLeft
|
|
|
|
});
|
2021-02-11 02:48:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|