#4 : Gestion humanoide

This commit is contained in:
2020-11-04 16:29:10 +01:00
parent 34156295ea
commit ed16553ace
12 changed files with 423 additions and 10 deletions

View File

@ -12,6 +12,7 @@ import { RdDActor } from "./actor.js";
import { RdDItemSheet } from "./item-sheet.js";
import { RdDActorSheet } from "./actor-sheet.js";
import { RdDActorCreatureSheet } from "./actor-creature-sheet.js";
import { RdDActorHumanoideSheet } from "./actor-humanoide-sheet.js";
import { RdDUtility } from "./rdd-utility.js";
import { RdDCalendrier } from "./rdd-calendrier.js";
@ -128,6 +129,10 @@ Hooks.once("init", async function() {
types: ["creature"],
makeDefault: true
});
Actors.registerSheet("wfrp4e", RdDActorHumanoideSheet, {
types: ["humanoide"],
makeDefault: true
});
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("foundryvtt-reve-de-dragon", RdDItemSheet, {makeDefault: true});