|
@@ -32,9 +32,9 @@ public class Explore implements Action {
|
|
|
var objects = room.getObjects();
|
|
var objects = room.getObjects();
|
|
|
var passages = room.getPassages();
|
|
var passages = room.getPassages();
|
|
|
|
|
|
|
|
- Output.print(room.getName(), Color.BLUEVIOLET);
|
|
|
|
|
|
|
+ Output.print(room.getName(), Color.ALICEBLUE);
|
|
|
Output.printLine();
|
|
Output.printLine();
|
|
|
- Output.print(room.getDescription(), Color.BLUE);
|
|
|
|
|
|
|
+ Output.print(room.getDescription(), Color.LIGHTBLUE);
|
|
|
|
|
|
|
|
if (room.getEnemy().isPresent()) {
|
|
if (room.getEnemy().isPresent()) {
|
|
|
if (room.getEnemy().get().isAlive()) {
|
|
if (room.getEnemy().get().isAlive()) {
|
|
@@ -96,7 +96,7 @@ public class Explore implements Action {
|
|
|
|
|
|
|
|
if (passage.isSeeThrough() || passage.getOtherRoom(room).wasEntered()) {
|
|
if (passage.isSeeThrough() || passage.getOtherRoom(room).wasEntered()) {
|
|
|
Output.print(" - leading to ");
|
|
Output.print(" - leading to ");
|
|
|
- Output.print(passage.getOtherRoom(room).getName(), Color.BLUE);
|
|
|
|
|
|
|
+ Output.print(passage.getOtherRoom(room).getName(), Color.LIGHTBLUE);
|
|
|
} else {
|
|
} else {
|
|
|
Output.print(" - it's impossible to see what's on the other side", Color.RED);
|
|
Output.print(" - it's impossible to see what's on the other side", Color.RED);
|
|
|
}
|
|
}
|