* Fixed tooltip text of 4 hatchling creatures.

This commit is contained in:
LevelX2 2013-06-30 19:43:06 +02:00
parent dfb74a604e
commit 9615b52a9d
4 changed files with 4 additions and 4 deletions

View file

@ -67,7 +67,7 @@ public class BelligerentHatchling extends CardImpl<BelligerentHatchling> {
// First strike
this.addAbility(FirstStrikeAbility.getInstance());
// Belligerent Hatchling enters the battlefield with four -1/-1 counters on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4))));
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4)),"with four -1/-1 counters on it"));
// Whenever you cast a red spell, remove a -1/-1 counter from Belligerent Hatchling.
this.addAbility(new SpellCastTriggeredAbility(new RemoveCounterSourceEffect(CounterType.M1M1.createInstance(1)), filterRedSpell, false));
// Whenever you cast a white spell, remove a -1/-1 counter from Belligerent Hatchling.

View file

@ -66,7 +66,7 @@ public class NoxiousHatchling extends CardImpl<NoxiousHatchling> {
this.toughness = new MageInt(6);
// Noxious Hatchling enters the battlefield with four -1/-1 counters on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4)), true));
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4)),"with four -1/-1 counters on it"));
// Wither (This deals damage to creatures in the form of -1/-1 counters.)
this.addAbility(WitherAbility.getInstance());
// Whenever you cast a black spell, remove a -1/-1 counter from Noxious Hatchling.

View file

@ -70,7 +70,7 @@ public class SturdyHatchling extends CardImpl<SturdyHatchling> {
this.toughness = new MageInt(6);
// Sturdy Hatchling enters the battlefield with four -1/-1 counters on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4))));
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4)),"with four -1/-1 counters on it"));
// {G/U}: Sturdy Hatchling gains shroud until end of turn.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(ShroudAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl("{G/U}")));
// Whenever you cast a green spell, remove a -1/-1 counter from Sturdy Hatchling.

View file

@ -67,7 +67,7 @@ public class VoraciousHatchling extends CardImpl<VoraciousHatchling> {
// Lifelink
this.addAbility(LifelinkAbility.getInstance());
// Voracious Hatchling enters the battlefield with four -1/-1 counters on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4))));
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(4)),"with four -1/-1 counters on it"));
// Whenever you cast a white spell, remove a -1/-1 counter from Voracious Hatchling.
this.addAbility(new SpellCastTriggeredAbility(new RemoveCounterSourceEffect(CounterType.M1M1.createInstance(1)), filterWhiteSpell, false));
// Whenever you cast a black spell, remove a -1/-1 counter from Voracious Hatchling.