forked from External/mage
Fixed some tokens image
This commit is contained in:
parent
dea739ecb0
commit
aeef4e1193
5 changed files with 28 additions and 59 deletions
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
|
|
@ -7,26 +5,25 @@ import mage.abilities.keyword.LifelinkAbility;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author fireshoes
|
||||
*/
|
||||
public final class CatToken2 extends TokenImpl {
|
||||
|
||||
public CatToken2() {
|
||||
this((String)null);
|
||||
}
|
||||
|
||||
public CatToken2(String setCode) {
|
||||
super("Cat", "1/1 white Cat creature token with lifelink");
|
||||
setOriginalExpansionSetCode("AKH");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.CAT);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("AKH", "M19", "IKO");
|
||||
}
|
||||
|
||||
public CatToken2(final CatToken2 token) {
|
||||
super(token);
|
||||
}
|
||||
|
|
@ -34,5 +31,5 @@ public final class CatToken2 extends TokenImpl {
|
|||
public CatToken2 copy() {
|
||||
return new CatToken2(this);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue