-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlayer.java
More file actions
35 lines (33 loc) · 1.89 KB
/
Player.java
File metadata and controls
35 lines (33 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* Write a description of class Player here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Player
{
public void play()
{
System.out.println("Disclaimer from the creator: This story is based on the concept of the organization “Cicada 3301”, but it has nothing to do with the actual organization.");
System.out.println("I just took their concept, but this quest has nothing to do with the actual puzzles from Cicada 3301.");
System.out.println("During this quest, you might don’t know some stuff, and this quest is partially a review of your Java knowledge (yes, Java is included) and partially just some fun science facts.");
System.out.println("When the game asks you to type a name or something, type it all lowercase! Otherwise, your answer will not count");
System.out.println("Lastly, if you want to end the game, just type exit. If you want to get a clue/hint (you have 5 of them throughout the game), type help");
System.out.println("In addition, when there is a series of questios in the challenge, you'll get the clues for all those questions");
System.out.println("Enjoy");
System.out.println("");
System.out.println("You are in 2012. Most of the people are talking about a mystery of “Cicada 3301”. ");
System.out.println("Your friend is one of the people who are trying to solve the puzzles and finding the organizations and stuck at the very beginning.");
System.out.println("Since you have nothing else to do, you decide to try it yourself. Why don’t we start this journey?");
challenge1.main();
challenge2.main();
challenge3.main();
challenge4.main();
challenge5.main();
challenge6.main();
challenge7.main();
challenge8.main();
challenge9.main();
challenge10.main();
}
}