-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCardNames.java
More file actions
22 lines (18 loc) · 842 Bytes
/
Copy pathCardNames.java
File metadata and controls
22 lines (18 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package utils;
public final class CardNames {
/* M I N I O N S */
public static final String SENTINEL = "Sentinel";
public static final String BERSERKER = "Berserker";
public static final String GOLIATH = "Goliath";
public static final String WARDEN = "Warden";
public static final String THE_RIPPER = "The Ripper";
public static final String MIRAJ = "Miraj";
public static final String THE_CURSED_ONE = "The Cursed One";
public static final String DISCIPLE = "Disciple";
/* H E R O E S */
public static final String LORD_ROYCE = "Lord Royce";
public static final String EMPRESS_THORINA = "Empress Thorina";
public static final String KING_MUDFACE = "King Mudface";
public static final String GENERAL_KOCIORAW = "General Kocioraw";
private CardNames() { }
}