diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/esieequest/model/Text.java | 9 | ||||
-rw-r--r-- | src/esieequest/model/events/Quest.java | 7 |
2 files changed, 10 insertions, 6 deletions
diff --git a/src/esieequest/model/Text.java b/src/esieequest/model/Text.java index 8e916fc..4e489e5 100644 --- a/src/esieequest/model/Text.java +++ b/src/esieequest/model/Text.java | |||
@@ -3,6 +3,7 @@ package esieequest.model; | |||
3 | /** | 3 | /** |
4 | * Contains all the messages displayed by the Game. | 4 | * Contains all the messages displayed by the Game. |
5 | * | 5 | * |
6 | * @author Benoit LUBRANO DI SBARAGLIONE | ||
6 | * @author Pacien TRAN-GIRARD | 7 | * @author Pacien TRAN-GIRARD |
7 | */ | 8 | */ |
8 | public enum Text { | 9 | public enum Text { |
@@ -10,7 +11,9 @@ public enum Text { | |||
10 | // @formatter:off | 11 | // @formatter:off |
11 | 12 | ||
12 | // interface | 13 | // interface |
13 | DEFAULT_CONSOLE("Want to start a new game? Click on the 'New' button at the top left corner."), | 14 | DEFAULT_CONSOLE("Want to start a new game? Click on the 'New' button at the top left corner." |
15 | + "\nMove your cursor over the buttons to know what they do." | ||
16 | + "\nYou can also use the arrow keys!"), | ||
14 | DEFAULT_QUEST_TITLE("ESIEEquest"), | 17 | DEFAULT_QUEST_TITLE("ESIEEquest"), |
15 | CURRENT_QUEST_PREFIX("Current quest: "), | 18 | CURRENT_QUEST_PREFIX("Current quest: "), |
16 | 19 | ||
@@ -40,10 +43,10 @@ public enum Text { | |||
40 | TURN_RIGHT_BUTTON("↱"), | 43 | TURN_RIGHT_BUTTON("↱"), |
41 | TURN_RIGHT_TOOLTIP("Turn right"), | 44 | TURN_RIGHT_TOOLTIP("Turn right"), |
42 | 45 | ||
43 | INVENTORY_BUTTON("⇱"), | 46 | INVENTORY_BUTTON("I"), |
44 | INVENTORY_TOOLTIP("Open inventory"), | 47 | INVENTORY_TOOLTIP("Open inventory"), |
45 | 48 | ||
46 | ACTION_BUTTON("⇲"), | 49 | ACTION_BUTTON("A"), |
47 | ACTION_TOOLTIP("Talk/Take item"), | 50 | ACTION_TOOLTIP("Talk/Take item"), |
48 | 51 | ||
49 | // messages | 52 | // messages |
diff --git a/src/esieequest/model/events/Quest.java b/src/esieequest/model/events/Quest.java index 4644d68..62f40bb 100644 --- a/src/esieequest/model/events/Quest.java +++ b/src/esieequest/model/events/Quest.java | |||
@@ -5,6 +5,7 @@ import lombok.Getter; | |||
5 | /** | 5 | /** |
6 | * A quest that can be completed in the game. | 6 | * A quest that can be completed in the game. |
7 | * | 7 | * |
8 | * @author Benoit LUBRANO DI SBARAGLIONE | ||
8 | * @author Pacien TRAN-GIRARD | 9 | * @author Pacien TRAN-GIRARD |
9 | */ | 10 | */ |
10 | public enum Quest { | 11 | public enum Quest { |
@@ -14,9 +15,9 @@ public enum Quest { | |||
14 | WHAT_HAPPENED("What happened?!?!"), | 15 | WHAT_HAPPENED("What happened?!?!"), |
15 | //FIND_ATHANASE("Find Athanase"), | 16 | //FIND_ATHANASE("Find Athanase"), |
16 | FEED_ATHANASE("Feed Athanase"), | 17 | FEED_ATHANASE("Feed Athanase"), |
17 | FIND_DISK("Find the Disk"), | 18 | FIND_DISK("Find the Disk at Club*Nix"), |
18 | FIND_CONSOLE("Find the Portable Console"), | 19 | FIND_CONSOLE("Find the Portable Remote Console at ESIEEspace"), |
19 | INSTALL_CONSOLE("Install the Console"), | 20 | INSTALL_CONSOLE("Find a place to install the Console"), |
20 | 21 | ||
21 | ; | 22 | ; |
22 | 23 | ||