2021-02-12 18:31:49 +01:00
|
|
|
import { Grammar } from "../grammar.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 TerreAttache extends Draconique {
|
|
|
|
|
|
|
|
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"); }
|
2023-11-15 22:14:00 +01:00
|
|
|
manualMessage() { return "Vous pouvez re-configurer votre Nouvelle Terre d'attache" }
|
2021-02-12 18:31:49 +01:00
|
|
|
|
|
|
|
async onActorCreateOwned(actor, tete) {
|
2023-11-15 22:14:00 +01:00
|
|
|
await this.createCaseTmr(actor, "Nouvelle Terre d'attache", { coord: 'A0' }, tete.id);
|
2021-02-12 18:31:49 +01:00
|
|
|
}
|
2021-02-11 02:48:27 +01:00
|
|
|
|
|
|
|
code() { return 'attache' }
|
2023-11-15 22:14:00 +01:00
|
|
|
tooltip(linkData) { return `Terre d'attache` }
|
|
|
|
img() { return 'systems/foundryvtt-reve-de-dragon/icons/tmr/attache.svg' }
|
2021-02-11 02:48:27 +01:00
|
|
|
|
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,
|
2023-11-21 16:03:47 +01:00
|
|
|
decallage: pixiTMR.sizes.decallage(1, 1),
|
2023-11-15 22:14:00 +01:00
|
|
|
taille: () => pixiTMR.sizes.third
|
2021-02-12 15:01:10 +01:00
|
|
|
});
|
2021-02-11 02:48:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|