mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Fixed tooltip text of 4 hatchling creatures.
This commit is contained in:
parent
dfb74a604e
commit
9615b52a9d
4 changed files with 4 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue