mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Implemented Wishcoin Crab
This commit is contained in:
parent
44b22f187e
commit
bab501f343
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/w/WishcoinCrab.java
Normal file
32
Mage.Sets/src/mage/cards/w/WishcoinCrab.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.w;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.constants.SubType;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class WishcoinCrab extends CardImpl {
|
||||
|
||||
public WishcoinCrab(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
||||
this.subtype.add(SubType.CRAB);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(5);
|
||||
}
|
||||
|
||||
public WishcoinCrab(final WishcoinCrab card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public WishcoinCrab copy() {
|
||||
return new WishcoinCrab(this);
|
||||
}
|
||||
}
|
|
@ -232,6 +232,7 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Wee Dragonauts", 214, Rarity.UNCOMMON, mage.cards.w.WeeDragonauts.class));
|
||||
cards.add(new SetCardInfo("Whisper Agent", 220, Rarity.COMMON, mage.cards.w.WhisperAgent.class));
|
||||
cards.add(new SetCardInfo("Whispering Snitch", 90, Rarity.UNCOMMON, mage.cards.w.WhisperingSnitch.class));
|
||||
cards.add(new SetCardInfo("Wishcoin Crab", 60, Rarity.COMMON, mage.cards.w.WishcoinCrab.class));
|
||||
cards.add(new SetCardInfo("Wojek Bodyguard", 120, Rarity.COMMON, mage.cards.w.WojekBodyguard.class));
|
||||
cards.add(new SetCardInfo("Worldsoul Colossus", 215, Rarity.UNCOMMON, mage.cards.w.WorldsoulColossus.class));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue