[TDM] Implement Rot-Curse Rakshasa

This commit is contained in:
theelk801 2025-04-09 13:52:07 -04:00
parent 5e23afc477
commit 4c8337e0e5
4 changed files with 66 additions and 0 deletions

View file

@ -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: