mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +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;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EndOfCombatTriggeredAbility;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.DestroyAllEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
@ -37,6 +40,7 @@ import mage.filter.common.FilterCreaturePermanent;
|
|||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.permanent.BlockedPredicate;
|
||||
import mage.filter.predicate.permanent.BlockingPredicate;
|
||||
import mage.game.Game;
|
||||
|
||||
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.
|
||||
this.addAbility(
|
||||
new EndOfCombatTriggeredAbility(
|
||||
new DestroyAllEffect(filter),
|
||||
new DestroyAllEffect(filter).setText("destroy each creature that blocked or was blocked this turn."),
|
||||
false
|
||||
)
|
||||
);
|
||||
|
@ -74,3 +78,4 @@ public class HeatStroke extends CardImpl {
|
|||
return new HeatStroke(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue