diff --git a/Mage.Sets/src/mage/cards/c/CelestialDawn.java b/Mage.Sets/src/mage/cards/c/CelestialDawn.java index 10963e67a7a..f0e43ddb42c 100644 --- a/Mage.Sets/src/mage/cards/c/CelestialDawn.java +++ b/Mage.Sets/src/mage/cards/c/CelestialDawn.java @@ -57,7 +57,7 @@ import mage.sets.Commander; public class CelestialDawn extends CardImpl { public CelestialDawn(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{W}{W}"); + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}{W}"); // Lands you control are Plains. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CelestialDawnToPlainsEffect())); @@ -136,7 +136,7 @@ class CelestialDawnToWhiteEffect extends ContinuousEffectImpl { public CelestialDawnToWhiteEffect() { super(Duration.WhileOnBattlefield, Layer.ColorChangingEffects_5, SubLayer.NA, Outcome.Benefit); - staticText = "Nonland cards you own that aren't on the battlefield, spells you control, and nonland permanents you control are white"; + staticText = "Nonland permanents you control are white. The same is true for spells you control and nonland cards you own that aren't on the battlefield."; } @Override diff --git a/Mage.Sets/src/mage/cards/c/Conspiracy.java b/Mage.Sets/src/mage/cards/c/Conspiracy.java index 3b07d3c0064..d26a92a8683 100644 --- a/Mage.Sets/src/mage/cards/c/Conspiracy.java +++ b/Mage.Sets/src/mage/cards/c/Conspiracy.java @@ -77,7 +77,7 @@ class ConspiracyEffect extends ContinuousEffectImpl { public ConspiracyEffect() { super(Duration.WhileOnBattlefield, Outcome.Neutral); - staticText = "Creature cards you own that aren't on the battlefield, creature spells you control, and creatures you control are the chosen type"; + staticText = "Creatures you control are the chosen type. The same is true for creature spells you control and creature cards you own that aren't on the battlefield."; } public ConspiracyEffect(final ConspiracyEffect effect) {