From 523743aaf671f606b8b609f7b430abbe434612fa Mon Sep 17 00:00:00 2001 From: Clint Herron Date: Thu, 20 Apr 2017 19:03:05 -0400 Subject: [PATCH] Fixing nits from LevelX2 -- adding authorship tag and marking both enchantments as unboost effects, because both are things that you would tend to want to play on your opponents' creatures -- not your own. This should help the AI make more sensible plays when using these. --- Mage.Sets/src/mage/cards/b/Backfire.java | 4 ++-- Mage.Sets/src/mage/cards/g/GuiltyConscience.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/b/Backfire.java b/Mage.Sets/src/mage/cards/b/Backfire.java index 2f42de640df..277e0d03d18 100644 --- a/Mage.Sets/src/mage/cards/b/Backfire.java +++ b/Mage.Sets/src/mage/cards/b/Backfire.java @@ -44,7 +44,7 @@ import mage.constants.TargetController; /** * - * @author anonymous + * @author HanClinto */ public class Backfire extends CardImpl { @@ -56,7 +56,7 @@ public class Backfire extends CardImpl { // Enchant creature TargetPermanent auraTarget = new TargetCreaturePermanent(); this.getSpellAbility().addTarget(auraTarget); - this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature)); + this.getSpellAbility().addEffect(new AttachEffect(Outcome.UnboostCreature)); Ability ability = new EnchantAbility(auraTarget.getTargetName()); this.addAbility(ability); diff --git a/Mage.Sets/src/mage/cards/g/GuiltyConscience.java b/Mage.Sets/src/mage/cards/g/GuiltyConscience.java index fbc71e3d7c6..dcaf555b124 100644 --- a/Mage.Sets/src/mage/cards/g/GuiltyConscience.java +++ b/Mage.Sets/src/mage/cards/g/GuiltyConscience.java @@ -45,7 +45,7 @@ import mage.constants.Zone; /** * - * @author anonymous + * @author HanClinto */ public class GuiltyConscience extends CardImpl { @@ -57,7 +57,7 @@ public class GuiltyConscience extends CardImpl { // Enchant creature TargetPermanent auraTarget = new TargetCreaturePermanent(); this.getSpellAbility().addTarget(auraTarget); - this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature)); + this.getSpellAbility().addEffect(new AttachEffect(Outcome.UnboostCreature)); Ability ability = new EnchantAbility(auraTarget.getTargetName()); this.addAbility(ability);