From f9ce42100bb0d37758fb1755422a464b35521601 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 17 May 2015 22:19:35 +0200 Subject: [PATCH] * Combust - Fixed rarity (was common instead of uncommon). --- Mage.Sets/src/mage/sets/magic2011/Combust.java | 2 +- Mage.Sets/src/mage/sets/modernmasters2015/Combust.java | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/magic2011/Combust.java b/Mage.Sets/src/mage/sets/magic2011/Combust.java index 434c4320d6f..2dce8ccec7b 100644 --- a/Mage.Sets/src/mage/sets/magic2011/Combust.java +++ b/Mage.Sets/src/mage/sets/magic2011/Combust.java @@ -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())); diff --git a/Mage.Sets/src/mage/sets/modernmasters2015/Combust.java b/Mage.Sets/src/mage/sets/modernmasters2015/Combust.java index 37c3fb46e06..49541808baa 100644 --- a/Mage.Sets/src/mage/sets/modernmasters2015/Combust.java +++ b/Mage.Sets/src/mage/sets/modernmasters2015/Combust.java @@ -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) {