[LTC] Implementations part 2/4 (#11470)

* Aragorn, Hornburg Hero
* Minas Morgul, Dark Fortress
* Rohirrim Chargers
This commit is contained in:
ssk97 2023-11-27 20:41:20 -08:00 committed by GitHub
parent 5adc350eed
commit 2abe61643c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 326 additions and 1 deletions

View file

@ -177,6 +177,7 @@ public enum CounterType {
QUEST("quest"),
SILVER("silver"),
SCREAM("scream"),
SHADOW("shadow"),
SHELL("shell"),
SHIELD("shield"),
SHRED("shred"),
@ -312,6 +313,8 @@ public enum CounterType {
return new AbilityCounter(new MenaceAbility(), amount);
case REACH:
return new AbilityCounter(ReachAbility.getInstance(), amount);
case SHADOW:
return new AbilityCounter(ShadowAbility.getInstance(), amount);
case TRAMPLE:
return new AbilityCounter(TrampleAbility.getInstance(), amount);
case VIGILANCE: