forked from External/mage
* Spreading Seas - Fixed that the target did not become colorless.
This commit is contained in:
parent
f90f79693e
commit
5b7105a440
1 changed files with 3 additions and 0 deletions
|
|
@ -55,13 +55,16 @@ public class SpreadingSeas extends CardImpl {
|
|||
|
||||
this.subtype.add("Aura");
|
||||
|
||||
// Enchant land
|
||||
TargetPermanent auraTarget = new TargetLandPermanent();
|
||||
this.getSpellAbility().addTarget(auraTarget);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.Detriment));
|
||||
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
||||
this.addAbility(ability);
|
||||
|
||||
// When Spreading Seas enters the battlefield, draw a card.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1), false));
|
||||
|
||||
// Enchanted land is an Island.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesBasicLandEnchantedEffect("Island")));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue