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:
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
|
@ -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);
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue