mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Merge pull request #2228 from spjspj/master
spjspj - Slight fix for colours of tokens
This commit is contained in:
commit
41ff4cf595
2 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue