* Strength from the Fallen - Fixed wrong card name (was wrongly Strange of the Fallen).

This commit is contained in:
LevelX2 2014-04-21 10:15:11 +02:00
parent 772c4f5edd
commit db509c85b9

View file

@ -44,15 +44,15 @@ import mage.target.common.TargetCreaturePermanent;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class StrengthOfTheFallen extends CardImpl<StrengthOfTheFallen> { public class StrengthFromTheFallen extends CardImpl<StrengthFromTheFallen> {
public StrengthOfTheFallen(UUID ownerId) { public StrengthFromTheFallen(UUID ownerId) {
super(ownerId, 143, "Strength of the Fallen", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{1}{G}"); super(ownerId, 143, "Strength from the Fallen", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{1}{G}");
this.expansionSetCode = "JOU"; this.expansionSetCode = "JOU";
this.color.setGreen(true); this.color.setGreen(true);
// Constellation - Whenever Strength of the Fallen or another entchantment enters the battlefield under your control, target creature gets +X/+X until end of turn, where X is the number of creature cards in your graveyard. // Constellation - Whenever Strength from the Fallen or another entchantment enters the battlefield under your control, target creature gets +X/+X until end of turn, where X is the number of creature cards in your graveyard.
DynamicValue xValue = new CardsInControllerGraveyardCount(new FilterCreatureCard("creature cards")); DynamicValue xValue = new CardsInControllerGraveyardCount(new FilterCreatureCard("creature cards"));
Ability ability = new ConstellationAbility(new BoostTargetEffect(xValue, xValue, Duration.EndOfTurn, true)); Ability ability = new ConstellationAbility(new BoostTargetEffect(xValue, xValue, Duration.EndOfTurn, true));
ability.addTarget(new TargetCreaturePermanent(true)); ability.addTarget(new TargetCreaturePermanent(true));
@ -60,12 +60,12 @@ public class StrengthOfTheFallen extends CardImpl<StrengthOfTheFallen> {
} }
public StrengthOfTheFallen(final StrengthOfTheFallen card) { public StrengthFromTheFallen(final StrengthFromTheFallen card) {
super(card); super(card);
} }
@Override @Override
public StrengthOfTheFallen copy() { public StrengthFromTheFallen copy() {
return new StrengthOfTheFallen(this); return new StrengthFromTheFallen(this);
} }
} }