forked from External/mage
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:
commit
b19170f34f
5 changed files with 373 additions and 4 deletions
|
|
@ -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()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue