Dragons of Tarkir Spoiler Season
Post MTG Forge Related Programming Questions Here
Moderators: timmermac, Agetian, friarsol, Blacksmith, KrazyTheFox, CCGHQ Admins
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 12 Mar 2015, 15:52
Clone Legion - I guess it could be implemented using RepeatEach like Curse of the Swine, but I'm not sure if I can do it at this point.
- Code: Select all
Name:Dromoka's Command
ManaCost:G W
Types:Instant
A:SP$ Charm | Cost$ G W | Choices$ DBPrevent,DBSacrifice,DBPutCounter,DBPump | CharmNum$ 2 | SpellDescription$ Choose two - Prevent all damage target instant or sorcery spell would deal this turn; Target player sacrifices an enchantment; Put a +1/+1 counter on target creature; Target creature you control fights target creature you don't control.
SVar:DBPrevent:DB$ Effect | TargetType$ Spell | ValidTgts$ Instant,Sorcery | TgtPrompt$ Select target instant or sorcery spell to prevent damage from | ReplacementEffects$ PreventDmg | Triggers$ TargetMoved | SVars$ ExileEffect | RememberObjects$ Targeted | SpellDescription$ Prevent all damage target instant or sorcery spell would deal this turn.
SVar:PreventDmg:Event$ DamageDone | ValidSource$ Card.IsRemembered | PreventionEffect$ True | Description$ Prevent all damage that would be dealt by target instant or sorcery spell this turn.
SVar:TargetMoved:Mode$ ChangesZone | ValidCard$ Card.IsRemembered | Execute$ ExileEffect | TriggerZones$ Command | Static$ True
SVar:ExileEffect:DB$ ChangeZone | Defined$ Self | Origin$ Command | Destination$ Exile
SVar:DBSacrifice:DB$ Sacrifice | ValidTgts$ Player | SacValid$ Enchantment | SacMessage$ Enchantment | SpellDescription$ Target player sacrifices an enchantment.
SVar:DBPutCounter:DB$ PutCounter | ValidTgts$ Creature | TgtPrompt$ Select target creature | CounterType$ P1P1 | CounterNum$ 1 | SpellDescription$ Put a +1/+1 counter on target creature.
SVar:DBPump:DB$ Pump | ValidTgts$ Creature.YouCtrl | AILogic$ Fight | TgtPrompt$ Choose target creature you control | StackDescription$ None | SubAbility$ DBFight | SpellDescription$ Target creature you control fights target creature you don't control.
SVar:DBFight:DB$ Fight | Defined$ ParentTarget | ValidTgts$ Creature.YouDontCtrl | TgtPrompt$ Choose target creature you don't control
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/dromokas_command.jpg
Oracle:Choose two -\n• Prevent all damage target instant or sorcery spell would deal this turn.\n• Target player sacrifices an enchantment.\n• Put a +1/+1 counter on target creature.\n• Target creature you control fights target creature you don't control.
Re: Dragons of Tarkir Spoiler Season
by friarsol » 12 Mar 2015, 16:16
Yea it's definitely a RepeatEach. I'd go with Dichotomancy + Rite of Replication which yields something (untested) like this.Marek14 wrote:Clone Legion - I guess it could be implemented using RepeatEach like Curse of the Swine, but I'm not sure if I can do it at this point.
- Code: Select all
A:SP$ RepeatEach | Cost$ 7 U U | ValidTgts$ Player | UseImprinted$ True | RepeatCards$ Card.Creature+TargetedPlayerCtrl | Zone$ Battlefield | RepeatSubAbility$ DBClone | StackDescription$ SpellDescription | SpellDescription$ For each creature target player controls, put a token onto the battlefield that's a copy of that creature.
SVar:DBClone:AB$ CopyPermanent | Cost$ 0 | Defined$ Imprinted | NumCopies$ 1
- friarsol
- Global Moderator
- Posts: 7593
- Joined: 15 May 2010, 04:20
- Has thanked: 243 times
- Been thanked: 965 times
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 17:32
OK, the spoiler is here...
- Code: Select all
Name:Ainok Artillerist
ManaCost:2 G
Types:Creature Hound Archer
PT:4/1
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Reach | CheckSVar$ X | SVarCompare$ EQ1 | Description$ CARDNAME has reach as long as it has a +1/+1 counter on it.
SVar:X:Count$Valid Card.Self+counters_GE1_P1P1
SVar:Picture:http://www.wizards.com/global/images/magic/general/ainok_artillerist.jpg
Oracle:Ainok Artillerist has reach as long as it has a +1/+1 counter on it.
- Code: Select all
Name:Ambuscade Shaman
ManaCost:2 B
Types:Creature Orc Shaman
PT:2/2
K:Dash:3 B
T:Mode$ ChangesZone | ValidCard$ Self | Origin$ Any | Destination$ Battlefield | Execute$ TrigPump | TriggerZones$ Battlefield | TriggerDescription$ Whenever CARDNAME or another creature enters the battlefield under your control, that creature gets +2/+2.
T:Mode$ ChangesZone | ValidCard$ Creature.Other+YouCtrl | Origin$ Any | Destination$ Battlefield | Execute$ TrigPump | TriggerZones$ Battlefield | Secondary$ True | TriggerDescription$ Whenever another creature enters the battlefield under your control, that creature gets +2/+0 and haste until end of turn.
SVar:TrigPump:AB$ Pump | Cost$ 0 | Defined$ TriggeredCard | NumAtt$ +2 | NumDef$ +2
SVar:BuffedBy:Creature
SVar:Picture:http://www.wizards.com/global/images/magic/general/ambuscade_shaman.jpg
Oracle:Whenever Ambuscade Shaman or another creature enters the battlefield under your control, that creature gets +2/+2 until end of turn.\nDash {3}{B} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)
- Code: Select all
Name:Ancestral Statue
ManaCost:4
Types:Artifact Creature Golem
PT:3/4
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.Self | Execute$ TrigChange | TriggerDescription$ When CARDNAME enters the battlefield, return a nonland permanent you control to its owner's hand.
SVar:TrigChange:AB$ChangeZone | Origin$ Battlefield | Destination$ Hand | Cost$ 0 | Hidden$ True | Mandatory$ True | ChangeType$ Permanent.nonLand+YouCtrl
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/ancestral_statue.jpg
Oracle:When Ancestral Statue enters the battlefield, return a nonland permanent you control to its owner's hand.
- Code: Select all
Name:Ancient Carp
ManaCost:4 U
Types:Creature Fish
PT:2/5
SVar:Picture:http://www.wizards.com/global/images/magic/general/ancient_carp.jpg
Oracle:
- Code: Select all
Name:Atarka Beastbreaker
ManaCost:1 G
Types:Creature Human Warrior
PT:2/2
A:AB$ Pump | Cost$ 4 G | NumAtt$ +4 | NumDef$ +4 | CheckSVar$ FormidableTest | SVarCompare$ GE8 | References$ FormidableTest | SpellDescription$ CARDNAME gets +4/+4 until end of turn.
SVar:FormidableTest:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/atarka_beastbreaker.jpg
Oracle:Formidable - {4}{G}: Atarka Beastbreaker gets +4/+4 until end of turn. Activate this ability only if creatures you control have total power 8 or greater.
Last edited by Marek14 on 13 Mar 2015, 17:41, edited 1 time in total.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 17:41
- Code: Select all
Name:Atarka Efreet
ManaCost:3 R
Types:Creature Efreet Shaman
PT:5/1
K:Megamorph:2 R
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigDamage | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, it deals 1 damage to target creature or player.
SVar:TrigDamage:AB$DealDamage | Cost$ 0 | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | NumDmg$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/atarka_efreet.jpg
Oracle:Megamorph {2}{R} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Atarka Efreet is turned face up, it deals 1 damage to target creature or player.
- Code: Select all
Name:Atarka Pummeler
ManaCost:4 R
Types:Creature Ogre Warrior
PT:4/5
A:AB$ Effect | Cost$ 3 R R | Name$ Atarka Pummeler Effect | StaticAbilities$ KWPump | CheckSVar$ FormidableTest | SVarCompare$ GE8 | References$ FormidableTest | SpellDescription$ Each creature you control can't be blocked this turn except by two or more creatures.
SVar:KWPump:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Battlefield | Affected$ Creature.YouCtrl | AddHiddenKeyword$ CantBeBlockedByAmount LT2 | Description$ Each creature you control can't be blocked this turn except by two or more creatures.
SVar:FormidableTest:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/atarka_pummeler.jpg
Oracle:Formidable - {3}{R}{R}: Each creature you control can't be blocked this turn except by two or more creatures. Activate this ability only if creatures you control have total power 8 or greater.
- Code: Select all
Name:Aven Tactician
ManaCost:4 W
Types:Creature Bird Soldier
PT:2/3
K:Flying
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigBolster | TriggerDescription$ When CARDNAME enters the battlefield, bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
SVar:TrigBolster:AB$ PutCounter | Cost$ 0 | Bolster$ True | CounterType$ P1P1 | CounterNum$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/aven_tactician.jpg
Oracle:Flying\nWhen Aven Tactician enters the battlefield, bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
- Code: Select all
Name:Berserkers' Onslaught
ManaCost:3 R R
Types:Enchantment
S:Mode$ Continuous | Affected$ Creature.attacking+YouCtrl | AddKeyword$ Double Strike | Description$ Attacking creatures you control have double strike.
SVar:PlayMain1:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/berserkers_onslaught.jpg
Oracle:Attacking creatures you control have double strike.
- Code: Select all
Name:Blessed Reincarnation
ManaCost:3 U
Types:Instant
K:Rebound
A:SP$ ChangeZone | Cost$ 3 U | ValidTgts$ Creature.OppCtrl | TgtPrompt$ Select target creature an opponent controls | Origin$ Battlefield | Destination$ Exile | SubAbility$ DBDig | SpellDescription$ Exile target creature an opponent controls. That player reveals cards from the top of his or her library until a creature card is revealed. The player puts that card onto the battlefield, then shuffles the rest into his or her library.
SVar:DBDig:DB$ DigUntil | Defined$ TargetedController | Valid$ Creature | ValidDescription$ creature | FoundDestination$ Battlefield | RevealedDestination$ Library | Shuffle$ True
SVar:Picture:http://www.wizards.com/global/images/magic/general/blessed_reincarnation.jpg
Oracle:Exile target creature an opponent controls. That player reveals cards from the top of his or her library until a creature card is revealed. The player puts that card onto the battlefield, then shuffles the rest into his or her library.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)
Last edited by Marek14 on 14 Mar 2015, 17:09, edited 1 time in total.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 18:18
- Code: Select all
Name:Blood-Chin Rager
ManaCost:1 B
Types:Creature Human Warrior
PT:2/2
T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ TrigPump | TriggerZones$ Battlefield | TriggerDescription$ Whenever CARDNAME attacks, each Warrior creature you control can't be blocked this turn except by two or more creatures.
SVar:TrigPump:AB$ PumpAll | Cost$ 0 | ValidCards$ Creature.Warrior+YouCtrl | KW$ HIDDEN CantBeBlockedByAmount LT2
SVar:Picture:http://www.wizards.com/global/images/magic/general/blood_chin_rager.jpg
Oracle:Whenever Blood-Chin Rager attacks, each Warrior creature you control can't be blocked this turn except by two or more creatures.
- Code: Select all
Name:Butcher's Glee
ManaCost:2 B
Types:Instant
A:SP$ Pump | Cost$ 2 B | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +3 | KW$ Lifelink | SpellDescription$ Target creature gets +3/+0 and gains lifelink until end of turn. Regenerate it. | SubAbility$ DBRegen
SVar:DBRegen:DB$ Regenerate | Defined$ ParentTarget
SVar:Picture:http://www.wizards.com/global/images/magic/general/butchers_glee.jpg
Oracle:Target creature gets +3/+0 and gains lifelink until end of turn. Regenerate it. (Damage dealt by a creature with lifelink also causes its controller to gain that much life.)
- Code: Select all
Name:Center Soul
ManaCost:1 W
Types:Instant
K:Rebound
A:SP$ Protection | Cost$ 1 W | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control | Gains$ Choice | Choices$ AnyColor | SpellDescription$ Target creature you control gains protection from the color of your choice until end of turn.
SVar:Picture:http://www.wizards.com/global/images/magic/general/center_soul.jpg
Oracle:Target creature you control gains protection from the color of your choice until end of turn.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)
- Code: Select all
Name:Champion of Arashin
ManaCost:3 W
Types:Creature Hound Warrior
PT:3/2
K:Lifelink
SVar:Picture:http://www.wizards.com/global/images/magic/general/champion_of_arashin.jpg
Oracle:Lifelink (Damage dealt by this creature also causes you to gain that much life.)
- Code: Select all
Name:Circle of Elders
ManaCost:2 G G
Types:Creature Human Shaman
PT:2/4
K:Vigilance
A:AB$ Mana | Cost$ T | Produced$ 1 | Amount$ 3 | CheckSVar$ FormidableTest | SVarCompare$ GE8 | References$ FormidableTest | SpellDescription$ Add {3} to your mana pool.
SVar:FormidableTest:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/circle_of_elders.jpg
Oracle:Vigilance\nFormidable - {T}: Add {3} to your mana pool. Activate this ability only if creatures you control have total power 8 or greater.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 18:28
- Code: Select all
Name:Coat with Venom
ManaCost:B
Types:Instant
A:SP$ Pump | Cost$ B | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +1 | NumDef$ +2 | KW$ Deathtouch | SpellDescription$ Target creature gets +1/+2 and gains deathtouch until end of turn.
SVar:Picture:http://www.wizards.com/global/images/magic/general/coat_with_venom.jpg
Oracle:Target creature gets +1/+2 and gains deathtouch until end of turn. (Any amount of damage it deals to a creature is enough to destroy it.)
- Code: Select all
Name:Colossodon Yearling
ManaCost:2 G
Types:Creature Beast
PT:2/4
SVar:Picture:http://www.wizards.com/global/images/magic/general/colossodon_yearling.jpg
Oracle:
- Code: Select all
Name:Conifer Strider
ManaCost:3 G
Types:Creature Elemental
PT:5/1
K:Hexproof
SVar:Picture:http://www.wizards.com/global/images/magic/general/conifer_strider.jpg
Oracle: Hexproof (This creature can't be the target of spells or abilities your opponents control.)
- Code: Select all
Name:Contradict
ManaCost:3 U U
Types:Instant
A:SP$ Counter | Cost$ 3 U U | TargetType$ Spell | TgtPrompt$ Select target spell | ValidTgts$ Card | SubAbility$ DBDraw | SpellDescription$ Counter target spell. Draw a card.
SVar:DBDraw:DB$Draw | NumCards$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/contradict.jpg
Oracle:Counter target spell.\nDraw a card.
- Code: Select all
Name:Dance of the Skywise
ManaCost:1 U
Types:Instant
A:SP$ Animate | Cost$ 1 U | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control | Power$ 4 | Toughness$ 4 | Keywords$ Flying | RemoveAllAbilities$ True | Colors$ Blue | OverwriteColors$ True | Types$ Dragon,Illusion | RemoveCreatureTypes$ True | SpellDescription$ Until end of turn, target creature you control becomes a blue Dragon Illusion with base power and toughness 4/4, loses all abilities and gains flying.
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/dance_of_the_skywise.jpg
Oracle:Until end of turn, target creature you control becomes a blue Dragon Illusion with base power and toughness 4/4, loses all abilities and gains flying.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 18:37
- Code: Select all
Name:Deadly Wanderings
ManaCost:3 B B
Types:Enchantment
S:Mode$ Continuous | Affected$ Creature.YouCtrl | AddPower$ 2 | AddKeyword$ Deathtouch,Lifelink | CheckSVar$ X | SVarCompare$ EQ1 | Description$ As long as you control exactly one creature, that creature gets +2/+0 and has deathtouch and lifelink.
SVar:X:Count$Valid Creature.YouCtrl
SVar:RemAIDeck:True
SVar:PlayMain1:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/homicidal_seclusion.jpg
Oracle:As long as you control exactly one creature, that creature gets +2/+0 and has deathtouch and lifelink.
- Code: Select all
Name:Defeat
ManaCost:1 B
Types:Sorcery
A:SP$ Destroy | Cost$ 1 B | ValidTgts$ Creature.powerLE2 | TgtPrompt$ Select target creature with power 2 or less. | SpellDescription$ Destroy target creature with power 2 or less.
SVar:Picture:http://www.wizards.com/global/images/magic/general/defeat.jpg
Oracle:Destroy target creature with power 2 or less.
- Code: Select all
Name:Dirgur Nemesis
ManaCost:5 U
Types:Creature Serpent
PT:6/5
K:Defender
K:Megamorph:6 U
SVar:Picture:http://www.wizards.com/global/images/magic/general/dirgur_nemesis.jpg
Oracle:Defender\nMegamorph {6}{U} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)
- Code: Select all
Name:Dragonloft Idol
ManaCost:4
Types:Artifact Creature Gargoyle
PT:3/3
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 1 | AddToughness$ 1 | AddKeyword$ Flying,Trample | CheckSVar$ X | SVarCompare$ GE1 | Description$ As long as you control a Dragon, CARDNAME gets +1/+1 and has flying and trample.
SVar:X:Count$Valid Permanent.Dragon+YouCtrl
SVar:BuffedBy:Permanent.Dragon
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragonloft_idol.jpg
Oracle: As long as you control a Dragon, Dragonloft Idol gets +1/+1 and has flying and trample.
- Code: Select all
Name:Dragon's Eye Sentry
ManaCost:W
Types:Creature Human Monk
PT:1/3
K:Defender
K:First Strike
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragons_eye_sentry.jpg
Oracle: Defender, first strike
Last edited by Marek14 on 14 Mar 2015, 15:20, edited 2 times in total.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 18:49
- Code: Select all
Name:Dragon-Scarred Bear
ManaCost:2 G
Types:Creature Bear
PT:3/2
A:AB$ Regenerate | Cost$ 1 G | CheckSVar$ FormidableTest | SVarCompare$ GE8 | References$ FormidableTest | SpellDescription$ Regenerate CARDNAME.
SVar:FormidableTest:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragon_scarred_bear.jpg
Oracle:Formidable - {1}{G}: Regenerate Dragon-Scarred Bear. Activate this ability only if creatures you control have total power 8 or greater.
- Code: Select all
Name:Dromoka's Gift
ManaCost:4 G
Types:Instant
A:SP$ PutCounter | Cost$ 4 G | Bolster$ True | CounterNum$ 4 | CounterType$ P1P1 | SpellDescription$ Bolster 4. (Choose a creature with the least toughness among creatures you control and put four +1/+1 counters on it.)
SVar:Picture:http://www.wizards.com/global/images/magic/general/dromokas_gift.jpg
Oracle:Bolster 4. (Choose a creature with the least toughness among creatures you control and put four +1/+1 counters on it.)
- Code: Select all
Name:Dromoka Captain
ManaCost:2 W
Types:Creature Human Soldier
PT:1/1
K:First Strike
T:Mode$ Attacks | ValidCard$ Creature.Self | Execute$ TrigBolster | TriggerDescription$ Whenever CARDNAME attacks, bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
SVar:TrigBolster:AB$ PutCounter | Cost$ 0 | Bolster$ True | CounterType$ P1P1 | CounterNum$ 1
SVar:HasAttackEffect:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/dromoka_captain.jpg
Oracle:First strike\nWhenever Dromoka Captain attacks, bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
- Code: Select all
Name:Dromoka Dunecaster
ManaCost:W
Types:Creature Human Wizard
PT:0/2
A:AB$ Tap | Cost$ 1 W T | ValidTgts$ Creature.withoutFlying | TgtPrompt$ Select target creature without flying | SpellDescription$ Tap target creature without flying.
SVar:Picture:http://www.wizards.com/global/images/magic/general/dromoka_dunecaster.jpg
Oracle:{1}{W}, {T}: Tap target creature without flying.
- Code: Select all
Name:Dromoka Warrior
ManaCost:1 W
Types:Creature Human Warrior
PT:3/1
SVar:Picture:http://www.wizards.com/global/images/magic/general/dromoka_warrior.jpg
Oracle:
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 19:01
- Code: Select all
Name:Dutiful Attendant
ManaCost:2 B
Types:Creature Human Warrior
PT:1/2
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | TriggerController$ TriggeredCardController | Execute$ TrigChange | TriggerDescription$ When CARDNAME dies, return another target creature card from your graveyard to your hand.
SVar:TrigChange:AB$ ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Hand | TgtPrompt$ Choose target creature card in your graveyard | ValidTgts$ Creature.Other | TargetsWithDefinedController$ TriggeredCardController
SVar:Picture:http://www.wizards.com/global/images/magic/general/dutiful_attendant.jpg
Oracle:When Dutiful Attendant dies, return another target creature card from your graveyard to your hand.
- Code: Select all
Name:Echoes of the Kin Tree
ManaCost:1 W
Types:Enchantment
A:AB$ PutCounter | Cost$ 2 W | Bolster$ True | CounterNum$ 1 | CounterType$ P1P1 | SpellDescription$ Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
SVar:Picture:http://www.wizards.com/global/images/magic/general/echoes_of_the_kin_tree.jpg
Oracle:{2}{W}: Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
- Code: Select all
Name:Elusive Spellfist
ManaCost:1 U
Types:Creature Human Monk
PT:1/3
T:Mode$ SpellCast | ValidCard$ Card.nonCreature | ValidActivatingPlayer$ You | Execute$ TrigPump | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast a noncreature spell, CARDNAME gets +1/+0 until end of turn and can't be blocked this turn.
SVar:TrigPump:AB$ Pump | Cost$ 0 | Defined$ Self | NumAtt$ +1 | KW$ HIDDEN Unblockable | SpellDescription$ CARDNAME gets +1/+0 until end of turn and can't be blocked this turn.
SVar:BuffedBy:Card.nonLand+nonCreature
SVar:Picture:http://www.wizards.com/global/images/magic/general/elusive_spellfist.jpg
Oracle:Whenever you cast a noncreature spell, Elusive Spellfist gets +1/+0 until end of turn and can't be blocked this turn.
- Code: Select all
Name:Enduring Victory
ManaCost:4 W
Types:Instant
A:SP$ Destroy | Cost$ 4 W | ValidTgts$ Creature.attacking,Creature.blocking | TgtPrompt$ Select target attacking or blocking creature | SubAbility$ DBBolster | SpellDescription$ Destroy target attacking or blocking creature. Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
SVar:DBBolster:DB$ PutCounter | Bolster$ True | CounterNum$ 1 | CounterType$ P1P1
SVar:Picture:http://www.wizards.com/global/images/magic/general/enduring_victory.jpg
Oracle:Destroy target attacking or blocking creature. Bolster 1. (Choose a creature with the least toughness among creatures you control and put a +1/+1 counter on it.)
- Code: Select all
Name:Fate Forgotten
ManaCost:2 W
Types:Instant
A:SP$ ChangeZone | Cost$ 2 W | ValidTgts$ Artifact,Enchantment | TgtPrompt$ Select target artifact or enchantment | Origin$ Battlefield | Destination$ Exile | SpellDescription$ Exile target artifact or enchantment.
SVar:Picture:http://www.wizards.com/global/images/magic/general/fate_forgotten.jpg
Oracle:Exile target artifact or enchantment.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 19:18
- Code: Select all
Name:Flatten
ManaCost:3 B
Types:Instant
A:SP$ Pump | Cost$ 3 B | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ -4 | NumDef$ -4 | IsCurse$ True | SpellDescription$ Target creature gets -4/-4 until end of turn.
SVar:Picture:http://www.wizards.com/global/images/magic/general/flatten.jpg
Oracle:Target creature gets -4/-4 until end of turn.
- Code: Select all
Name:Foul-Tongue Shriek
ManaCost:B
Types:Instant
A:SP$ LoseLife | Cost$ B | ValidTgts$ Opponent | TgtPrompt$ Select target opponent | LifeAmount$ X | References$ X | SubAbility$ DBGainLife | SpellDescription$ Target opponent loses 1 life for each attacking creature you control. You gain that much life.
SVar:DBGainLife:DB$GainLife | Defined$ You | LifeAmount$ X | References$ X
SVar:X:Count$Valid Creature.attacking+YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/foul_tongue_shriek.jpg
Oracle:Target opponent loses 1 life for each attacking creature you control. You gain that much life.
- Code: Select all
Name:Foul Renewal
ManaCost:3 B
Types:Instant
A:SP$ ChangeZone | Cost$ 3 B | Origin$ Graveyard | Destination$ Hand | TgtPrompt$ Select target creature card in your graveyard | ValidTgts$ Creature.YouCtrl | RememberChanged$ True | SubAbility$ DBPump | SpellDescription$ Return target creature card from your graveyard to your hand. Target creature gets -X/-X until end of turn, where X is the toughness of the card returned this way.
SVar:DBPump:DB$ Pump | ValidTgts$ Creature | References$ X | NumAtt$ -X | NumDef$ -X | IsCurse$ True | TgtPrompt$ Choose target creature | SubAbility$ DBCleanup
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:X:Remembered$CardToughness
SVar:Picture:http://www.wizards.com/global/images/magic/general/foul_renewal.jpg
Oracle:Return target creature card from your graveyard to your hand. Target creature gets -X/-X until end of turn, where X is the toughness of the card returned this way.
- Code: Select all
Name:Gate Smasher
ManaCost:3
Types:Artifact Equipment
Text:CARDNAME can be attached only to a creature with toughness 4 or greater.
K:Equip 3
K:CantEquip Creature.toughnessLT4
S:Mode$ Continuous | Affected$ Creature.EquippedBy | AddPower$ 3 | AddKeyword$ Trample | Description$ Equipped creature gets +3/+0 and has trample.
SVar:RemAIDeck:True
SVar:RemRandomDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/gate_smasher.jpg
Oracle:Gate Smasher can be attached only to a creature with toughness 4 or greater.\nEquipped creature gets +3/+0 and has trample.\nEquip {3}
- Code: Select all
Name:Glade Watcher
ManaCost:1 G
Types:Creature Elemental
PT:3/3
K:Defender
A:AB$ Pump | Cost$ G | KW$ HIDDEN CARDNAME can attack as though it didn't have defender. | CheckSVar$ FormidableTest | SVarCompare$ GE8 | References$ FormidableTest | SpellDescription$ CARDNAME can attack this turn as though it didn't have defender.
SVar:FormidableTest:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/glade_watcher.jpg
Oracle:Formidable - {G}: Glade Watcher can attack this turn as though it didn't have defender. Activate this ability only if creatures you control have total power 8 or greater.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 19:31
- Code: Select all
Name:Glaring Aegis
ManaCost:W
Types:Enchantment Aura
K:Enchant creature
A:SP$ Attach | Cost$ W | ValidTgts$ Creature | AILogic$ Pump
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigTap | TriggerDescription$ When CARDNAME enters the battlefield, tap target creature an opponent controls.
SVar:TrigTap:AB$ Tap | Cost$ 0 | ValidTgts$ Creature.OppCtrl | TgtPrompt$ Choose target creature an opponent controls.
S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddPower$ 1 | AddToughness$ 3 | Description$ Enchanted creature gets +1/+3.
SVar:PlayMain1:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/glaring_aegis.jpg
Oracle:Enchant creature\nWhen Glaring Aegis enters the battlefield, tap target creature an opponent controls.\nEnchanted creature gets +1/+3.
- Code: Select all
Name:Glint
ManaCost:1 U
Types:Instant
A:SP$ Pump | Cost$ 1 U | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control | NumDef$ +3 | KW$ Hexproof | SpellDescription$ Target creature you control gets +0/+3 and gains hexproof until end of turn.
SVar:Picture:http://www.wizards.com/global/images/magic/general/glint.jpg
Oracle:Target creature you control gets +0/+3 and gains hexproof until end of turn. (It can't be the target of spells or abilities your opponents control.)
- Code: Select all
Name:Graceblade Artisan
ManaCost:2 W
Types:Creature Human Monk
PT:2/3
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ X | AddToughness$ X | References$ X | Description$ CARDNAME gets +2/+2 for each Aura attached to it.
SVar:X:Count$Valid Aura.Attached/Times.2
SVar:EnchantMe:Multiple
SVar:Picture:http://www.wizards.com/global/images/magic/general/graceblade_artisan.jpg
Oracle:Graceblade Artisan gets +2/+2 for each Aura attached to it.
- Code: Select all
Name:Great Teacher's Decree
ManaCost:3 W
Types:Sorcery
K:Rebound
A:SP$ PumpAll | Cost$ 3 W | ValidCards$ Creature.YouCtrl | NumAtt$ +2 | NumDef$ +1 | SpellDescription$ Creatures you control get +2/+1 until end of turn.
SVar:Picture:http://www.wizards.com/global/images/magic/general/great_teachers_decree.jpg
Oracle:Creatures you control get +2/+1 until end of turn.\nRebound (If you cast this spell from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast this card from exile without paying its mana cost.)
- Code: Select all
Name:Guardian Shield-Bearer
ManaCost:1 G
Types:Creature Human Soldier
PT:2/1
K:Megamorph:3 G
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigPutCounter | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, put a +1/+1 counter on another target creature you control.
SVar:TrigPutCounter:AB$ PutCounter | Cost$ 0 | ValidTgts$ Creature.Other+YouCtrl | TgtPrompt$ Select another target creature you control | CounterType$ P1P1 | CounterNum$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/guardian_shield_bearer.jpg
Oracle:Megamorph {3}{G} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Guardian Shield-Bearer is turned face up, put a +1/+1 counter on another target creature you control.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 21:14
- Code: Select all
Name:Gurmag Drowner
ManaCost:3 U
Types:Creature Naga Wizard
PT:2/4
K:Exploit
T:Mode$ Exploited | ValidCard$ Creature | ValidSource$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigDig | TriggerDescription$ When CARDNAME exploits a creature, look at the top four cards of your library. Put one of them into your hand and the rest into your graveyard.
SVar:TrigDig:DB$ Dig | Cost$ 0 | DigNum$ 4 | ChangeNum$ 1 | ChangeValid$ Creature | DestinationZone2$ Graveyard
SVar:Picture:http://www.wizards.com/global/images/magic/general/gurmag_drowner.jpg
Oracle:Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Gurmag Drowner exploits a creature, look at the top four cards of your library. Put one of them into your hand and the rest into your graveyard.
- Code: Select all
Name:Hand of Silumgar
ManaCost:1 B
Types:Creature Human Warrior
PT:2/1
K:Deathtouch
SVar:Picture:http://www.wizards.com/global/images/magic/general/hand_of_silumgar.jpg
Oracle:Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)
- Code: Select all
Name:Herald of Dromoka
ManaCost:1 W
Types:Creature Human Warrior
PT:2/2
K:Vigilance
S:Mode$ Continuous | Affected$ Creature.Warrior+Other+YouCtrl | AddKeyword$ Vigilance | Description$ Other Warrior creatures you control have vigilance.
SVar:PlayMain1:TRUE
DeckHints:Type$Warrior
SVar:Picture:http://www.wizards.com/global/images/magic/general/herald_of_dromoka.jpg
Oracle:Vigilance\nOther Warrior creatures you control have vigilance.
- Code: Select all
Name:Illusory Gains
ManaCost:3 U U
Types:Enchantment Aura
K:Enchant creature
A:SP$ Attach | Cost$ 3 U U | ValidTgts$ Creature | AILogic$ GainControl
S:Mode$ Continuous | Affected$ Card.EnchantedBy | GainControl$ You | Description$ You control enchanted creature.
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.OppCtrl | TriggerZones$ Battlefield | Execute$ TrigAttach | TriggerDescription$ Whenever a creature enters the battlefield under an opponent's control, attach CARDNAME to that creature.
SVar:TrigAttach:DB$ Attach | Cost$ 0 | Defined$ TriggeredCard
SVar:Picture:http://www.wizards.com/global/images/magic/general/illusory_gains.jpg
Oracle:Enchant creature\nYou control enchanted creature.\nWhenever a creature enters the battlefield under an opponent's control, attach Illusory Gains to that creature.
- Code: Select all
Name:Impact Tremors
ManaCost:1 R
Types:Enchantment
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigDmg | TriggerDescription$ Whenever a creature enters the battlefield under your control, CARDNAME deals 1 damage to each opponent.
SVar:TrigDmg:AB$ DealDamage | Cost$ 0 | Defined$ Player.Opponent | NumDmg$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/impact_tremors.jpg
Oracle:Whenever a creature enters the battlefield under your control, Impact Tremors deals 1 damage to each opponent.
Last edited by Marek14 on 13 Mar 2015, 21:49, edited 1 time in total.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 21:29
- Code: Select all
Name:Inspiring Call
ManaCost:2 G
Types:Instant
A:SP$ Draw | Cost$ 2 G | NumCards$ X | References$ X | SubAbility$ DBPumpAll | SpellDescription$ Draw a card for each creature you control. with a +1/+1 counter on it. Those creatures gain indestructible until end of turn. (Damage and effects that say "destroy" don't destroy them.)
SVar:X:Count$Valid Creature.YouCtrl+counters_GE1_P1P1
SVar:DBPumpAll:DB$ PumpAll | ValidCards$ Creature.YouCtrl+counters_GE1_P1P1 | KW$ Indestructible
SVar:RemRandomDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/inspiring_call.jpg
Oracle:Draw a card for each creature you control. with a +1/+1 counter on it. Those creatures gain indestructible until end of turn. (Damage and effects that say "destroy" don't destroy them.)
- Code: Select all
Name:Keeper of the Lens
ManaCost:1
Types:Artifact Creature - Golem
PT:1/2
S:Mode$ Continuous | Affected$ You | AddKeyword$ CanSeeOpponentsFaceDownCards | SpellDescription$ You may look at face-down creatures you don't control.
SVar:RemAIDeck:True
SVar:RemRandomDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/keeper_of_the_lens.jpg
Oracle:You may look at face-down creatures you don't control. (You may do this at any time.)
- Code: Select all
Name:Kolaghan Aspirant
ManaCost:1 R
Types:Creature Human Warrior
PT:2/1
T:Mode$ AttackerBlockedByCreature | ValidCard$ Card.Self | ValidBlocker$ Creature | Execute$ TrigDamage | TriggerDescription$ Whenever CARDNAME becomes blocked by a creature, CARDNAME deals 1 damage to that creature.
SVar:TrigDamage:AB$ DealDamage | Cost$ 0 | Defined$ TriggeredBlocker | NumDmg$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/kolaghan_aspirant.jpg
Oracle:Whenever Kolaghan Aspirant becomes blocked by a creature, Kolaghan Aspirant deals 1 damage to that creature.
- Code: Select all
Name:Kolaghan Forerunner
ManaCost:2 R
Types:Creature Human Berserker
PT:*/3
K:Trample
K:Dash:2 R
S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetPower$ X | Description$ CARDNAME's power is equal to the number of creatures you control.
SVar:X:Count$TypeYouCtrl.Creature
SVar:BuffedBy:Creature
SVar:Picture:http://www.wizards.com/global/images/magic/general/kolaghan_forerunners.jpg
Oracle:Trample\nKolaghan Forerunners's power is equal to the number of creatures you control.\nDash {2}{R} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)
- Code: Select all
Name:Kolaghan Skirmisher
ManaCost:1 B
Types:Creature Human Warrior
PT:2/2
K:Dash:2 B
SVar:Picture:http://www.wizards.com/global/images/magic/general/kolaghan_skirmisher.jpg
Oracle:Dash {2}{B} (You may cast this spell for its dash cost. If you do, it gains haste, and it's returned from the battlefield to its owner's hand at the beginning of the next end step.)
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 21:43
- Code: Select all
Name:Kolaghan Stormsinger
ManaCost:R
Types:Creature Human Shaman
PT:1/1
K:Haste
K:Megamorph:R
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigPump | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, target creature gains haste until end of turn.
SVar:TrigPump:AB$ Pump | Cost$ 0 | ValidTgts$ Creature | TgtPrompt$ Select target creature | KW$ Haste
SVar:Picture:http://www.wizards.com/global/images/magic/general/kolaghan_stormsinger.jpg
Oracle:Haste\nMegamorph {R} (You may cast this card face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Kolaghan Stormsinger is turned face up, target creature gains haste until end of turn.
- Code: Select all
Name:Learn from the Past
ManaCost:3 U
Types:Instant
A:SP$ ChangeZoneAll | Cost$ 3 U | ValidTgts$ Player | TgtPrompt$ Select target player | Origin$ Graveyard | Destination$ Library | ChangeType$ Card | Shuffle$ True | SubAbility$ DBDraw | SpellDescription$ Target player shuffles his or her graveyard into his or her library. Draw a card.
SVar:DBDraw:DB$ Draw | NumCards$ 1 | SpellDescription$ Draw a card.
SVar:Picture:http://www.wizards.com/global/images/magic/general/learn_from_the_past.jpg
Oracle:Target player shuffles his or her graveyard into his or her library. Draw a card.
- Code: Select all
Name:Lightwalker
ManaCost:1 W
Types:Creature Human Warrior
PT:2/1
S:Mode$ Continuous | Affected$ Card.Self | AddKeyword$ Flying | CheckSVar$ X | SVarCompare$ EQ1 | Description$ CARDNAME has flying as long as it has a +1/+1 counter on it.
SVar:X:Count$Valid Card.Self+counters_GE1_P1P1
SVar:Picture:http://www.wizards.com/global/images/magic/general/lightwalker.jpg
Oracle:Lightwalker has flying as long as it has a +1/+1 counter on it.
- Code: Select all
Name:Lose Calm
ManaCost:3 R
Types:Sorcery
A:SP$ GainControl | Cost$ 3 R | ValidTgts$ Creature | TgtPrompt$ Select target creature | LoseControl$ EOT | Untap$ True | AddKWs$ Haste & HIDDEN CantBeBlockedByAmount LT2 | SpellDescription$ Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn and can't be blocked this turn except by two or more creatures.
SVar:Picture:http://www.wizards.com/global/images/magic/general/lose_calm.jpg
Oracle:Gain control of target creature until end of turn. Untap that creature. It gains haste until end of turn and can't be blocked this turn except by two or more creatures.
- Code: Select all
Name:Lurking Arynx
ManaCost:4 G
Types:Creature Cat Beast
PT:3/5
A:AB$ MustBlock | Cost$ 2 G | ValidTgts$ Creature | CheckSVar$ FormidableTest | SVarCompare$ GE8 | References$ FormidableTest | TgtPrompt$ Select target creature that must block this creature this turn | SpellDescription$ Target creature blocks CARDNAME this turn if able.
SVar:RemAIDeck:True
SVar:FormidableTest:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/lurking_arynx.jpg
Oracle:Formidable - {2}{G}: Target creature blocks Lurking Arynx this turn if able. Activate this ability only if creatures you control have total power 8 or greater.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 13 Mar 2015, 21:46
- Code: Select all
Name:Magmatic Chasm
ManaCost:1 R
Types:Sorcery
A:SP$ Effect | Cost$ 1 R | Name$ Magmatic Chasm Effect | StaticAbilities$ KWPump | AILogic$ Evasion | SpellDescription$ Creatures without flying can't block this turn.
SVar:KWPump:Mode$ Continuous | EffectZone$ Command | AffectedZone$ Battlefield | Affected$ Creature.withoutFlying | AddHiddenKeyword$ CARDNAME can't block. | Description$ Creatures without flying can't block this turn.
SVar:PlayMain1:TRUE
SVar:RemAIDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/magmatic_chasm.jpg
Oracle:Creatures without flying can't block this turn.
- Code: Select all
Name:Marsh Hulk
ManaCost:4 B B
Types:Creature Zombie Ogre
PT:4/6
K:Megamorph:6 B
SVar:Picture:http://www.wizards.com/global/images/magic/general/marsh_hulk.jpg
Oracle:Megamorph {6}{B} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)
- Code: Select all
Name:Minister of Pain
ManaCost:2 B
Types:Creature Human Shaman
PT:2/3
K:Exploit
T:Mode$ Exploited | ValidCard$ Creature | ValidSource$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigMassacre | TriggerDescription$ When CARDNAME exploits a creature, creatures your opponents control get -1/-1 until end of turn.
SVar:TrigMassacre:AB$ PumpAll | Cost$ 0 | NumAtt$ -1 | NumDef$ -1 | ValidCards$ Creature.OppCtrl | IsCurse$ True
SVar:Picture:http://www.wizards.com/global/images/magic/general/minister_of_pain.jpg
Oracle:Exploit (When this creature enters the battlefield, you may sacrifice a creature.)\nWhen Minister of Pain exploits a creature, creatures your opponents control get -1/-1 until end of turn.
- Code: Select all
Name:Misthoof Kirin
ManaCost:2 W
Types:Creature Kirin
PT:2/1
K:Flying
K:Vigilance
K:Megamorph:1 W
SVar:Picture:http://www.wizards.com/global/images/magic/general/misthoof_kirin.jpg
Oracle:Flying, vigilance\nMegamorph {1}{W} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)
- Code: Select all
Name:Monastery Loremaster
ManaCost:3 U
Types:Creature Djinn Wizard
PT:3/2
K:Megamorph:5 U
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigReturn | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, return target noncreature, nonland card from your graveyard to your hand.
SVar:TrigBounce:AB$ChangeZone | Cost$ 0 | ValidTgts$ Card.nonCreature+nonLand+YouCtrl | TgtPrompt$ Select target noncreature, nonland card in your graveyard | Origin$ Graveyard | Destination$ Hand
SVar:Picture:http://www.wizards.com/global/images/magic/general/monastery_loremaster.jpg
Oracle:Megamorph {5}{U} (You may cast this face down as a 2/2 creature for {3}. Turn it face up any time for its megamorph cost and put a +1/+1 counter on it.)\nWhen Monastery Loremaster is turned face up, return target noncreature, nonland card from your graveyard to your hand.
Last edited by Marek14 on 14 Mar 2015, 21:37, edited 3 times in total.
Who is online
Users browsing this forum: No registered users and 34 guests