mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Mark of Mutiny untaps the target creature also.
This commit is contained in:
parent
2efa882492
commit
2e13136101
1 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,7 @@ import mage.Constants.Rarity;
|
|||
import mage.abilities.effects.common.AddCountersTargetEffect;
|
||||
import mage.abilities.effects.common.GainAbilityTargetEffect;
|
||||
import mage.abilities.effects.common.GainControlTargetEffect;
|
||||
import mage.abilities.effects.common.UntapTargetEffect;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.counters.common.PlusOneCounter;
|
||||
|
@ -55,6 +56,7 @@ public class MarkofMutiny extends CardImpl<MarkofMutiny> {
|
|||
this.getSpellAbility().addEffect(new GainControlTargetEffect(Duration.EndOfTurn));
|
||||
this.getSpellAbility().addEffect(new AddCountersTargetEffect(new PlusOneCounter()));
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn));
|
||||
this.getSpellAbility().addEffect(new UntapTargetEffect());
|
||||
}
|
||||
|
||||
public MarkofMutiny (final MarkofMutiny card) {
|
||||
|
|
Loading…
Reference in a new issue