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

24 lines
758 B
JavaScript
Raw Normal View History

2021-01-10 22:12:07 +01:00
import { RdDUtility } from "./rdd-utility.js";
import { RdDSheetUtility } from "./rdd-sheet-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" }],
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }]
2021-01-10 22:12:07 +01:00
});
}
2021-01-10 22:12:07 +01:00
}