aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/game/states/Quest.java
blob: a09ea099532c5aad855f138a21eb1dbaaf8510d0 (plain)
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
package esieequest.game.states;

import lombok.Getter;

/**
 * A quest that can be completed in the game.
 * 
 * @author Benoit LUBRANO DI SBARAGLIONE
 * @author Pacien TRAN-GIRARD
 */
public enum Quest {

	// @formatter:off
	
	WHAT_HAPPENED("What happened?!?!"),
	//FIND_ATHANASE("Find Athanase"),
	FEED_ATHANASE("Feed Athanase"),
	FIND_DISK("Find the Disk at Club*Nix"),
	FIND_CONSOLE("Find the Portable Remote Console at ESIEEspace"),
	INSTALL_CONSOLE("Find a place to install the Console"),
	USE_DISK("Insert the disk into the Console"),
	
	;
	
	// @formatter:on

	@Getter
	private String title;

	Quest(final String title) {
		this.title = title;
	}

}