1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-02 03:18:09 -09:00

Fixed token type for Garruk Relentless

This commit is contained in:
magenoxx 2012-08-20 11:00:39 +04:00
parent 6531e2d569
commit 852e96c910
2 changed files with 1 additions and 1 deletions
Mage.Tests/src/test/java/org/mage/test/cards/continuous
Mage/src/mage/game/permanent/token

View file

@ -27,7 +27,6 @@ public class MasterOfThePearlTridentTest extends CardTestPlayerBase {
setStopAt(3, Constants.PhaseStep.END_TURN);
execute();
assertPermanentCount(playerA, "Master of the Pearl Trident", 1);
assertLife(playerB, 18);
assertPowerToughness(playerA, "Merfolk of the Pearl Trident", 2, 2);

View file

@ -45,6 +45,7 @@ public class WolfToken extends Token {
subtype.add("Wolf");
power = new MageInt(2);
toughness = new MageInt(2);
setTokenType(Type.SECOND.code);
}
public WolfToken(Token.Type type) {