From a6d43b75a530f3218f7d9378b6b46f898eef0be5 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 22 Feb 2015 23:40:18 +0100 Subject: [PATCH] * Skirk Fire Marshal - Fixed that Skirk Fire Marshal could not tap Goblins with protection from red. --- Mage.Sets/src/mage/sets/onslaught/SkirkFireMarshal.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/sets/onslaught/SkirkFireMarshal.java b/Mage.Sets/src/mage/sets/onslaught/SkirkFireMarshal.java index 18d97bb224..90da98e77c 100644 --- a/Mage.Sets/src/mage/sets/onslaught/SkirkFireMarshal.java +++ b/Mage.Sets/src/mage/sets/onslaught/SkirkFireMarshal.java @@ -33,9 +33,7 @@ import mage.ObjectColor; import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.common.TapTargetCost; -import mage.abilities.effects.common.CreateTokenEffect; import mage.abilities.effects.common.DamageEverythingEffect; -import mage.abilities.effects.common.DamageTargetEffect; import mage.abilities.keyword.ProtectionAbility; import mage.cards.CardImpl; import mage.constants.CardType; @@ -69,7 +67,6 @@ public class SkirkFireMarshal extends CardImpl { this.expansionSetCode = "ONS"; this.subtype.add("Goblin"); - this.color.setRed(true); this.power = new MageInt(2); this.toughness = new MageInt(2); @@ -79,7 +76,7 @@ public class SkirkFireMarshal extends CardImpl { // Tap five untapped Goblins you control: Skirk Fire Marshal deals 10 damage to each creature and each player. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageEverythingEffect(10), - new TapTargetCost(new TargetControlledCreaturePermanent(5,5, filter, false))); + new TapTargetCost(new TargetControlledCreaturePermanent(5,5, filter, true))); this.addAbility(ability); }