mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fixed Hellspark Elemental not having trample
This commit is contained in:
parent
a293da3095
commit
13e023ca7a
1 changed files with 4 additions and 3 deletions
|
@ -28,7 +28,6 @@
|
||||||
|
|
||||||
package mage.sets.conflux;
|
package mage.sets.conflux;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.Constants.CardType;
|
import mage.Constants.CardType;
|
||||||
import mage.Constants.Rarity;
|
import mage.Constants.Rarity;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
|
@ -36,13 +35,15 @@ import mage.abilities.common.OnEventTriggeredAbility;
|
||||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
import mage.abilities.effects.common.SacrificeSourceEffect;
|
import mage.abilities.effects.common.SacrificeSourceEffect;
|
||||||
import mage.abilities.keyword.HasteAbility;
|
import mage.abilities.keyword.HasteAbility;
|
||||||
|
import mage.abilities.keyword.TrampleAbility;
|
||||||
import mage.abilities.keyword.UnearthAbility;
|
import mage.abilities.keyword.UnearthAbility;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.game.events.GameEvent.EventType;
|
import mage.game.events.GameEvent.EventType;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class HellsparkElemental extends CardImpl<HellsparkElemental> {
|
public class HellsparkElemental extends CardImpl<HellsparkElemental> {
|
||||||
|
@ -55,10 +56,10 @@ public class HellsparkElemental extends CardImpl<HellsparkElemental> {
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
|
this.addAbility(TrampleAbility.getInstance());
|
||||||
this.addAbility(HasteAbility.getInstance());
|
this.addAbility(HasteAbility.getInstance());
|
||||||
this.addAbility(new OnEventTriggeredAbility(EventType.END_TURN_STEP_PRE, "beginning of the end step", true, new SacrificeSourceEffect()));
|
this.addAbility(new OnEventTriggeredAbility(EventType.END_TURN_STEP_PRE, "beginning of the end step", true, new SacrificeSourceEffect()));
|
||||||
this.addAbility(new UnearthAbility(new ManaCostsImpl("{1}{R}")));
|
this.addAbility(new UnearthAbility(new ManaCostsImpl("{1}{R}")));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public HellsparkElemental(final HellsparkElemental card) {
|
public HellsparkElemental(final HellsparkElemental card) {
|
||||||
|
|
Loading…
Reference in a new issue