Implement [REX] Owen Grady, Raptor Trainer (#12094)

This commit is contained in:
jimga150 2024-04-12 19:41:27 -04:00 committed by GitHub
parent b141fdea2c
commit 96939b31eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 134 additions and 0 deletions

View file

@ -94,6 +94,7 @@ public enum CounterType {
GOLD("gold"),
GROWTH("growth"),
HARMONY("harmony"),
HASTE("haste"),
HATCHLING("hatchling"),
HEALING("healing"),
HEXPROOF("hexproof"),
@ -323,6 +324,8 @@ public enum CounterType {
return new AbilityCounter(ShadowAbility.getInstance(), amount);
case TRAMPLE:
return new AbilityCounter(TrampleAbility.getInstance(), amount);
case HASTE:
return new AbilityCounter(HasteAbility.getInstance(), amount);
case VIGILANCE:
return new AbilityCounter(VigilanceAbility.getInstance(), amount);
default: