starforged-cli
Version:
My goal is for this to be an easy-to-use CLI for playing Starforged solo. If your game ends up in a broken state of some sort, and no command yet exists to fix your issue, all of the game data you accumulate is stored in `~/starforged-cli/db.json` and you
17 lines (13 loc) • 327 B
JavaScript
require("prompts");
const { starforged } = require("dataforged");
const { getResultsFromOracles } = require("../userPrompts");
async function runOracle() {
console.log(
JSON.stringify(
await getResultsFromOracles(starforged["Oracle Categories"]),
null,
2
)
);
}
module.exports = { runOracle };