mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
fixed Revel of the Fallen God creating incorrect tokens (fixes #5715)
This commit is contained in:
parent
4ea83bc592
commit
a4d035100c
2 changed files with 4 additions and 39 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue