A lot, i dont rembr

This commit is contained in:
Raktbastr 2025-04-14 11:37:22 -05:00
parent fdd58af63e
commit 82565a2be9
6 changed files with 547 additions and 45 deletions

View file

@ -1,6 +1,6 @@
// Holds poi code, seperate from encounters.js
import { userInput } from "./functions.js";
import { userInput, pauseScreen } from "./functions.js";
import './variables.js';
export function checkPOI() {
@ -119,7 +119,27 @@ global.pois = [
]
function whitespring() {
console.clear();
console.log("You have arrived at the Whitespring Bunker.");
console.log("What would you like to do?");
console.log("1) Explore");
console.log("2) Attempt to trade");
console.log("3) Open your PIP-Boy");
console.log("4) Leave");
let whitespringInput = userInput("Enter: ");
switch(whitespringInput) {
case "1":
console.clear();
console.log("A robotic voice greets you.");
console.log("MODUS Dialogue here...")
break;
case "2":
whitespringStore();
case "3":
pauseScreen();
case "4":
break;
}
}
function bosGamma() {