Fixed Horizon Drake not having subtype

This commit is contained in:
magenoxx 2012-06-12 11:58:49 +04:00
parent 3c9e3de9a2
commit add5e7b685

View file

@ -28,7 +28,6 @@
package mage.sets.worldwake; package mage.sets.worldwake;
import java.util.UUID;
import mage.Constants.CardType; import mage.Constants.CardType;
import mage.Constants.Rarity; import mage.Constants.Rarity;
import mage.MageInt; import mage.MageInt;
@ -38,6 +37,8 @@ import mage.cards.CardImpl;
import mage.filter.Filter.ComparisonScope; import mage.filter.Filter.ComparisonScope;
import mage.filter.FilterCard; import mage.filter.FilterCard;
import java.util.UUID;
/** /**
* *
* @author Loki * @author Loki
@ -54,7 +55,7 @@ public class HorizonDrake extends CardImpl<HorizonDrake> {
public HorizonDrake (UUID ownerId) { public HorizonDrake (UUID ownerId) {
super(ownerId, 30, "Horizon Drake", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{U}{U}"); super(ownerId, 30, "Horizon Drake", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{U}{U}");
this.expansionSetCode = "WWK"; this.expansionSetCode = "WWK";
this.subtype.add(""); this.subtype.add("Drake");
this.color.setBlue(true); this.color.setBlue(true);
this.power = new MageInt(3); this.power = new MageInt(3);
this.toughness = new MageInt(1); this.toughness = new MageInt(1);