forked from External/mage
Implemented Soul Burn card for the two sets it's a part of: Ice Age and Invasion.
This commit is contained in:
parent
e70e7daa0f
commit
2be3f20320
5 changed files with 374 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