aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/model/events/Quest.java
blob: ac523e22b65d65d95a589038778029ea514274b2 (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_TRANSPONDER("Find the Transponder"),
	ACTIVATE_TRANSPONDER("Activate the Transponder"),
	
	;
	
	// @formatter:on

	@Getter
	private String title;

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

}