mirror of
https://github.com/correl/mage.git
synced 2025-04-14 09:09:38 -09:00
Implemented Crystacean
This commit is contained in:
parent
40b1573487
commit
aa2fb87710
2 changed files with 37 additions and 0 deletions
Mage.Sets/src/mage
36
Mage.Sets/src/mage/cards/c/Crystacean.java
Normal file
36
Mage.Sets/src/mage/cards/c/Crystacean.java
Normal file
|
@ -0,0 +1,36 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlashAbility;
|
||||
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 Crystacean extends CardImpl {
|
||||
|
||||
public Crystacean(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
||||
this.subtype.add(SubType.CRAB);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(6);
|
||||
|
||||
// Flash
|
||||
this.addAbility(FlashAbility.getInstance());
|
||||
}
|
||||
|
||||
private Crystacean(final Crystacean card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Crystacean copy() {
|
||||
return new Crystacean(this);
|
||||
}
|
||||
}
|
|
@ -94,6 +94,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Colossification", 148, Rarity.RARE, mage.cards.c.Colossification.class));
|
||||
cards.add(new SetCardInfo("Convolute", 45, Rarity.COMMON, mage.cards.c.Convolute.class));
|
||||
cards.add(new SetCardInfo("Corpse Churn", 81, Rarity.COMMON, mage.cards.c.CorpseChurn.class));
|
||||
cards.add(new SetCardInfo("Crystacean", 46, Rarity.COMMON, mage.cards.c.Crystacean.class));
|
||||
cards.add(new SetCardInfo("Crystalline Giant", 234, Rarity.RARE, mage.cards.c.CrystallineGiant.class));
|
||||
cards.add(new SetCardInfo("Cubwarden", 7, Rarity.RARE, mage.cards.c.Cubwarden.class));
|
||||
cards.add(new SetCardInfo("Cunning Nightbonder", 219, Rarity.UNCOMMON, mage.cards.c.CunningNightbonder.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue