From ccb235a3e09bf953d5219a807eea032786fc3023 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Sun, 3 Jun 2012 15:57:00 +0400 Subject: [PATCH] Fixed Grixis Slavedriver manacost --- Mage.Sets/src/mage/sets/conflux/GrixisSlavedriver.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/sets/conflux/GrixisSlavedriver.java b/Mage.Sets/src/mage/sets/conflux/GrixisSlavedriver.java index 56afa19eb7f..99f9d85dfc7 100644 --- a/Mage.Sets/src/mage/sets/conflux/GrixisSlavedriver.java +++ b/Mage.Sets/src/mage/sets/conflux/GrixisSlavedriver.java @@ -28,7 +28,6 @@ package mage.sets.conflux; -import java.util.UUID; import mage.Constants.CardType; import mage.Constants.Rarity; import mage.MageInt; @@ -39,20 +38,21 @@ import mage.abilities.keyword.UnearthAbility; import mage.cards.CardImpl; import mage.game.permanent.token.ZombieToken; +import java.util.UUID; + /** - * * @author Loki */ public class GrixisSlavedriver extends CardImpl { public GrixisSlavedriver(UUID ownerId) { - super(ownerId, 46, "Grixis Slavedriver", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{4}{B}"); + super(ownerId, 46, "Grixis Slavedriver", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{5}{B}"); this.expansionSetCode = "CON"; this.color.setBlack(true); this.subtype.add("Zombie"); this.subtype.add("Giant"); this.power = new MageInt(4); - this.toughness = new MageInt(4); + this.toughness = new MageInt(4); this.addAbility(new LeavesBattlefieldTriggeredAbility(new CreateTokenEffect(new ZombieToken()), false)); this.addAbility(new UnearthAbility(new ManaCostsImpl("{3}{B}"))); }