import NPC from 'dnd-npc'; const obj = { raceType: "warforged", subRace: "juggernaut", classType: "fighter" } const npc = new NPC(obj) .setRace("human") .setClass("bard"); // Generates a Human Bard (why u make Bard tho?) const character = await npc.generate(); You can al...