Shops, encounters, poi menus, items, and some other stuff. Poi dialogue and combat left!

This commit is contained in:
Raktbastr 2025-04-25 23:08:47 -05:00
parent 22975aff26
commit 8485d7d800
6 changed files with 371 additions and 142 deletions

View file

@ -463,6 +463,9 @@ function hub() {
case "2":
pauseScreen();
case "3":
trader();
break;
case "4":
enableRawMode();
console.clear();
break;
@ -478,6 +481,7 @@ function lostHills() {
console.log("What would you like to do?");
console.log("1) Explore");
console.log("2) Open your PIP-Boy");
console.log("3) Attempt to trade");
console.log("4) Leave");
let poiInput = userInput("Enter: ");
switch(poiInput) {
@ -488,6 +492,9 @@ function lostHills() {
case "2":
pauseScreen();
case "3":
lostHillsStore();
break;
case "4":
enableRawMode();
console.clear();
break;