forked from External/mage
[FDN] Implement Quakestrider Ceratops
This commit is contained in:
parent
22fd311c59
commit
6c93b5e18f
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/q/QuakestriderCeratops.java
Normal file
32
Mage.Sets/src/mage/cards/q/QuakestriderCeratops.java
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.q;
|
||||
|
||||
import mage.MageInt;
|
||||
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 QuakestriderCeratops extends CardImpl {
|
||||
|
||||
public QuakestriderCeratops(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}{G}{G}");
|
||||
|
||||
this.subtype.add(SubType.DINOSAUR);
|
||||
this.power = new MageInt(12);
|
||||
this.toughness = new MageInt(8);
|
||||
}
|
||||
|
||||
private QuakestriderCeratops(final QuakestriderCeratops card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public QuakestriderCeratops copy() {
|
||||
return new QuakestriderCeratops(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -268,6 +268,7 @@ public final class Foundations extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Progenitus", 244, Rarity.MYTHIC, mage.cards.p.Progenitus.class));
|
||||
cards.add(new SetCardInfo("Pulse Tracker", 612, Rarity.COMMON, mage.cards.p.PulseTracker.class));
|
||||
cards.add(new SetCardInfo("Pyromancer's Goggles", 677, Rarity.MYTHIC, mage.cards.p.PyromancersGoggles.class));
|
||||
cards.add(new SetCardInfo("Quakestrider Ceratops", 110, Rarity.UNCOMMON, mage.cards.q.QuakestriderCeratops.class));
|
||||
cards.add(new SetCardInfo("Raise the Past", 22, Rarity.RARE, mage.cards.r.RaiseThePast.class));
|
||||
cards.add(new SetCardInfo("Rakdos Guildgate", 693, Rarity.COMMON, mage.cards.r.RakdosGuildgate.class));
|
||||
cards.add(new SetCardInfo("Ramos, Dragon Engine", 678, Rarity.MYTHIC, mage.cards.r.RamosDragonEngine.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue