forked from External/mage
made permanent tokens from framework compliant with new abstract superclass
This commit is contained in:
parent
2d922cb6af
commit
03eb170a04
341 changed files with 2690 additions and 40 deletions
|
|
@ -40,14 +40,10 @@ import mage.constants.SubType;
|
|||
public class CatToken2 extends Token {
|
||||
|
||||
public CatToken2() {
|
||||
this(null, 0);
|
||||
this((String)null);
|
||||
}
|
||||
|
||||
|
||||
public CatToken2(String setCode) {
|
||||
this(setCode, 0);
|
||||
}
|
||||
|
||||
public CatToken2(String setCode, int tokenType) {
|
||||
super("Cat", "1/1 white Cat creature token with lifelink");
|
||||
setOriginalExpansionSetCode("AKH");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
@ -57,4 +53,12 @@ public class CatToken2 extends Token {
|
|||
toughness = new MageInt(1);
|
||||
addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
public CatToken2(final CatToken2 token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public CatToken2 copy() {
|
||||
return new CatToken2(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue