mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Fixed Molten Influence.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user