mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
[DFT] Implement Caelorna, Coral Tyrant
This commit is contained in:
parent
a4381702c7
commit
41f5a33f97
2 changed files with 35 additions and 0 deletions
34
Mage.Sets/src/mage/cards/c/CaelornaCoralTyrant.java
Normal file
34
Mage.Sets/src/mage/cards/c/CaelornaCoralTyrant.java
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
package mage.cards.c;
|
||||
|
||||
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 CaelornaCoralTyrant extends CardImpl {
|
||||
|
||||
public CaelornaCoralTyrant(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.OCTOPUS);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(8);
|
||||
}
|
||||
|
||||
private CaelornaCoralTyrant(final CaelornaCoralTyrant card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CaelornaCoralTyrant copy() {
|
||||
return new CaelornaCoralTyrant(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -48,6 +48,7 @@ public final class Aetherdrift extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Brightfield Mustang", 5, Rarity.COMMON, mage.cards.b.BrightfieldMustang.class));
|
||||
cards.add(new SetCardInfo("Brightglass Gearhulk", 191, Rarity.MYTHIC, mage.cards.b.BrightglassGearhulk.class));
|
||||
cards.add(new SetCardInfo("Bulwark Ox", 7, Rarity.RARE, mage.cards.b.BulwarkOx.class));
|
||||
cards.add(new SetCardInfo("Caelorna, Coral Tyrant", 40, Rarity.UNCOMMON, mage.cards.c.CaelornaCoralTyrant.class));
|
||||
cards.add(new SetCardInfo("Caradora, Heart of Alacria", 195, Rarity.RARE, mage.cards.c.CaradoraHeartOfAlacria.class));
|
||||
cards.add(new SetCardInfo("Clamorous Ironclad", 117, Rarity.COMMON, mage.cards.c.ClamorousIronclad.class));
|
||||
cards.add(new SetCardInfo("Cloudspire Captain", 9, Rarity.UNCOMMON, mage.cards.c.CloudspireCaptain.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue