mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Skeleton Ship - Fixed wrong casting cost ({B} was missing).
This commit is contained in:
parent
fef34b65f6
commit
53af114105
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue