0cd4c7c158
- remplacer xxxOwnedItems par xxxEmbeddedDocuments - corrections des accès aux items vs itemData - corrections cases spéciales TMR et effets draconiques - correction monnaies/payer
31 lines
965 B
JavaScript
31 lines
965 B
JavaScript
import { Grammar } from "../grammar.js";
|
|
import { tmrColors, tmrConstants, tmrTokenZIndex } from "../tmr-utility.js";
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
export class TerreAttache extends Draconique {
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
type() { return 'tete' }
|
|
match(item) { return Draconique.isTeteDragon(item) && Grammar.toLowerCaseNoAccent(item.name).includes("terre d'attache"); }
|
|
manualMessage() { return "Vous pouvez re-configurer votre Terre d'Attache" }
|
|
|
|
async onActorCreateOwned(actor, tete) {
|
|
await this.createCaseTmr(actor, "Terre d'attache à déterminer", { coord: 'A0' }, tete.id);
|
|
}
|
|
|
|
code() { return 'attache' }
|
|
tooltip(linkData) { return `Terre d'attache en ${this.tmrLabel(linkData)} !` }
|
|
img() { return 'icons/svg/anchor.svg' }
|
|
|
|
createSprite(pixiTMR) {
|
|
return pixiTMR.sprite(this.code(), {
|
|
zIndex: tmrTokenZIndex.tetes,
|
|
color: tmrColors.tetes,
|
|
decallage: tmrConstants.topLeft
|
|
});
|
|
}
|
|
|
|
}
|