Merge pull request #3045 from SickBoyWi/master

Implemented Soul Burn card for the two sets it's a part of: Ice Age a…
This commit is contained in:
Derek M 2017-04-02 12:17:32 -04:00 committed by GitHub
commit b19170f34f
5 changed files with 373 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()) {