mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Implemented Aegis Turtle
This commit is contained in:
parent
26915ca525
commit
daf3f15afe
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/a/AegisTurtle.java
Normal file
32
Mage.Sets/src/mage/cards/a/AegisTurtle.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.a;
|
||||
|
||||
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 AegisTurtle extends CardImpl {
|
||||
|
||||
public AegisTurtle(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{U}");
|
||||
|
||||
this.subtype.add(SubType.TURTLE);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(5);
|
||||
}
|
||||
|
||||
private AegisTurtle(final AegisTurtle card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AegisTurtle copy() {
|
||||
return new AegisTurtle(this);
|
||||
}
|
||||
}
|
|
@ -64,6 +64,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
|
||||
cards.add(new SetCardInfo("Adaptive Shimmerer", 1, Rarity.COMMON, mage.cards.a.AdaptiveShimmerer.class));
|
||||
cards.add(new SetCardInfo("Adventurous Impulse", 142, Rarity.COMMON, mage.cards.a.AdventurousImpulse.class));
|
||||
cards.add(new SetCardInfo("Aegis Turtle", 39, Rarity.COMMON, mage.cards.a.AegisTurtle.class));
|
||||
cards.add(new SetCardInfo("Alert Heedbonder", 218, Rarity.UNCOMMON, mage.cards.a.AlertHeedbonder.class));
|
||||
cards.add(new SetCardInfo("Almighty Brushwagg", 143, Rarity.COMMON, mage.cards.a.AlmightyBrushwagg.class));
|
||||
cards.add(new SetCardInfo("Anticipate", 40, Rarity.COMMON, mage.cards.a.Anticipate.class));
|
||||
|
|
Loading…
Reference in a new issue