mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
[DFT] Implement Terrian, World Tyrant
This commit is contained in:
parent
036cdbd9cd
commit
04d4b25cf3
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/t/TerrianWorldTyrant.java
Normal file
35
Mage.Sets/src/mage/cards/t/TerrianWorldTyrant.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TerrianWorldTyrant extends CardImpl {
|
||||
|
||||
public TerrianWorldTyrant(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{G}{G}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.DINOSAUR);
|
||||
this.subtype.add(SubType.OOZE);
|
||||
this.power = new MageInt(9);
|
||||
this.toughness = new MageInt(7);
|
||||
}
|
||||
|
||||
private TerrianWorldTyrant(final TerrianWorldTyrant card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TerrianWorldTyrant copy() {
|
||||
return new TerrianWorldTyrant(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -112,6 +112,7 @@ public final class Aetherdrift extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Sunbillow Verge", 264, Rarity.RARE, mage.cards.s.SunbillowVerge.class));
|
||||
cards.add(new SetCardInfo("Swamp", 274, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Swiftwater Cliffs", 265, Rarity.COMMON, mage.cards.s.SwiftwaterCliffs.class));
|
||||
cards.add(new SetCardInfo("Terrian, World Tyrant", 182, Rarity.UNCOMMON, mage.cards.t.TerrianWorldTyrant.class));
|
||||
cards.add(new SetCardInfo("The Last Ride", 94, Rarity.MYTHIC, mage.cards.t.TheLastRide.class));
|
||||
cards.add(new SetCardInfo("The Speed Demon", 105, Rarity.MYTHIC, mage.cards.t.TheSpeedDemon.class));
|
||||
cards.add(new SetCardInfo("Thopter Fabricator", 68, Rarity.RARE, mage.cards.t.ThopterFabricator.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue