forked from External/mage
replaced all instances of converted mana cost with mana value
This commit is contained in:
parent
cb0df438dd
commit
a61d5543fa
610 changed files with 1781 additions and 1796 deletions
|
|
@ -628,7 +628,7 @@ public class Spell extends StackObjImpl implements Card {
|
|||
* @return
|
||||
*/
|
||||
@Override
|
||||
public int getConvertedManaCost() {
|
||||
public int getManaValue() {
|
||||
int cmc = 0;
|
||||
if (faceDown) {
|
||||
return 0;
|
||||
|
|
@ -636,7 +636,7 @@ public class Spell extends StackObjImpl implements Card {
|
|||
for (SpellAbility spellAbility : spellAbilities) {
|
||||
cmc += spellAbility.getConvertedXManaCost(getCard());
|
||||
}
|
||||
cmc += getCard().getManaCost().convertedManaCost();
|
||||
cmc += getCard().getManaCost().manaValue();
|
||||
return cmc;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ public class StackAbility extends StackObjImpl implements Ability {
|
|||
}
|
||||
|
||||
@Override
|
||||
public int getConvertedManaCost() {
|
||||
public int getManaValue() {
|
||||
// Activated abilities have an "activation cost" but they don't have a characteristic related to that while on the stack.
|
||||
// There are certain effects that interact with the cost to activate an ability (e.g., Training Grounds, Power Artifact)
|
||||
// but nothing that looks for that quality of an ability once it's on the stack.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue