mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Implement [REX] Owen Grady, Raptor Trainer (#12094)
This commit is contained in:
parent
b141fdea2c
commit
96939b31eb
3 changed files with 134 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue