fixed Revel of the Fallen God creating incorrect tokens (fixes #5715)

This commit is contained in:
Evan Kranzler 2019-04-13 20:59:14 -04:00
parent 4ea83bc592
commit a4d035100c
2 changed files with 4 additions and 39 deletions

View file

@ -1,35 +0,0 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.ObjectColor;
import mage.abilities.keyword.HasteAbility;
/**
*
* @author spjspj
*/
public final class RevelOfTheFallenGodSatyrToken extends TokenImpl {
public RevelOfTheFallenGodSatyrToken() {
super("Satyr", "2/2 red and green Satyr creature tokens with haste");
this.setOriginalExpansionSetCode("THS");
cardType.add(CardType.CREATURE);
color.setColor(ObjectColor.RED);
color.setColor(ObjectColor.GREEN);
subtype.add(SubType.SATYR);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(HasteAbility.getInstance());
}
public RevelOfTheFallenGodSatyrToken(final RevelOfTheFallenGodSatyrToken token) {
super(token);
}
public RevelOfTheFallenGodSatyrToken copy() {
return new RevelOfTheFallenGodSatyrToken(this);
}
}