mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
[MH2] fixed Tragic Fall text and incorrect condition (fixes #7906)
This commit is contained in:
parent
67a5ca5f89
commit
d69180df97
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.abilities.condition.LockedInCondition;
|
||||
import mage.abilities.condition.common.MorbidCondition;
|
||||
import mage.abilities.condition.common.HellbentCondition;
|
||||
import mage.abilities.decorator.ConditionalContinuousEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -23,7 +23,7 @@ public final class TragicFall extends CardImpl {
|
|||
// Hellbent — That creature gets -13/-13 until end of turn instead if you have no cards in hand.
|
||||
this.getSpellAbility().addEffect(new ConditionalContinuousEffect(
|
||||
new BoostTargetEffect(-13, -13), new BoostTargetEffect(-3, -3),
|
||||
new LockedInCondition(MorbidCondition.instance), "Target creature gets -1/-1 " +
|
||||
new LockedInCondition(HellbentCondition.instance), "Target creature gets -3/-3 " +
|
||||
"until end of turn.<br><i>Hellbent</i> — That creature gets -13/-13 " +
|
||||
"until end of turn instead if you have no cards in hand"
|
||||
));
|
||||
|
|
Loading…
Reference in a new issue