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

41 lines
1.5 KiB
JavaScript
Raw Normal View History

2023-11-06 23:02:22 +01:00
import { RdDBaseActorReveSheet } from "./base-actor-reve-sheet.js";
import { RdDBaseActorSangSheet } from "./base-actor-sang-sheet.js";
2020-09-20 17:38:21 +02:00
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
export class RdDCreatureSheet extends RdDBaseActorSangSheet {
2020-09-20 17:38:21 +02:00
/** @override */
2021-01-19 23:39:35 +01:00
static get defaultOptions() {
2024-05-01 09:13:21 +02:00
return foundry.utils.mergeObject(RdDBaseActorSangSheet.defaultOptions, {
2021-01-19 23:39:35 +01:00
template: "systems/foundryvtt-reve-de-dragon/templates/actor-creature-sheet.html",
2023-11-06 23:02:22 +01:00
width: 640, height: 720
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
}