mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Implemented Skitter Eel
This commit is contained in:
parent
fabcb8c137
commit
40bf3a2000
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/s/SkitterEel.java
Normal file
37
Mage.Sets/src/mage/cards/s/SkitterEel.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.AdaptAbility;
|
||||
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 SkitterEel extends CardImpl {
|
||||
|
||||
public SkitterEel(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
||||
this.subtype.add(SubType.FISH);
|
||||
this.subtype.add(SubType.CRAB);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// {2}{U}: Adapt 2. (If this creature has no +1/+1 counters on it, put two +1/+1 counters on it.
|
||||
this.addAbility(new AdaptAbility(2, "{2}{U}"));
|
||||
}
|
||||
|
||||
private SkitterEel(final SkitterEel card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SkitterEel copy() {
|
||||
return new SkitterEel(this);
|
||||
}
|
||||
}
|
|
@ -198,6 +198,7 @@ public final class RavnicaAllegiance extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Skarrgan Hellkite", 114, Rarity.MYTHIC, mage.cards.s.SkarrganHellkite.class));
|
||||
cards.add(new SetCardInfo("Skatewing Spy", 52, Rarity.UNCOMMON, mage.cards.s.SkatewingSpy.class));
|
||||
cards.add(new SetCardInfo("Skewer the Critics", 115, Rarity.COMMON, mage.cards.s.SkewerTheCritics.class));
|
||||
cards.add(new SetCardInfo("Skitter Eel", 53, Rarity.COMMON, mage.cards.s.SkitterEel.class));
|
||||
cards.add(new SetCardInfo("Sky Tether", 21, Rarity.UNCOMMON, mage.cards.s.SkyTether.class));
|
||||
cards.add(new SetCardInfo("Smelt-Ward Ignus", 116, Rarity.UNCOMMON, mage.cards.s.SmeltWardIgnus.class));
|
||||
cards.add(new SetCardInfo("Smothering Tithe", 22, Rarity.RARE, mage.cards.s.SmotheringTithe.class));
|
||||
|
|
Loading…
Reference in a new issue