Implemented Soul Burn card for the two sets it's a part of: Ice Age and Invasion.

This commit is contained in:
Johnny.Hastings@gmail.com 2017-03-31 18:33:17 -05:00
parent e70e7daa0f
commit 2be3f20320
5 changed files with 374 additions and 4 deletions

View file

@ -558,7 +558,11 @@ public abstract class AbilityImpl implements Ability {
} else {
String manaSymbol = null;
if (variableManaCost.getFilter().isBlack()) {
manaSymbol = "B";
if (variableManaCost.getFilter().isRed()) {
manaSymbol = "B/R";
} else {
manaSymbol = "B";
}
} else if (variableManaCost.getFilter().isRed()) {
manaSymbol = "R";
} else if (variableManaCost.getFilter().isBlue()) {