1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 03:18:09 -09:00

[ANA] - implemented Shorecomber Crab

This commit is contained in:
Oleg Agafonov 2018-10-09 18:40:15 +04:00
parent bebc0cbfcc
commit 0fef87dd28

View file

@ -0,0 +1,32 @@
package mage.cards.s;
import mage.MageInt;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author JayDi85
*/
public final class ShorecomberCrab extends CardImpl {
public ShorecomberCrab(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{U}");
this.subtype.add(SubType.CRAB);
this.power = new MageInt(0);
this.toughness = new MageInt(4);
}
public ShorecomberCrab(final ShorecomberCrab card) {
super(card);
}
@Override
public ShorecomberCrab copy() {
return new ShorecomberCrab(this);
}
}