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

43 lines
1.6 KiB
JavaScript
Raw Normal View History

import { RdDActorSheet } from "./actor-sheet.js";
import { HtmlUtility } from "./html-utility.js";
2021-03-25 03:18:27 +01:00
import { RdDUtility } from "./rdd-utility.js";
2020-11-14 23:24:01 +01:00
export class RdDActorEntiteSheet extends RdDActorSheet {
2020-11-14 23:24:01 +01:00
/** @override */
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
classes: ["rdd", "sheet", "actor"],
template: "systems/foundryvtt-reve-de-dragon/templates/actor-entite-sheet.html",
width: 640,
height: 720,
tabs: [{navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "carac"}],
dragDrop: [{dragSelector: ".item-list .item", dropSelector: null}]
});
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
super.activateListeners(html);
2020-11-14 23:24:01 +01:00
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// On competence change
html.find('.creature-carac').change(async event => {
2020-11-14 23:24:01 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence( compName, "carac_value", parseInt(event.target.value) );
} );
html.find('.creature-niveau').change(async event => {
2020-11-14 23:24:01 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence( compName, "niveau", parseInt(event.target.value) );
} );
html.find('.creature-dommages').change(async event => {
2020-11-14 23:24:01 +01:00
let compName = event.currentTarget.attributes.compname.value;
this.actor.updateCreatureCompetence( compName, "dommages", parseInt(event.target.value) );
} );
}
}