mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Refactor - moved KorAllyToken to shared area
This commit is contained in:
parent
a5c6cdd9cf
commit
9eb078842b
5 changed files with 25 additions and 31 deletions
|
|
@ -0,0 +1,18 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
|
||||
public class KorAllyToken extends Token {
|
||||
|
||||
public KorAllyToken() {
|
||||
super("Kor Ally", "1/1 white Kor Ally creature token");
|
||||
this.setExpansionSetCodeForImage("BFZ");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Kor");
|
||||
subtype.add("Ally");
|
||||
color.setWhite(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue