3f4d52487d
- suppression de casetmr lors de visite/conquete - suppression de toutes les cases TMRs liées - notification lors de suppression d'une casetmr pour enlever la queue # Conflicts: # module/actor.js
34 lines
1017 B
JavaScript
34 lines
1017 B
JavaScript
import { Grammar } from "../grammar.js";
|
|
import { tmrConstants, tmrTokenZIndex, TMRUtility } from "../tmr-utility.js";
|
|
import { Draconique } from "./draconique.js";
|
|
|
|
export class Pelerinage extends Draconique {
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
type() { return 'queue' }
|
|
match(item) { return Draconique.isQueueDragon(item) && Grammar.toLowerCaseNoAccent(item.name).includes('pelerinage'); }
|
|
manualMessage() { return false }
|
|
|
|
async onActorCreateOwned(actor, queue) {
|
|
let tmr = TMRUtility.getTMRAleatoire();
|
|
await this.createCaseTmr(actor, 'Pèlerinage: ' + tmr.label, tmr, queue._id);
|
|
}
|
|
|
|
|
|
code() { return 'pelerinage' }
|
|
tooltip(linkData) { return `Votre pèlerinage en ${this.tmrLabel(linkData)}` }
|
|
img() { return 'systems/foundryvtt-reve-de-dragon/icons/tmr/pelerin.svg' }
|
|
|
|
createSprite(pixiTMR) {
|
|
return pixiTMR.sprite(this.code(), {
|
|
zIndex: tmrTokenZIndex.conquete,
|
|
alpha: 1,
|
|
taille: tmrConstants.twoThird,
|
|
decallage: tmrConstants.right
|
|
});
|
|
}
|
|
}
|