mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
- Fixed #8102
This commit is contained in:
parent
98aaa78081
commit
4b43ad09f0
1 changed files with 2 additions and 1 deletions
|
@ -28,6 +28,7 @@ import static mage.filter.StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT;
|
|||
* @author TheElk801
|
||||
*/
|
||||
public final class MutualDestruction extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterControlledPermanent();
|
||||
private static final FilterPermanent filter2 = new FilterCreaturePermanent("creature (to destoy)");
|
||||
|
||||
|
@ -42,7 +43,7 @@ public final class MutualDestruction extends CardImpl {
|
|||
|
||||
// This spell has flash as long as you control a permanent with flash.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new ConditionalContinuousEffect(
|
||||
new GainAbilitySourceEffect(FlashAbility.getInstance(), Duration.Custom, true),
|
||||
new GainAbilitySourceEffect(FlashAbility.getInstance(), Duration.EndOfGame, true),
|
||||
condition, "This spell has flash as long as you control a permanent with flash."
|
||||
)).setRuleAtTheTop(true));
|
||||
|
||||
|
|
Loading…
Reference in a new issue