mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed missing color to the created token of Deathpact Angel.
This commit is contained in:
parent
b731cb4e84
commit
590de413e3
1 changed files with 3 additions and 2 deletions
|
@ -91,8 +91,9 @@ class DeathpactAngelToken extends Token {
|
||||||
public DeathpactAngelToken() {
|
public DeathpactAngelToken() {
|
||||||
super("Cleric", "1/1 white and black Cleric creature token onto the battlefield. It has \"{3}{W}{B}{B}, {T}, Sacrifice this creature: Return a card named Deathpact Angel from your graveyard to the battlefield.\"");
|
super("Cleric", "1/1 white and black Cleric creature token onto the battlefield. It has \"{3}{W}{B}{B}, {T}, Sacrifice this creature: Return a card named Deathpact Angel from your graveyard to the battlefield.\"");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
|
|
||||||
color = ObjectColor.BLACK;
|
color.setWhite(true);
|
||||||
|
color.setBlack(true);
|
||||||
|
|
||||||
subtype.add("Cleric");
|
subtype.add("Cleric");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue