mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Implemented Hackrobat
This commit is contained in:
parent
5fc7662026
commit
36ed928628
2 changed files with 59 additions and 0 deletions
58
Mage.Sets/src/mage/cards/h/Hackrobat.java
Normal file
58
Mage.Sets/src/mage/cards/h/Hackrobat.java
Normal file
|
@ -0,0 +1,58 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ColoredManaCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilitySourceEffect;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.abilities.keyword.SpectacleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Hackrobat extends CardImpl {
|
||||
|
||||
public Hackrobat(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{R}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Spectacle {B}{R}
|
||||
this.addAbility(new SpectacleAbility(this, new ManaCostsImpl("{B}{R}")));
|
||||
|
||||
// {B}: Hackrobat gains deathtouch until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
Zone.BATTLEFIELD,
|
||||
new GainAbilitySourceEffect(
|
||||
DeathtouchAbility.getInstance(),
|
||||
Duration.EndOfTurn
|
||||
), new ColoredManaCost(ColoredManaSymbol.B)
|
||||
));
|
||||
|
||||
// {R}: Hackrobat gets +2/-2 until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
Zone.BATTLEFIELD,
|
||||
new BoostSourceEffect(2, -2, Duration.EndOfTurn),
|
||||
new ColoredManaCost(ColoredManaSymbol.R)
|
||||
));
|
||||
}
|
||||
|
||||
private Hackrobat(final Hackrobat card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Hackrobat copy() {
|
||||
return new Hackrobat(this);
|
||||
}
|
||||
}
|
|
@ -72,6 +72,7 @@ public final class RavnicaAllegiance extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gruul Locket", 234, Rarity.COMMON, mage.cards.g.GruulLocket.class));
|
||||
cards.add(new SetCardInfo("Gruul Spellbreaker", 179, Rarity.RARE, mage.cards.g.GruulSpellbreaker.class));
|
||||
cards.add(new SetCardInfo("Gutterbones", 76, Rarity.RARE, mage.cards.g.Gutterbones.class));
|
||||
cards.add(new SetCardInfo("Hackrobat", 181, Rarity.UNCOMMON, mage.cards.h.Hackrobat.class));
|
||||
cards.add(new SetCardInfo("Hallowed Fountain", 251, Rarity.RARE, mage.cards.h.HallowedFountain.class));
|
||||
cards.add(new SetCardInfo("High Alert", 182, Rarity.UNCOMMON, mage.cards.h.HighAlert.class));
|
||||
cards.add(new SetCardInfo("Humongulus", 41, Rarity.COMMON, mage.cards.h.Humongulus.class));
|
||||
|
|
Loading…
Reference in a new issue