mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Xenagos, the Reveler - Fixed that the created token only was green instead of green and red.
This commit is contained in:
parent
e7b8504d52
commit
1c1e631f85
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue