aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/model/events/Quest.java
blob: 4644d686074bca6917000e21538412b02d3a5524 (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
package esieequest.model.events;

import lombok.Getter;

/**
 * A quest that can be completed in the game.
 * 
 * @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"),
	FIND_CONSOLE("Find the Portable Console"),
	INSTALL_CONSOLE("Install the Console"),
	
	;
	
	// @formatter:on

	@Getter
	private String title;

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

}