From 0566b4e67e646924c0d75bdb7325ada11f33302f Mon Sep 17 00:00:00 2001 From: Cowboy Date: Thu, 2 Jan 2014 16:23:46 -0500 Subject: [PATCH] Revised Odyssey cards --- Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java b/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java index e04c0014e32..0bab399a1a3 100644 --- a/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java +++ b/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java @@ -73,11 +73,12 @@ public class CrashingCentaur extends CardImpl { new ConditionalContinousEffect( new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), new CardsInControllerGraveCondition(7), - "Threshold - If seven or more cards are in your graveyard, Crashing Centaur gets +2/+2")); + "Threshold - If seven or more cards are in your graveyard, {this} gets +2/+2")); Effect effect = new ConditionalContinousEffect( new GainAbilitySourceEffect(ShroudAbility.getInstance()), new CardsInControllerGraveCondition(7), "and has shroud"); thresholdAbility.addEffect(effect); + this.addAbility(thresholdAbility); }