mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Act of Treason - Made target mandatory.
This commit is contained in:
parent
2abeba7c47
commit
1648a3c750
1 changed files with 4 additions and 1 deletions
|
@ -49,7 +49,10 @@ public class ActOfTreason extends CardImpl<ActOfTreason> {
|
||||||
super(ownerId, 124, "Act of Treason", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{2}{R}");
|
super(ownerId, 124, "Act of Treason", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{2}{R}");
|
||||||
this.expansionSetCode = "M10";
|
this.expansionSetCode = "M10";
|
||||||
this.color.setRed(true);
|
this.color.setRed(true);
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
|
||||||
|
// Gain control of target creature until end of turn. Untap that creature.
|
||||||
|
// It gains haste until end of turn. (It can attack and {T} this turn.)
|
||||||
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
|
||||||
this.getSpellAbility().addEffect(new GainControlTargetEffect(Duration.EndOfTurn));
|
this.getSpellAbility().addEffect(new GainControlTargetEffect(Duration.EndOfTurn));
|
||||||
this.getSpellAbility().addEffect(new UntapTargetEffect());
|
this.getSpellAbility().addEffect(new UntapTargetEffect());
|
||||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn));
|
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn));
|
||||||
|
|
Loading…
Reference in a new issue