mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +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;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class TuktukTheReturnedToken extends TokenImpl {
|
||||
|
@ -23,6 +21,7 @@ public final class TuktukTheReturnedToken extends TokenImpl {
|
|||
cardType.add(CardType.CREATURE);
|
||||
addSuperType(SuperType.LEGENDARY);
|
||||
subtype.add(SubType.GOBLIN);
|
||||
subtype.add(SubType.GOLEM);
|
||||
power = new MageInt(5);
|
||||
toughness = new MageInt(5);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue