mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Nadir Kraken
This commit is contained in:
parent
62d588ac0e
commit
8b8a05d1c9
4 changed files with 74 additions and 0 deletions
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue