mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +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() {
|
ZombieWizardToken() {
|
||||||
super("Zombie Wizard", "a 1/1 blue and black Zombie Wizard creature token");
|
super("Zombie Wizard", "a 1/1 blue and black Zombie Wizard creature token");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setGreen(true);
|
color.setBlue(true);
|
||||||
color.setBlack(true);
|
color.setBlack(true);
|
||||||
subtype.add("Zombie");
|
subtype.add("Zombie");
|
||||||
subtype.add("Wizard");
|
subtype.add("Wizard");
|
||||||
|
|
|
@ -78,7 +78,7 @@ class SkywiseTeachingsToken extends Token {
|
||||||
SkywiseTeachingsToken() {
|
SkywiseTeachingsToken() {
|
||||||
super("Djinn Monk", "a 2/2 blue Djinn Monk creature token with flying");
|
super("Djinn Monk", "a 2/2 blue Djinn Monk creature token with flying");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setRed(true);
|
color.setBlue(true);
|
||||||
this.subtype.add("Djinn");
|
this.subtype.add("Djinn");
|
||||||
this.subtype.add("Monk");
|
this.subtype.add("Monk");
|
||||||
power = new MageInt(2);
|
power = new MageInt(2);
|
||||||
|
|
Loading…
Reference in a new issue