mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[ROE] fixed Tuktuk, the Explorer token creature type (fixes #7673)
This commit is contained in:
parent
45094a82d5
commit
e0336d4d65
1 changed files with 4 additions and 5 deletions
|
@ -1,13 +1,11 @@
|
||||||
|
|
||||||
|
|
||||||
package mage.game.permanent.token;
|
package mage.game.permanent.token;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.MageInt;
|
|
||||||
import mage.constants.SuperType;
|
import mage.constants.SuperType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author spjspj
|
* @author spjspj
|
||||||
*/
|
*/
|
||||||
public final class TuktukTheReturnedToken extends TokenImpl {
|
public final class TuktukTheReturnedToken extends TokenImpl {
|
||||||
|
@ -23,6 +21,7 @@ public final class TuktukTheReturnedToken extends TokenImpl {
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
subtype.add(SubType.GOBLIN);
|
subtype.add(SubType.GOBLIN);
|
||||||
|
subtype.add(SubType.GOLEM);
|
||||||
power = new MageInt(5);
|
power = new MageInt(5);
|
||||||
toughness = new MageInt(5);
|
toughness = new MageInt(5);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue