mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +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 {
|
||||
|
@ -15,7 +13,7 @@ public final class TuktukTheReturnedToken extends TokenImpl {
|
|||
public TuktukTheReturnedToken() {
|
||||
this("ROE");
|
||||
}
|
||||
|
||||
|
||||
public TuktukTheReturnedToken(String setCode) {
|
||||
super("Tuktuk the Returned", "legendary 5/5 colorless Goblin Golem artifact creature token");
|
||||
setOriginalExpansionSetCode(setCode);
|
||||
|
@ -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