This commit is contained in:
Caroline Foy 2025-02-26 15:38:51 -06:00
parent 6e476dcf14
commit 0dfc20e470
4 changed files with 78 additions and 3 deletions

View file

@ -3,6 +3,7 @@ const variables = require("./variables.js");
const game = require("./game.js");
const shops = require("./shops");
const readline = require('node:readline');
const encounterMenus = require("./poiscreens.js");
console.clear();
console.log("__________________________________________________________________________________________________________________________________");
@ -27,6 +28,9 @@ switch(mainMenuInput) {
startGame();
break;
case "2":
var array = [1, 2, 3, 4, 5];
console.log(array);
console.log(encounterMenus.filterFaction(encounterDiffOne, "abomination"));
console.log("Follow the link below for a game manual.")
console.log("[ENTER LINK HERE]")
break;