21 lines
450 B
JavaScript
21 lines
450 B
JavaScript
|
import { Draconique } from "./draconique.js";
|
||
|
|
||
|
export class CarteTmr extends Draconique {
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
|
}
|
||
|
|
||
|
type() { return '' }
|
||
|
match(item) { return false; }
|
||
|
manualMessage() { return false }
|
||
|
async onActorCreateOwned(actor, item) { }
|
||
|
|
||
|
code() { return 'tmr' }
|
||
|
img() { return 'systems/foundryvtt-reve-de-dragon/styles/img/ui/tmp_main_r1.webp' }
|
||
|
|
||
|
_createSprite(pixiTMR) {
|
||
|
return pixiTMR.carteTmr(this.code());
|
||
|
}
|
||
|
}
|