Vincent Vandemeulebrouck
d9cdfef688
simplification des tests de droits pour savoir si on transmet l'appel de méthode à un MJ connecté. De manière générale, si on est le owner: pas besoin d'appel remote. Donc si MJ pas besoin. Si on a un appel remote, seul un MJ le traite.
40 lines
1006 B
JavaScript
40 lines
1006 B
JavaScript
import { Misc } from "../misc.js";
|
|
import { RdDBaseActor } from "./base-actor.js";
|
|
|
|
export class RdDCommerce extends RdDBaseActor {
|
|
|
|
static get defaultIcon() {
|
|
return "systems/foundryvtt-reve-de-dragon/icons/services/commerce.webp";
|
|
}
|
|
|
|
canReceive(item) {
|
|
return item.isInventaire('all');
|
|
}
|
|
|
|
getQuantiteDisponible(item) {
|
|
return (this.system.illimite || item?.isService()) ? undefined : item.getQuantite();
|
|
}
|
|
|
|
verifierFortune(cout) {
|
|
return this.system.illimite || super.verifierFortune(cout);
|
|
}
|
|
|
|
async depenserSols(cout) {
|
|
if (this.system.illimite) {
|
|
return
|
|
}
|
|
await super.depenserSols(cout)
|
|
}
|
|
|
|
async decrementerQuantiteItem(item, quantite) {
|
|
if (this.system.illimite) {
|
|
return;
|
|
}
|
|
await super.decrementerQuantiteItem(item, quantite, { supprimerSiZero: false });
|
|
}
|
|
|
|
calculerPrix(item) {
|
|
const pourcentage = this.system.pourcentage ?? 100;
|
|
return Misc.keepDecimals(Math.ceil(item.system.cout * pourcentage) / 100, 2);
|
|
}
|
|
} |