mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[MH3] Implement Emissary of Soulfire
This commit is contained in:
parent
ac39423832
commit
91f98086be
3 changed files with 55 additions and 0 deletions
|
|
@ -71,6 +71,7 @@ public enum CounterType {
|
|||
ENERGY("energy"),
|
||||
ENLIGHTENED("enlightened"),
|
||||
EON("eon"),
|
||||
EXALTED("exalted"),
|
||||
EXPERIENCE("experience"),
|
||||
EYEBALL("eyeball"),
|
||||
FADE("fade"),
|
||||
|
|
@ -307,6 +308,8 @@ public enum CounterType {
|
|||
return new AbilityCounter(DeathtouchAbility.getInstance(), amount);
|
||||
case DOUBLE_STRIKE:
|
||||
return new AbilityCounter(DoubleStrikeAbility.getInstance(), amount);
|
||||
case EXALTED:
|
||||
return new AbilityCounter(new ExaltedAbility(), amount);
|
||||
case FIRST_STRIKE:
|
||||
return new AbilityCounter(FirstStrikeAbility.getInstance(), amount);
|
||||
case FLYING:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue