Finished basic NPC sheet

This commit is contained in:
Ender
2024-05-01 20:53:34 +02:00
parent 486f3f5b3c
commit a57aea1228
11 changed files with 409 additions and 58 deletions
+1
View File
@@ -162,6 +162,7 @@ export interface M5AttributeCalculated extends M5ModResult {
export interface M5CharacterCalculatedData {
level: number;
movement: number;
attributes: {
st: M5AttributeCalculated;
gs: M5AttributeCalculated;
+1 -1
View File
@@ -22,7 +22,7 @@ export default class M5CharacterSheet extends ActorSheet {
get template() {
//console.log("M5CharacterSheet", this.actor.data.type)
if (this.actor.data.type === "npc") {
if (this.actor.type === "npc") {
return "systems/midgard5/templates/sheets/npc/main.hbs";
}
else {