UNPKG

@opendnd/genetica

Version:

This is a tool for using a simplified genetics system to generate inheritable traits for DnD characters.

11 lines (7 loc) 211 B
import * as program from "commander"; import wizardSeed from "./wizard-seed"; // program basics program .option("-o, --output <dir>", "output directory") .parse(process.argv); wizardSeed(program.output);