From 53af114105aaaac98306034cb3a65f9cda399f72 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 19 Oct 2015 08:32:55 +0200 Subject: [PATCH] * Skeleton Ship - Fixed wrong casting cost ({B} was missing). --- Mage.Sets/src/mage/sets/iceage/SkeletonShip.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/iceage/SkeletonShip.java b/Mage.Sets/src/mage/sets/iceage/SkeletonShip.java index 38a31f5b63..78053e9913 100644 --- a/Mage.Sets/src/mage/sets/iceage/SkeletonShip.java +++ b/Mage.Sets/src/mage/sets/iceage/SkeletonShip.java @@ -51,7 +51,7 @@ import mage.target.common.TargetCreaturePermanent; public class SkeletonShip extends CardImpl { public SkeletonShip(UUID ownerId) { - super(ownerId, 379, "Skeleton Ship", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}"); + super(ownerId, 379, "Skeleton Ship", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}{B}"); this.expansionSetCode = "ICE"; this.supertype.add("Legendary"); this.subtype.add("Skeleton"); @@ -62,7 +62,7 @@ public class SkeletonShip extends CardImpl { this.addAbility(new ControlsPermanentsControllerTriggeredAbility( new FilterLandPermanent("Island", "no Islands"), Filter.ComparisonType.Equal, 0, new SacrificeSourceEffect())); - + // {tap}: Put a -1/-1 counter on target creature. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersTargetEffect(CounterType.M1M1.createInstance()), new TapSourceCost()); ability.addTarget(new TargetCreaturePermanent());