- Updated some SVars.

This commit is contained in:
Sloth
2012-07-31 17:12:04 +00:00
parent fa4f795a92
commit 7dba8932c4
9 changed files with 2 additions and 8 deletions

View File

@@ -6,7 +6,6 @@ A:SP$ Counter | Cost$ X U | TargetType$ Spell | TgtPrompt$ Select target spell |
SVar:DBClash:DB$Clash | WinSubAbility$ DBMill
SVar:DBMill:DB$Mill | Defined$ TargetedController | NumCards$ 4
SVar:X:Count$xPaid
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/broken_ambitions.jpg
SetInfo:LRW|Common|http://magiccards.info/scans/en/lw/54.jpg

View File

@@ -4,7 +4,6 @@ Types:Instant
Text:no text
A:SP$ Destroy | Cost$ 2 G | ValidTgts$ Creature.withFlying | TgtPrompt$ Select target flying creature. | PrecostDesc$ Choose one - | SpellDescription$ Destroy target creature with flying,
A:SP$ Destroy | Cost$ 2 G | ValidTgts$ Artifact | TgtPrompt$ Select target artifact | SpellDescription$ or destroy target artifact.
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/crushing_vines.jpg
SetInfo:DKA|Common|http://magiccards.info/scans/en/dka/110.jpg
Oracle:Choose one - Destroy target creature with flying; or destroy target artifact.

View File

@@ -6,6 +6,7 @@ R:Event$Moved | Origin$ Graveyard | Destination$ Battlefield | ValidCard$ Creatu
R:Event$Moved | Origin$ Library | Destination$ Battlefield | ValidCard$ Creature | Prevent$ True
S:Mode$ CantBeCast | Origin$ Graveyard | Description$ Players can't cast cards in graveyards or libraries.
S:Mode$ CantBeCast | Origin$ Library
SVar:RemRandomDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/grafdiggers_cage.jpg
SetInfo:DKA|Rare|http://magiccards.info/scans/en/dka/149.jpg

View File

@@ -5,7 +5,6 @@ Text:no text
A:SP$ Counter | Cost$ X W U | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | UnlessCost$ X | References$ X | SubAbility$ DBGainLife | SpellDescription$ Counter target spell unless its controller pays X. You gain X life.
SVar:DBGainLife:DB$GainLife | LifeAmount$ X | References$ X
SVar:X:Count$xPaid
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/overrule.jpg
SetInfo:DIS|Common|http://magiccards.info/scans/en/di/120.jpg

View File

@@ -4,7 +4,6 @@ Types:Instant
Text:no text
A:SP$ Counter | Cost$ X U | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | UnlessCost$ X | References$ X | PowerSink$ True | SpellDescription$ Counter target spell unless its controller pays X. If he or she doesn't, that player taps all lands with mana abilities he or she controls and empties his or her mana pool.
SVar:X:Count$xPaid
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/power_sink.jpg
SetInfo:USG|Common|http://magiccards.info/scans/en/us/89.jpg

View File

@@ -4,7 +4,6 @@ Types:Instant
Text:no text
A:SP$ Counter | Cost$ X U | References$ X | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | Destination$ Exile | UnlessCost$ X | SpellDescription$ Counter target spell unless its controller pays X. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.
SVar:X:Count$xPaid
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/syncopate.jpg
SetInfo:ODY|Common|http://magiccards.info/scans/en/od/103.jpg

View File

@@ -6,7 +6,6 @@ A:SP$ Sacrifice | Cost$ 4 B | Defined$ Opponent | SacValid$ Creature | SacMessag
SVar:DBToken:DB$Token | TokenImage$ B 2 2 Zombie | TokenName$ Zombie | TokenColors$ Black | TokenTypes$ Creature,Zombie | TokenPower$ 2 | TokenToughness$ 2 | TokenOwner$ You | TokenAmount$ X | SubAbility$ DBCleanup
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:X:Remembered$Amount
SVar:RemAIDeck:True
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/syphon_flesh.jpg
SetInfo:COM|Uncommon|http://magiccards.info/scans/en/cmd/103.jpg

View File

@@ -6,7 +6,6 @@ A:SP$ Discard | Cost$ 3 B | Defined$ Opponent | NumCards$ 1 | Mode$ TgtChoose |
SVar:DBDraw:DB$ Draw | Cost$ 0 | NumCards$ X | SubAbility$ DBCleanup
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:X:Remembered$Amount
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/syphon_mind.jpg
SetInfo:ONS|Common|http://magiccards.info/scans/en/on/175.jpg

View File

@@ -299,7 +299,7 @@ public class AbilityFactoryCounterMagic {
if (toPay <= usableManaSources) {
// If this is a reusable Resource, feel free to play it most of
// the time
if (!sa.getPayCosts().isReusuableResource() || (MyRandom.getRandom().nextFloat() < .4)) {
if (!sa.getPayCosts().isReusuableResource() || sa.isSpell()) {
return false;
}
}