ds4/BeastImporter/addCreatures.js
2021-01-20 22:41:01 +01:00

11 lines
457 B
JavaScript

// This file just contains code intended to be executed in the dev console of a running foundry world with DS4 as system
import creatures from "./Bestiarium.json";
creatures.forEach((creature) => Actor.create(creature));
let beasts = game.packs.get("world.bestiarium");
beasts.importAll(game.actors.entities); //This won't import them, but creates the db-file so the next command works
game.actors.forEach((creature) => beasts.importEntity(creature));