mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[BLB] Implement Wick, the Whorled Mind
This commit is contained in:
parent
9db54d7892
commit
21f5f93dd6
3 changed files with 139 additions and 0 deletions
29
Mage/src/main/java/mage/game/permanent/token/SnailToken.java
Normal file
29
Mage/src/main/java/mage/game/permanent/token/SnailToken.java
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
public final class SnailToken extends TokenImpl {
|
||||
|
||||
public SnailToken() {
|
||||
super("Snail Token", "1/1 black Snail creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.SNAIL);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private SnailToken(final SnailToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SnailToken copy() {
|
||||
return new SnailToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue