foundryvtt-reve-de-dragon/module/tmr/sort-reserve.js
Vincent Vandemeulebrouck 99ed077da8 Gestion des présents des cités
+ fix bug sur conquête cité (pour supprimer la casetmr)
+ svg couleur plus lisibles
2021-02-12 12:51:04 +01:00

23 lines
619 B
JavaScript

import { tmrColors, tmrConstants } from "../tmr-utility.js";
import { Draconique } from "./draconique.js";
export class SortReserve extends Draconique {
constructor() {
super();
}
type() { return '' }
match(item) { return false; }
manualMessage() { return false }
async onActorCreateOwned(actor, item) { }
code() { return 'sort' }
tooltip(sort) { return `${sort.name}, r${sort.data.ptreve_reel}` }
img() { return 'systems/foundryvtt-reve-de-dragon/icons/tmr/scroll.svg' }
_createSprite(pixiTMR) {
return pixiTMR.sprite(this.code(), { alpha: 0.5, decallage: tmrConstants.right });
}
}