mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
Some minor formatting for extisting cards.
This commit is contained in:
parent
718c220471
commit
c875b764a0
4 changed files with 42 additions and 37 deletions
|
|
@ -39,14 +39,20 @@ import mage.ObjectColor;
|
|||
public class WolfToken extends Token {
|
||||
|
||||
public WolfToken() {
|
||||
this("ISD");
|
||||
}
|
||||
|
||||
public WolfToken(String setCode) {
|
||||
super("Wolf", "2/2 green Wolf creature token");
|
||||
this.setOriginalExpansionSetCode(setCode);
|
||||
if (setCode.equals("ISD")) {
|
||||
setTokenType(Type.SECOND.code);
|
||||
}
|
||||
cardType.add(CardType.CREATURE);
|
||||
color = ObjectColor.GREEN;
|
||||
subtype.add("Wolf");
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
setTokenType(Type.SECOND.code);
|
||||
this.setOriginalExpansionSetCode("ISD");
|
||||
}
|
||||
|
||||
public WolfToken(Token.Type type) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue