Some minor logging and comment changes.

This commit is contained in:
LevelX2 2014-08-13 16:58:19 +02:00
parent a42318070e
commit 797ee3d945
4 changed files with 11 additions and 4 deletions

View file

@ -56,9 +56,14 @@ public class HellsparkElemental extends CardImpl {
this.power = new MageInt(3);
this.toughness = new MageInt(1);
// Trample, haste
this.addAbility(TrampleAbility.getInstance());
this.addAbility(HasteAbility.getInstance());
// At the beginning of the end step, sacrifice Hellspark Elemental.
this.addAbility(new OnEventTriggeredAbility(EventType.END_TURN_STEP_PRE, "beginning of the end step", true, new SacrificeSourceEffect()));
// Unearth {1}{R} ({1}{R}: Return this card from your graveyard to the battlefield. It gains haste. Exile it at the beginning of the next end step or if it would leave the battlefield. Unearth only as a sorcery.)
this.addAbility(new UnearthAbility(new ManaCostsImpl("{1}{R}")));
}