[Minor] Formatting.

This commit is contained in:
LevelX2 2013-06-18 08:34:28 +02:00
parent e20b85b059
commit a378338bd3
3 changed files with 3 additions and 1 deletions

View file

@ -62,6 +62,7 @@ public class Earthshaker extends CardImpl<Earthshaker> {
this.color.setRed(true);
this.power = new MageInt(4);
this.toughness = new MageInt(5);
// Whenever you cast a Spirit or Arcane spell, Earthshaker deals 2 damage to each creature without flying.
this.addAbility(new SpellCastTriggeredAbility(new DamageAllEffect(new StaticValue(2) , creatureFilter), filter, false));
}

View file

@ -56,7 +56,7 @@ public class EtchedOracle extends CardImpl<EtchedOracle> {
this.power = new MageInt(0);
this.toughness = new MageInt(0);
// Sunburst
// Sunburst (This enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it.)
this.addAbility(new SunburstAbility());
// {1}, Remove four +1/+1 counters from Etched Oracle: Target player draws three cards.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardTargetEffect(3), new ManaCostsImpl("{1}"));

View file

@ -47,6 +47,7 @@ public class ChainReaction extends CardImpl<ChainReaction> {
this.color.setRed(true);
// Chain Reaction deals X damage to each creature, where X is the number of creatures on the battlefield.
this.getSpellAbility().addEffect(new DamageAllEffect(new PermanentsOnBattlefieldCount(new FilterCreaturePermanent()), new FilterCreaturePermanent()));
}