A lot, i dont rembr
This commit is contained in:
parent
fdd58af63e
commit
82565a2be9
6 changed files with 547 additions and 45 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue