mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Implemented Voracious Typhon
This commit is contained in:
parent
1e9e19606a
commit
cb6815d2af
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/v/VoraciousTyphon.java
Normal file
41
Mage.Sets/src/mage/cards/v/VoraciousTyphon.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.v;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EscapesWithAbility;
|
||||
import mage.abilities.keyword.EscapeAbility;
|
||||
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 VoraciousTyphon extends CardImpl {
|
||||
|
||||
public VoraciousTyphon(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{G}");
|
||||
|
||||
this.subtype.add(SubType.SNAKE);
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Escape—{5}{G}{G}, Exile four other cards from your graveyard.
|
||||
this.addAbility(new EscapeAbility(this, "{5}{G}{G}", 4));
|
||||
|
||||
// Voracious Typhon escapes with three +1/+1 counters on it.
|
||||
this.addAbility(new EscapesWithAbility(3));
|
||||
}
|
||||
|
||||
private VoraciousTyphon(final VoraciousTyphon card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VoraciousTyphon copy() {
|
||||
return new VoraciousTyphon(this);
|
||||
}
|
||||
}
|
|
@ -219,6 +219,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Unknown Shores", 249, Rarity.COMMON, mage.cards.u.UnknownShores.class));
|
||||
cards.add(new SetCardInfo("Vexing Gull", 79, Rarity.COMMON, mage.cards.v.VexingGull.class));
|
||||
cards.add(new SetCardInfo("Victory's Envoy", 289, Rarity.RARE, mage.cards.v.VictorysEnvoy.class));
|
||||
cards.add(new SetCardInfo("Voracious Typhon", 203, Rarity.COMMON, mage.cards.v.VoraciousTyphon.class));
|
||||
cards.add(new SetCardInfo("Warden of the Chained", 230, Rarity.UNCOMMON, mage.cards.w.WardenOfTheChained.class));
|
||||
cards.add(new SetCardInfo("Wavebreak Hippocamp", 80, Rarity.RARE, mage.cards.w.WavebreakHippocamp.class));
|
||||
cards.add(new SetCardInfo("Whirlwind Denial", 81, Rarity.UNCOMMON, mage.cards.w.WhirlwindDenial.class));
|
||||
|
|
Loading…
Reference in a new issue