Implemented Nadir Kraken

This commit is contained in:
Evan Kranzler 2019-12-31 11:46:22 -05:00
parent 62d588ac0e
commit 8b8a05d1c9
4 changed files with 74 additions and 0 deletions

View file

@ -334,6 +334,7 @@ public enum SubType {
SURRAKAR("Surrakar", SubTypeSet.CreatureType),
SURVIVOR("Survivor", SubTypeSet.CreatureType),
// T
TENTACLE("Tentacle", SubTypeSet.CreatureType),
TETRAVITE("Tetravite", SubTypeSet.CreatureType),
THALAKOS("Thalakos", SubTypeSet.CreatureType),
THOPTER("Thopter", SubTypeSet.CreatureType),

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class TentacleToken extends TokenImpl {
public TentacleToken() {
super("Tentacle", "1/1 blue Tentacle creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.TENTACLE);
power = new MageInt(1);
toughness = new MageInt(1);
}
private TentacleToken(final TentacleToken token) {
super(token);
}
public TentacleToken copy() {
return new TentacleToken(this);
}
}