99ed077da8
+ fix bug sur conquête cité (pour supprimer la casetmr) + svg couleur plus lisibles
23 lines
619 B
JavaScript
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 });
|
|
}
|
|
}
|