mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
[MH2] Implemented Gargodon
This commit is contained in:
parent
71ea4a51d6
commit
71ea01227c
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/g/Gargadon.java
Normal file
41
Mage.Sets/src/mage/cards/g/Gargadon.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.keyword.SuspendAbility;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Gargadon extends CardImpl {
|
||||
|
||||
public Gargadon(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{R}{R}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(7);
|
||||
this.toughness = new MageInt(5);
|
||||
|
||||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Suspend 4—{1}{R}
|
||||
this.addAbility(new SuspendAbility(4, new ManaCostsImpl<>("{1}{R}"), this));
|
||||
}
|
||||
|
||||
private Gargadon(final Gargadon card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Gargadon copy() {
|
||||
return new Gargadon(this);
|
||||
}
|
||||
}
|
|
@ -115,6 +115,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Fury", 126, Rarity.MYTHIC, mage.cards.f.Fury.class));
|
||||
cards.add(new SetCardInfo("Gaea's Will", 162, Rarity.RARE, mage.cards.g.GaeasWill.class));
|
||||
cards.add(new SetCardInfo("Galvanic Relay", 127, Rarity.COMMON, mage.cards.g.GalvanicRelay.class));
|
||||
cards.add(new SetCardInfo("Gargadon", 128, Rarity.COMMON, mage.cards.g.Gargadon.class));
|
||||
cards.add(new SetCardInfo("General Ferrous Rokiric", 198, Rarity.RARE, mage.cards.g.GeneralFerrousRokiric.class));
|
||||
cards.add(new SetCardInfo("Geyadrone Dihada", 199, Rarity.MYTHIC, mage.cards.g.GeyadroneDihada.class));
|
||||
cards.add(new SetCardInfo("Ghost-Lit Drifter", 45, Rarity.UNCOMMON, mage.cards.g.GhostLitDrifter.class));
|
||||
|
|
Loading…
Reference in a new issue