foundryvtt-reve-de-dragon/module/actor-vehicule-sheet.js

40 lines
1.3 KiB
JavaScript
Raw Normal View History

2021-01-10 22:12:07 +01:00
import { RdDUtility } from "./rdd-utility.js";
import { RdDActorSheet } from "./actor-sheet.js";
2021-01-10 22:12:07 +01:00
2022-01-01 14:01:41 +01:00
/* -------------------------------------------- */
export class RdDActorVehiculeSheet extends RdDActorSheet {
2021-01-10 22:12:07 +01:00
/** @override */
2022-01-01 14:01:41 +01:00
static get defaultOptions() {
2021-01-10 22:12:07 +01:00
RdDUtility.initAfficheContenu();
2022-01-01 14:01:41 +01:00
return mergeObject(super.defaultOptions, {
classes: ["rdd", "sheet", "actor"],
template: "systems/foundryvtt-reve-de-dragon/templates/actor-vehicule-sheet.html",
2021-01-10 22:12:07 +01:00
width: 640,
height: 720,
2022-01-01 14:01:41 +01:00
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "carac" }],
2022-11-05 18:06:30 +01:00
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: undefined }]
2021-01-10 22:12:07 +01:00
});
}
2022-11-28 21:01:28 +01:00
activateListeners(html) {
super.activateListeners(html);
if (!this.options.editable) return;
this.html.find('.resistance-moins').click(async event => {
2022-11-28 21:01:28 +01:00
this.actor.vehicleIncDec("resistance", -1);
});
this.html.find('.resistance-plus').click(async event => {
2022-11-28 21:01:28 +01:00
this.actor.vehicleIncDec("resistance", 1);
});
this.html.find('.structure-moins').click(async event => {
2022-11-28 21:01:28 +01:00
this.actor.vehicleIncDec("structure", -1);
});
this.html.find('.structure-plus').click(async event => {
2022-11-28 21:01:28 +01:00
this.actor.vehicleIncDec("structure", 1);
});
}
2021-01-10 22:12:07 +01:00
}