5 lines
223 B
JavaScript
5 lines
223 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));
|