Ajout item Blessure

This commit is contained in:
2023-03-10 22:37:21 +01:00
parent 4f5fb63751
commit 2598ae3489
15 changed files with 181 additions and 5 deletions

View File

@ -0,0 +1,16 @@
import { RdDItemSheet } from "../item-sheet.js";
export class RdDBlessureItemSheet extends RdDItemSheet {
static get ITEM_TYPE() { return "blessure" };
async getData() {
const formData = await super.getData();
formData.disabled = formData.options.isGM || formData.options.isOwned ? '' : 'disabled';
return formData;
}
activateListeners(html) {
super.activateListeners(html);
}
}