* Xenagos, the Reveler - Fixed that the created token only was green instead of green and red.

This commit is contained in:
LevelX2 2014-02-18 00:39:34 +01:00
parent e7b8504d52
commit 1c1e631f85

View file

@ -32,7 +32,6 @@ import java.util.Set;
import java.util.UUID; import java.util.UUID;
import mage.MageInt; import mage.MageInt;
import mage.Mana; import mage.Mana;
import mage.ObjectColor;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.LoyaltyAbility; import mage.abilities.LoyaltyAbility;
import mage.abilities.common.EntersBattlefieldAbility; import mage.abilities.common.EntersBattlefieldAbility;
@ -153,8 +152,8 @@ class XenagosSatyrToken extends Token {
public XenagosSatyrToken() { public XenagosSatyrToken() {
super("Satyr", "2/2 red and green Satyr creature token with haste"); super("Satyr", "2/2 red and green Satyr creature token with haste");
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
color = ObjectColor.RED; color.setRed(true);
color = ObjectColor.GREEN; color.setGreen(true);
subtype.add("Satyr"); subtype.add("Satyr");
power = new MageInt(2); power = new MageInt(2);
toughness = new MageInt(2); toughness = new MageInt(2);