aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/esieequest/Game.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/esieequest/Game.java b/src/esieequest/Game.java
index 3588624..a4594ac 100644
--- a/src/esieequest/Game.java
+++ b/src/esieequest/Game.java
@@ -35,26 +35,26 @@ public class Game {
35 Room vAmphitheaterSeat = new Room("in the amphitheater"); 35 Room vAmphitheaterSeat = new Room("in the amphitheater");
36 Room vAmphitheaterStage = new Room("on the amphitheater stage"); 36 Room vAmphitheaterStage = new Room("on the amphitheater stage");
37 Room vAmphitheaterEntrance = new Room("at the amphitheater entrance"); 37 Room vAmphitheaterEntrance = new Room("at the amphitheater entrance");
38 Room vAmphitheaterFront = new Room("in front of the amphitheater"); 38 Room vAmphitheaterFront = new Room("in ESIEE main corridor, in front of the amphitheater");
39 Room vCafeteria = new Room("in the cafeteria"); 39 Room vCafeteria = new Room("in the cafeteria");
40 Room vCafeteriaFront = new Room("in front of the cafeteria"); 40 Room vCafeteriaFront = new Room("in front of the cafeteria");
41 Room vStudentsUnionFront = new Room("in front of the Students' Union"); 41 Room vStudentsUnionFront = new Room("in front of the Students' Union");
42 Room vStudentsUnion = new Room("in the Students' Union HQ"); 42 Room vStudentsUnion = new Room("in the Students' Union HQ");
43 Room vStreetEsieespace = new Room("in the ESIEE street, in front of the ESIEEspace HQ"); 43 Room vStreetEsieespace = new Room("in the ESIEE main corridor, in front of the ESIEEspace HQ");
44 Room vEsieespaceEntrance = new Room("at the ESIEEspace HQ entrance"); 44 Room vEsieespaceEntrance = new Room("at the ESIEEspace HQ entrance");
45 Room vEsieespace = new Room("in the ESIEEspace HQ"); 45 Room vEsieespace = new Room("in the ESIEEspace HQ");
46 Room vReception = new Room("at the Reception"); 46 Room vReception = new Room("at the Reception");
47 Room vEntranceStairs = new Room("at the entrance stairs"); 47 Room vEntranceStairs = new Room("at the entrance stairs");
48 Room vRoundabout = new Room("at the roundabout"); 48 Room vRoundabout = new Room("at the roundabout");
49 Room vWingFront = new Room("in font of wing 3"); 49 Room vWingFront = new Room("in font of wing 3");
50 Room vCorridorOne = new Room("Corridor 3 main floor"); 50 Room vCorridorOne = new Room("at the corridor 3, main floor");
51 Room vStairsOne = new Room("in the stairwell at floor 1"); 51 Room vStairsOne = new Room("in the stairwell at main floor");
52 Room vStairsTwo = new Room("in the stairwell at floor 2"); 52 Room vStairsTwo = new Room("in the stairwell at second floor");
53 Room vCorridorTwo = new Room("Corridor 3 floor 2"); 53 Room vCorridorTwo = new Room("at the corridor 3, second floor");
54 Room vWcOne = new Room("in the WC at floor 1, door is closed behind you, you lose, type quit"); 54 Room vWcOne = new Room("in the WC at floor 1, door is closed behind you, you lose, type quit");
55 Room vWcTwo = new Room("in the WC at floor 2"); 55 Room vWcTwo = new Room("in the WC at floor 2");
56 Room vCorridorTwoOffice = new Room("in front of the office at floor 2"); 56 Room vCorridorTwoOffice = new Room("in front of the office at floor 2");
57 Room vOffice = new Room("in the office number 3254"); 57 Room vOffice = new Room("in the office number 3254 (corridor 3, floor 2, right side 5, room 4)");
58 58
59 // connect rooms (N, S, E, W) 59 // connect rooms (N, S, E, W)
60 vAmphitheaterSeat.setExits(vAmphitheaterStage, null, null, null); 60 vAmphitheaterSeat.setExits(vAmphitheaterStage, null, null, null);
@@ -139,8 +139,8 @@ public class Game {
139 } 139 }
140 140
141 private void printWelcome() { 141 private void printWelcome() {
142 System.out.println("Welcome to the World of Zuul!"); 142 System.out.println("Welcome to ESIEEquest");
143 System.out.println("World of Zuul is a new, incredibly boring adventure game."); 143 System.out.println("ESIEEquest is a new, incredibly surprising adventure game.");
144 System.out.println("Type 'help' if you need help."); 144 System.out.println("Type 'help' if you need help.");
145 System.out.println(""); 145 System.out.println("");
146 } 146 }