Re: Battle for Zendikar spoiler season
Akoum Stonewaker:
According to Riftmarked Knight code, the proper syntax is, no idea why, "TokenKeywords$ Trample<>Haste"
Bane of Bala Ged:
First problem I see is that "Cost$ T" was accidentally left in the ability code. Try removing it, maybe it will fix the problem.
Blighted Steppe:
Replace "SVar:X:Count$TypeOnBattlefield.Creature.YouCtrl/Times.2" with "SVar:X:Count$TypeYouCtrl.Creature/Times.2"
Carrier Thrall:
Replace "When CARDNAME dies, put a 3/3 green Boar creature token onto the battlefield." with "When CARDNAME dies, put a 1/1 colorless Eldrazi Scion token onto the battlefield. It has "Sacrifice this creature. Add
to your mana pool.""
Guul Draz Overseer:
Problem is presumably here: "SVar:X:TriggeredCard.Swamp/Plus.1", but I'm not sure how to improve this code.
Halimar Tidecaller:
Not sure where the problem is, maybe "ValidTgts$ Card.YouCtrl+withAwaken" is not accepted for some reason?
Hedron Blade:
In second ability, replace "ValidBlocker$ Creature" with "ValidBlocker$ Creature.Colorless"
Infuse with the Elements:
Add "SpellDescription$" before "Converge — Put X +1/+1 counters on target creature, where X is the number of colors of mana spent to cast CARDNAME. That creature gains trample until end of turn."
Makindi Patrol:
Replace "PT:2/2" with "PT:2/3"
Mind Raker, Murk Strider, Ulamog's Reclaimer and Wasteland Strangler:
Replace "ChangesZone" with "ChangeZone"
Pathway Arrows:
Here is corrected code:
Ruin Processor:
Replace "LifeAmount$ 5 ConditionDefined$ Remembered" with "LifeAmount$ 5 | ConditionDefined$ Remembered"
Touch of the Void:
Replace "Cost$ 5 R R" with "Cost$ 2 R"
Ugin's Insight:
Replace "Cost$ U" with "Cost$ 3 U U"
Unnatural Aggression -- not sure where's the problem.
Vampiric Rites:
Add "ManaCost:B" after the name.
According to Riftmarked Knight code, the proper syntax is, no idea why, "TokenKeywords$ Trample<>Haste"
Bane of Bala Ged:
First problem I see is that "Cost$ T" was accidentally left in the ability code. Try removing it, maybe it will fix the problem.
Blighted Steppe:
Replace "SVar:X:Count$TypeOnBattlefield.Creature.YouCtrl/Times.2" with "SVar:X:Count$TypeYouCtrl.Creature/Times.2"
Carrier Thrall:
Replace "When CARDNAME dies, put a 3/3 green Boar creature token onto the battlefield." with "When CARDNAME dies, put a 1/1 colorless Eldrazi Scion token onto the battlefield. It has "Sacrifice this creature. Add
to your mana pool.""Guul Draz Overseer:
Problem is presumably here: "SVar:X:TriggeredCard.Swamp/Plus.1", but I'm not sure how to improve this code.
Halimar Tidecaller:
Not sure where the problem is, maybe "ValidTgts$ Card.YouCtrl+withAwaken" is not accepted for some reason?
Hedron Blade:
In second ability, replace "ValidBlocker$ Creature" with "ValidBlocker$ Creature.Colorless"
Infuse with the Elements:
Add "SpellDescription$" before "Converge — Put X +1/+1 counters on target creature, where X is the number of colors of mana spent to cast CARDNAME. That creature gains trample until end of turn."
Makindi Patrol:
Replace "PT:2/2" with "PT:2/3"
Mind Raker, Murk Strider, Ulamog's Reclaimer and Wasteland Strangler:
Replace "ChangesZone" with "ChangeZone"
Pathway Arrows:
Here is corrected code:
- Code: Select all
Name:Pathway Arrows
ManaCost:1
Types:Artifact Equipment
S:Mode$ Continuous | Affected$ Card.EquippedBy | AddAbility$ Damage | AddSVar$ PathwayTapAll,PathwayCleanup | Description$ Equipped creature has "{2}, {T}: This creature deals 1 damage to target creature. If a colorless creature is dealt damage this way, tap it."
SVar:Damage:AB$DealDamage | Cost$ 2 T | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumDmg$ 1 | RememberDamaged$ True | SubAbility$ PathwayTapAll | SpellDescription$ CARDNAME deals 1 damage to target creature. If a colorless creature is dealt damage this way, tap it.
SVar:PathwayTapAll:DB$ TapAll | ValidCards$ Creature.IsRemembered+Colorless | SubAbility$ PathwayCleanup
SVar:PathwayCleanup:DB$ Cleanup | ClearRemembered$ True
K:Equip 2
SVar:NonStackingAttachEffect:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/pathway_arrows.jpg
Oracle:Equipped creature has "{2}, {T}: This creature deals 1 damage to target creature. If a colorless creature is dealt damage this way, tap it."\nEquip {2}
Ruin Processor:
Replace "LifeAmount$ 5 ConditionDefined$ Remembered" with "LifeAmount$ 5 | ConditionDefined$ Remembered"
Touch of the Void:
Replace "Cost$ 5 R R" with "Cost$ 2 R"
Ugin's Insight:
Replace "Cost$ U" with "Cost$ 3 U U"
Unnatural Aggression -- not sure where's the problem.
Vampiric Rites:
Add "ManaCost:B" after the name.