Fix incorrect CardTypes

This commit is contained in:
Neil Gentleman 2015-10-19 03:17:17 -07:00
parent 77c1b827bd
commit 7e9205e909
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ import mage.target.common.TargetCreaturePermanent;
public class UnearthlyBlizzard extends CardImpl { public class UnearthlyBlizzard extends CardImpl {
public UnearthlyBlizzard(UUID ownerId) { public UnearthlyBlizzard(UUID ownerId) {
super(ownerId, 196, "Unearthly Blizzard", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{R}"); super(ownerId, 196, "Unearthly Blizzard", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{2}{R}");
this.expansionSetCode = "CHK"; this.expansionSetCode = "CHK";
this.subtype.add("Arcane"); this.subtype.add("Arcane");

View file

@ -46,7 +46,7 @@ import mage.target.common.TargetCreaturePermanent;
public class FodderLaunch extends CardImpl { public class FodderLaunch extends CardImpl {
public FodderLaunch(UUID ownerId) { public FodderLaunch(UUID ownerId) {
super(ownerId, 114, "Fodder Launch", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{3}{B}"); super(ownerId, 114, "Fodder Launch", Rarity.UNCOMMON, new CardType[]{CardType.TRIBAL, CardType.SORCERY}, "{3}{B}");
this.expansionSetCode = "LRW"; this.expansionSetCode = "LRW";
this.subtype.add("Goblin"); this.subtype.add("Goblin");