* Images: fixed that some tokens uses wrong images of Elemental (#5834);

This commit is contained in:
Oleg Agafonov 2020-06-15 21:30:23 +04:00
parent f2f1abd0f3
commit 4006e9e909
19 changed files with 129 additions and 119 deletions

View file

@ -1,4 +1,3 @@
package mage.game.permanent.token;
import mage.MageInt;
@ -6,20 +5,19 @@ import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author LevelX2
*/
public final class TilonallisSummonerElementalToken extends TokenImpl {
public TilonallisSummonerElementalToken() {
super("Elemental", "1/1 red Elemental creature tokens");
setTokenType(2);
cardType.add(CardType.CREATURE);
subtype.add(SubType.ELEMENTAL);
color.setRed(true);
power = new MageInt(1);
toughness = new MageInt(1);
setTokenType(2);
}
public TilonallisSummonerElementalToken(final TilonallisSummonerElementalToken token) {