forked from External/mage
[TDM] Implement Rot-Curse Rakshasa
This commit is contained in:
parent
5e23afc477
commit
4c8337e0e5
4 changed files with 66 additions and 0 deletions
|
|
@ -54,6 +54,7 @@ public enum CounterType {
|
|||
CURRENCY("currency"),
|
||||
DEATH("death"),
|
||||
DEATHTOUCH("deathtouch"),
|
||||
DECAYED("decayed"),
|
||||
DEFENSE("defense"),
|
||||
DELAY("delay"),
|
||||
DEPLETION("depletion"),
|
||||
|
|
@ -315,6 +316,8 @@ public enum CounterType {
|
|||
return new BoostCounter(-2, -2, amount);
|
||||
case DEATHTOUCH:
|
||||
return new AbilityCounter(DeathtouchAbility.getInstance(), amount);
|
||||
case DECAYED:
|
||||
return new AbilityCounter(new DecayedAbility(), amount);
|
||||
case DOUBLE_STRIKE:
|
||||
return new AbilityCounter(DoubleStrikeAbility.getInstance(), amount);
|
||||
case EXALTED:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue