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:
parent
bebc0cbfcc
commit
0fef87dd28
1 changed files with 32 additions and 0 deletions
32
Mage.Sets/src/mage/cards/s/ShorecomberCrab.java
Normal file
32
Mage.Sets/src/mage/cards/s/ShorecomberCrab.java
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue