mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed static text
This commit is contained in:
parent
db608dc35d
commit
c6f4332f2e
1 changed files with 6 additions and 1 deletions
|
@ -27,7 +27,10 @@
|
||||||
*/
|
*/
|
||||||
package mage.cards.h;
|
package mage.cards.h;
|
||||||
|
|
||||||
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.EndOfCombatTriggeredAbility;
|
import mage.abilities.common.EndOfCombatTriggeredAbility;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.DestroyAllEffect;
|
import mage.abilities.effects.common.DestroyAllEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
|
@ -37,6 +40,7 @@ import mage.filter.common.FilterCreaturePermanent;
|
||||||
import mage.filter.predicate.Predicates;
|
import mage.filter.predicate.Predicates;
|
||||||
import mage.filter.predicate.permanent.BlockedPredicate;
|
import mage.filter.predicate.permanent.BlockedPredicate;
|
||||||
import mage.filter.predicate.permanent.BlockingPredicate;
|
import mage.filter.predicate.permanent.BlockingPredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -59,7 +63,7 @@ public class HeatStroke extends CardImpl {
|
||||||
// At end of combat, destroy each creature that blocked or was blocked this turn.
|
// At end of combat, destroy each creature that blocked or was blocked this turn.
|
||||||
this.addAbility(
|
this.addAbility(
|
||||||
new EndOfCombatTriggeredAbility(
|
new EndOfCombatTriggeredAbility(
|
||||||
new DestroyAllEffect(filter),
|
new DestroyAllEffect(filter).setText("destroy each creature that blocked or was blocked this turn."),
|
||||||
false
|
false
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -74,3 +78,4 @@ public class HeatStroke extends CardImpl {
|
||||||
return new HeatStroke(this);
|
return new HeatStroke(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue