UNPKG

@opendnd/genetica

Version:

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

12 lines (9 loc) 353 B
import * as program from "commander"; import wizardChild from "./wizard-child"; // program basics program .option("-o, --output <dir>", "output directory") .option("-m, --mother <file>", "mother *.per file") .option("-f, --father <file>", "father *.per file") .parse(process.argv); wizardChild(program.output, program.mother, program.father);