11 lines
457 B
JavaScript
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));
|