mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Feudkiller's Verdict - Fixed missing Giant subtype of the created token.
This commit is contained in:
parent
25f6dbcfd1
commit
98627c82df
1 changed files with 4 additions and 3 deletions
|
@ -28,14 +28,14 @@
|
|||
package mage.sets.modernmasters;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.token.Token;
|
||||
import mage.players.Player;
|
||||
|
@ -114,6 +114,7 @@ class GiantWarriorToken extends Token {
|
|||
super("Warrior", "5/5 white Giant Warrior creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add("Giant");
|
||||
subtype.add("Warrior");
|
||||
power = new MageInt(5);
|
||||
toughness = new MageInt(5);
|
||||
|
|
Loading…
Reference in a new issue