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

44 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2022-11-05 18:06:30 +01:00
import { RdDActorSheet } from "./actor-sheet.js";
2020-09-20 17:38:21 +02:00
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
export class RdDActorCreatureSheet extends RdDActorSheet {
2020-09-20 17:38:21 +02:00
/** @override */
2021-01-19 23:39:35 +01:00
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
classes: ["rdd", "sheet", "actor"],
template: "systems/foundryvtt-reve-de-dragon/templates/actor-creature-sheet.html",
2020-09-20 17:38:21 +02:00
width: 640,
height: 720,
2021-01-19 23:39:35 +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 }]
2020-09-20 17:38:21 +02:00
});
}
/* -------------------------------------------- */
/** @override */
2021-01-19 23:39:35 +01:00
activateListeners(html) {
2020-09-20 17:38:21 +02:00
super.activateListeners(html);
2020-09-20 17:38:21 +02:00
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// On competence change
this.html.find('.creature-carac').change(async event => {
2021-01-19 23:39:35 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence(compName, "carac_value", parseInt(event.target.value));
2020-09-20 17:38:21 +02:00
});
this.html.find('.creature-niveau').change(async event => {
2021-01-19 23:39:35 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence(compName, "niveau", parseInt(event.target.value));
});
this.html.find('.creature-dommages').change(async event => {
2021-01-19 23:39:35 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence(compName, "dommages", parseInt(event.target.value));
});
}
2020-09-20 17:38:21 +02:00
}