mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Implemented First-Sphere Gargantua
This commit is contained in:
parent
16129a316a
commit
a2223c1afb
2 changed files with 47 additions and 0 deletions
46
Mage.Sets/src/mage/cards/f/FirstSphereGargantua.java
Normal file
46
Mage.Sets/src/mage/cards/f/FirstSphereGargantua.java
Normal file
|
@ -0,0 +1,46 @@
|
|||
package mage.cards.f;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.LoseLifeSourceControllerEffect;
|
||||
import mage.abilities.keyword.UnearthAbility;
|
||||
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 FirstSphereGargantua extends CardImpl {
|
||||
|
||||
public FirstSphereGargantua(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||
|
||||
this.subtype.add(SubType.HORROR);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// When First-Sphere Gargantua enters the battlefield, you draw a card and you lose 1 life.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1));
|
||||
ability.addEffect(new LoseLifeSourceControllerEffect(1).concatBy("and"));
|
||||
this.addAbility(ability);
|
||||
|
||||
// Unearth {2}{B}
|
||||
this.addAbility(new UnearthAbility(new ManaCostsImpl("{2}{B}")));
|
||||
}
|
||||
|
||||
private FirstSphereGargantua(final FirstSphereGargantua card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FirstSphereGargantua copy() {
|
||||
return new FirstSphereGargantua(this);
|
||||
}
|
||||
}
|
|
@ -77,6 +77,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Fiery Islet", 238, Rarity.RARE, mage.cards.f.FieryIslet.class));
|
||||
cards.add(new SetCardInfo("Firebolt", 122, Rarity.UNCOMMON, mage.cards.f.Firebolt.class));
|
||||
cards.add(new SetCardInfo("First Sliver's Chosen", 9, Rarity.UNCOMMON, mage.cards.f.FirstSliversChosen.class));
|
||||
cards.add(new SetCardInfo("First-Sphere Gargantua", 91, Rarity.COMMON, mage.cards.f.FirstSphereGargantua.class));
|
||||
cards.add(new SetCardInfo("Fists of Flame", 123, Rarity.COMMON, mage.cards.f.FistsOfFlame.class));
|
||||
cards.add(new SetCardInfo("Flusterstorm", 255, Rarity.RARE, mage.cards.f.Flusterstorm.class));
|
||||
cards.add(new SetCardInfo("Force of Despair", 92, Rarity.RARE, mage.cards.f.ForceOfDespair.class));
|
||||
|
|
Loading…
Reference in a new issue