* Spreading Seas - Fixed that the target did not become colorless.

This commit is contained in:
LevelX2 2015-10-09 00:11:48 +02:00
parent f90f79693e
commit 5b7105a440

View file

@ -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")));