* Combust - Fixed rarity (was common instead of uncommon).

This commit is contained in:
LevelX2 2015-05-17 22:19:35 +02:00
parent df9efa97b6
commit f9ce42100b
2 changed files with 3 additions and 1 deletions

View file

@ -59,7 +59,7 @@ public class Combust extends CardImpl {
public Combust(UUID ownerId) {
super(ownerId, 130, "Combust", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R}");
this.expansionSetCode = "M11";
this.color.setRed(true);
this.getSpellAbility().addEffect(new DamageTargetEffect(5, false));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantBeCounteredSourceEffect()));

View file

@ -28,6 +28,7 @@
package mage.sets.modernmasters2015;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
@ -39,6 +40,7 @@ public class Combust extends mage.sets.magic2011.Combust {
super(ownerId);
this.cardNumber = 110;
this.expansionSetCode = "MM2";
this.rarity = Rarity.UNCOMMON;
}
public Combust(final Combust card) {