Merge pull request #2228 from spjspj/master

spjspj - Slight fix for colours of tokens
This commit is contained in:
spjspj 2016-09-06 01:43:35 +10:00 committed by GitHub
commit 41ff4cf595
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ class ZombieWizardToken extends Token {
ZombieWizardToken() {
super("Zombie Wizard", "a 1/1 blue and black Zombie Wizard creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
color.setBlue(true);
color.setBlack(true);
subtype.add("Zombie");
subtype.add("Wizard");

View file

@ -78,7 +78,7 @@ class SkywiseTeachingsToken extends Token {
SkywiseTeachingsToken() {
super("Djinn Monk", "a 2/2 blue Djinn Monk creature token with flying");
cardType.add(CardType.CREATURE);
color.setRed(true);
color.setBlue(true);
this.subtype.add("Djinn");
this.subtype.add("Monk");
power = new MageInt(2);