- Fixed Molten Influence.

This commit is contained in:
Sloth
2012-10-09 19:00:28 +00:00
parent c7388cb876
commit 0fe8abc22a
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ Name:Molten Influence
ManaCost:1 R
Types:Instant
Text:no text
A:SP$ Counter | Cost$ 1 R | TargetType$ Spell | ValidTgts$ Instant,Sorcery | TgtPrompt$ Select target Instant or Sorcery Spell | UnlessCost$ DamageYou<5> | SpellDescription$ Counter target instant or sorcery spell unless its controller has CARDNAME deal 4 damage to him or her.
A:SP$ Counter | Cost$ 1 R | TargetType$ Spell | ValidTgts$ Instant,Sorcery | TgtPrompt$ Select target Instant or Sorcery Spell | UnlessCost$ DamageYou<4> | SpellDescription$ Counter target instant or sorcery spell unless its controller has CARDNAME deal 4 damage to him or her.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/molten_influence.jpg
SetInfo:ODY|Rare|http://magiccards.info/scans/en/od/207.jpg

View File

@@ -213,7 +213,7 @@ public class ComputerUtil {
// Unless Cost gets significant bonus + 10-Payment Amount
final String unless = params.get("UnlessCost");
if (unless != null) {
if (unless != null && !unless.startsWith("Damage")) {
final int amount = AbilityFactory.calculateAmount(source, unless, sa);
final int usableManaSources = CardFactoryUtil.getUsableManaSources(ai.getOpponent());