mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fixed: Garruk Apex Predator was using the wrong image for the beast tokens. They are correctly implemented as 3/3 deathtouch black beasts, but the tokens it showed are 3/3 beasts with no abilities.
This commit is contained in:
parent
c7a349f65f
commit
21b7022515
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ class GarrukApexPredatorBeastToken extends Token {
|
|||
public GarrukApexPredatorBeastToken() {
|
||||
super("Beast", "3/3 black Beast creature token with deathtouch");
|
||||
setOriginalExpansionSetCode("M15");
|
||||
setTokenType(2);
|
||||
setTokenType(1);
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Beast");
|
||||
|
|
Loading…
Reference in a new issue