MH3 10 cards (#5280)

This commit is contained in:
Simisays
2024-05-24 20:57:24 +02:00
committed by GitHub
parent 1745ab5c85
commit 6694b5a327
12 changed files with 104 additions and 1 deletions

View File

@@ -458,6 +458,7 @@ public enum CounterEnumType {
TRAMPLE("Trample"),
VIGILANCE("Vigilance")
SHADOW("Shadow")
EXALTED("Exalted")
//*/
;

View File

@@ -19,7 +19,7 @@ public class CounterType implements Comparable<CounterType>, Serializable {
// Rule 122.1b
static ImmutableList<String> keywordCounter = ImmutableList.of(
"Flying", "First Strike", "Double Strike", "Deathtouch", "Haste", "Hexproof",
"Flying", "First Strike", "Double Strike", "Deathtouch", "Exalted", "Haste", "Hexproof",
"Indestructible", "Lifelink", "Menace", "Reach", "Shadow", "Trample", "Vigilance");
private static Map<CounterEnumType, CounterType> eMap = Maps.newEnumMap(CounterEnumType.class);