* Cycling effects - Added missing reveal effect, added missing reminder text.

This commit is contained in:
LevelX2 2014-03-25 16:19:10 +01:00
parent 5a54488a0d
commit 294567ec3e
3 changed files with 16 additions and 12 deletions

View file

@ -47,8 +47,12 @@ public class FieryFall extends CardImpl<FieryFall> {
super(ownerId, 63, "Fiery Fall", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{5}{R}");
this.expansionSetCode = "CON";
this.color.setRed(true);
// Fiery Fall deals 5 damage to target creature.
this.getSpellAbility().addEffect(new DamageTargetEffect(5));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
// Basic landcycling {1}{R} ({1}{R}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)
this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{R}")));
}