mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
[ONE] Implement Tyrranax Atrocity
This commit is contained in:
parent
fb6c831d4d
commit
7bb8d17be9
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/t/TyrranaxAtrocity.java
Normal file
41
Mage.Sets/src/mage/cards/t/TyrranaxAtrocity.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.abilities.keyword.ToxicAbility;
|
||||
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 TyrranaxAtrocity extends CardImpl {
|
||||
|
||||
public TyrranaxAtrocity(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}{G}");
|
||||
|
||||
this.subtype.add(SubType.PHYREXIAN);
|
||||
this.subtype.add(SubType.DINOSAUR);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
||||
// Toxic 3
|
||||
this.addAbility(new ToxicAbility(3));
|
||||
}
|
||||
|
||||
private TyrranaxAtrocity(final TyrranaxAtrocity card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TyrranaxAtrocity copy() {
|
||||
return new TyrranaxAtrocity(this);
|
||||
}
|
||||
}
|
|
@ -199,6 +199,7 @@ public final class PhyrexiaAllWillBeOne extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Titanic Growth", 187, Rarity.COMMON, mage.cards.t.TitanicGrowth.class));
|
||||
cards.add(new SetCardInfo("Transplant Theorist", 73, Rarity.UNCOMMON, mage.cards.t.TransplantTheorist.class));
|
||||
cards.add(new SetCardInfo("Trawler Drake", 74, Rarity.UNCOMMON, mage.cards.t.TrawlerDrake.class));
|
||||
cards.add(new SetCardInfo("Tyrranax Atrocity", 188, Rarity.COMMON, mage.cards.t.TyrranaxAtrocity.class));
|
||||
cards.add(new SetCardInfo("Tyrranax Rex", 189, Rarity.MYTHIC, mage.cards.t.TyrranaxRex.class));
|
||||
cards.add(new SetCardInfo("Tyvar's Stand", 190, Rarity.UNCOMMON, mage.cards.t.TyvarsStand.class));
|
||||
cards.add(new SetCardInfo("Tyvar, Jubilant Brawler", 218, Rarity.RARE, mage.cards.t.TyvarJubilantBrawler.class));
|
||||
|
|
Loading…
Reference in a new issue