mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Fixed Grixis Slavedriver manacost
This commit is contained in:
parent
4931365229
commit
ccb235a3e0
1 changed files with 4 additions and 4 deletions
|
@ -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<GrixisSlavedriver> {
|
||||
|
||||
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}")));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue