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 » 10 Mar 2015, 07:58
- Code: Select all
Name:Artful Maneuver
ManaCost:1 W
Types:Instant
K:Rebound
A:SP$ Pump | Cost$ 1 W | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +2 | NumDef$ +2 | SpellDescription$ Target creature gets +2/+2 until end of turn.
SVar:Picture:http://www.wizards.com/global/images/magic/general/artful_maneuver.jpg
Oracle:Target creature gets +2/+2 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.)
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 10 Mar 2015, 10:17
- Code: Select all
Name:Ire Shaman
ManaCost:1 R
Types:Creature Orc Shaman
PT:2/1
K:CantBeBlockedByAmount LT2
K:Megamorph:R
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigExile | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, exile the top card of your library. Until end of turn, you may play that card.
SVar:TrigExile:AB$ Mill | Cost$ 0 | Defined$ You | NumCards$ 1 | Destination$ Exile | RememberMilled$ True | SubAbility$ DBEffect
SVar:DBEffect:DB$ Effect | StaticAbilities$ STPlay | TriggerCastPF,TriggerPlayPF | SVars$ TrigRemoveSelf | RememberObjects$ Remembered | SubAbility$ DBCleanup
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:STPlay:Mode$ Continuous | EffectZone$ Command | Affected$ Card.IsRemembered | AddHiddenKeyword$ May be played | AffectedZone$ Exile | Description$ Until end of turn, you may play that card.
SVar:TriggerCastPF:Mode$ SpellCast | ValidCard$ Card.IsRemembered | TriggerZones$ Command | Execute$ TrigRemoveSelf | Static$ True
SVar:TriggerPlayPF:Mode$ LandPlayed | ValidCard$ Land.IsRemembered | TriggerZones$ Command | Execute$ TrigRemoveSelf | Static$ True
SVar:TrigRemoveSelf:DB$ ChangeZone | Defined$ Self | Origin$ Command | Destination$ Exile
SVar:Picture:http://www.wizards.com/global/images/magic/general/ire_shaman.jpg
Oracle:Ire Shaman can't be blocked except by two or more creatures.\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 Ire Shaman is turned face up, exile the top card of your library. Until end of turn, you may play that card.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 10 Mar 2015, 12:28
Finally got to that Formidable code from page 1...
- Code: Select all
Name:Stampeding Elk Herd
ManaCost:3 G G
Types:Creature Elk
PT:5/5
T:Mode$ Attacks | ValidCard$ Card.Self | TriggerZones$ Battlefield | CheckSVar$ X | SVarCompare$ GE8 | Execute$ TrigFormidable | TriggerDescription$ Formidable - Whenever CARDNAME attacks, if creatures you control have total power 8 or greater, creatures you control gain trample until end of turn.
SVar:TrigFormidable:AB$ PumpAll | Cost$ 0 | ValidCards$ Creature.YouCtrl | KW$ Trample
SVar:X:Count$SumPower_Creature.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/stampeding_elk_herd.jpg
Oracle:Formidable - Whenever Stampeding Elk Herd attacks, if creatures you control have total power 8 or greater, creatures you control gain trample until end of turn.
Re: Dragons of Tarkir Spoiler Season
by friarsol » 10 Mar 2015, 14:17
I was wondering about that when you posted your recap, and said you still didn't now how to do it.Marek14 wrote:Finally got to that Formidable code from page 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 friarsol » 10 Mar 2015, 15:09
BTW, Generic Choice is definitely what I would use for these cards that have a on resolution choice (top/bottom library, face up/down). So far I believe that is: Arashin Sovereign, Deathmist Raptor. The optional portion should be attached to the trigger itself for consistency (that way users can use the always accept/reject choices).
I've added a note about "Dragon Presence" cards on the Upcoming page.
I've added a note about "Dragon Presence" cards on the Upcoming page.
- 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 » 10 Mar 2015, 15:25
Wouldn't the always accept/reject choice be meaningless here? It's ability that moves the card, so it can be only used once with each object. "Always reject" could theoretically work on Deathmist Raptor, since that can trigger multiple times, but still...friarsol wrote:BTW, Generic Choice is definitely what I would use for these cards that have a on resolution choice (top/bottom library, face up/down). So far I believe that is: Arashin Sovereign, Deathmist Raptor. The optional portion should be attached to the trigger itself for consistency (that way users can use the always accept/reject choices).
I've added a note about "Dragon Presence" cards on the Upcoming page.
Today's cards:
Assault Formation -- this requires either a new effect akin to Doran, the Siege Tower, or modifying Doran's effect so it could affect subsets of creatures.
Draconic Roar -- another Dragon Presence card.
- Code: Select all
Name:Avatar of the Resolute
ManaCost:G G
Types:Creature Avatar
PT:3/2
K:Reach
K:Trample
K:etbCounter:P1P1:X:no Condition:CARDNAME enters the battlefield with a +1/+1 counter on it for each other creature you control with a +1/+1 counter on it.
SVar:X:Count$Valid Creature.Other+YouCtrl+counters_GE1_P1P1
SVar:Picture:http://www.wizards.com/global/images/magic/general/avatar_of_the_resolute.jpg
Oracle:Reach, trample\nAvatar of the Resolute enters the battlefield with a +1/+1 counter on it for each other creature you control with a +1/+1 counter on it.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 10 Mar 2015, 22:15
- Code: Select all
Name:Herdchaser Dragon
ManaCost:5 G
Types:Creature Dragon
PT:3/3
K:Flying
K:Trample
K:Megamorph:5 G G
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigCounters | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, put a +1/+1 counter on each other Dragon creature you control.
SVar:TrigCounters:AB$ PutCounterAll | Cost$ 0 | ValidCards$ Creature.Dragon+YouCtrl+other | CounterType$ P1P1 | CounterNum$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/herdchaser_dragon.jpg
Oracle:Flying, trample\nMegamorph {5}{G}{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 Herdchaser Dragon is turned face up, put a +1/+1 counter on each other Dragon creature you control.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 11 Mar 2015, 15:06
- Code: Select all
Name:Scion of Ugin
ManaCost:6
Types:Creature Dragon Spirit
PT:4/4
K:Flying
SVar:Picture:http://www.wizards.com/global/images/magic/general/scion_of_ugin.jpg
Oracle:Flying
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 11 Mar 2015, 16:03
Hedonist's Trove -- not sure how to limit it to one spell cast through it each turn.
- Code: Select all
Name:Atarka Monument
ManaCost:3
Types:Artifact
A:AB$ Mana | Cost$ T | Produced$ R | SpellDescription$ Add {R} to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ G | SpellDescription$ Add {G} to your mana pool.
A:AB$ Animate | Cost$ 4 R G | Defined$ Self | Power$ 4 | Toughness$ 4 | Types$ Artifact,Creature,Dragon | Colors$ Red,Green | Keywords$ Flying | SpellDescription$ CARDNAME becomes a 4/4 red and green Dragon artifact creature with flying until end of turn.
SVar:RemRandomDeck:True
DeckNeeds:Color$Red|Green
SVar:Picture:http://www.wizards.com/global/images/magic/general/atarka_monument.jpg
Oracle:{T}: Add {R} or {G} to your mana pool.\n{4}{R}{G}: Atarka Monument becomes a 4/4 red and green Dragon artifact creature with flying until end of turn.
- Code: Select all
Name:Custodian of the Trove
ManaCost:3
Types:Artifact Creature Golem
PT:2/5
K:Defender
K:CARDNAME enters the battlefield tapped.
SVar:Picture:http://www.wizards.com/global/images/magic/general/custodian_of_the_trove.jpg
Oracle:Defender\nCustodian of the Trove enters the battlefield tapped.
- Code: Select all
Name:Dromoka Monument
ManaCost:3
Types:Artifact
A:AB$ Mana | Cost$ T | Produced$ G | SpellDescription$ Add {G} to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ W | SpellDescription$ Add {W} to your mana pool.
A:AB$ Animate | Cost$ 4 G W | Defined$ Self | Power$ 4 | Toughness$ 4 | Types$ Artifact,Creature,Dragon | Colors$ Green,White | Keywords$ Flying | SpellDescription$ CARDNAME becomes a 4/4 green and white Dragon artifact creature with flying until end of turn.
SVar:RemRandomDeck:True
DeckNeeds:Color$Green|White
SVar:Picture:http://www.wizards.com/global/images/magic/general/dromoka_monument.jpg
Oracle:{T}: Add {G} or {W} to your mana pool.\n{4}{G}{W}: Dromoka Monument becomes a 4/4 green and white Dragon artifact creature with flying until end of turn.
- Code: Select all
Name:Kolaghan Monument
ManaCost:3
Types:Artifact
A:AB$ Mana | Cost$ T | Produced$ B | SpellDescription$ Add {B} to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ R | SpellDescription$ Add {R} to your mana pool.
A:AB$ Animate | Cost$ 4 B R | Defined$ Self | Power$ 4 | Toughness$ 4 | Types$ Artifact,Creature,Dragon | Colors$ Black,Red | Keywords$ Flying | SpellDescription$ CARDNAME becomes a 4/4 black and red Dragon artifact creature with flying until end of turn.
SVar:RemRandomDeck:True
DeckNeeds:Color$Black|Red
SVar:Picture:http://www.wizards.com/global/images/magic/general/kolaghan_monument.jpg
Oracle:{T}: Add {B} or {R} to your mana pool.\n{4}{B}{R}: Kolaghan Monument becomes a 4/4 black and red Dragon artifact creature with flying until end of turn.
- Code: Select all
Name:Ojutai Monument
ManaCost:3
Types:Artifact
A:AB$ Mana | Cost$ T | Produced$ W | SpellDescription$ Add {W} to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ U | SpellDescription$ Add {U} to your mana pool.
A:AB$ Animate | Cost$ 4 W U | Defined$ Self | Power$ 4 | Toughness$ 4 | Types$ Artifact,Creature,Dragon | Colors$ White,Blue | Keywords$ Flying | SpellDescription$ CARDNAME becomes a 4/4 white and blue Dragon artifact creature with flying until end of turn.
SVar:RemRandomDeck:True
DeckNeeds:Color$White|Blue
SVar:Picture:http://www.wizards.com/global/images/magic/general/ojutai_monument.jpg
Oracle:{T}: Add {W} or {U} to your mana pool.\n{4}{W}{U}: Ojutai Monument becomes a 4/4 white and blue Dragon artifact creature with flying until end of turn.
- Code: Select all
Name:Pitiless Horde
ManaCost:2 B
Types:Creature Orc Berserker
PT:5/3
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigLoseLife | TriggerDescription$ At the beginning of your upkeep, you lose 2 life.
SVar:TrigLoseLife:AB$LoseLife | Cost$ 0 | Defined$ You | LifeAmount$ 2
K:Dash:2 B B
SVar:Picture:http://www.wizards.com/global/images/magic/general/pitiless_horde.jpg
Oracle:At the beginning of your upkeep, you lose 2 life.\nDash {2}{B}{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:Rending Volley
ManaCost:R
Types:Instant
K:CARDNAME can't be countered.
A:SP$ DealDamage | Cost$ R | ValidTgts$ Creature.White,Creature.Blue | NumDmg$ 4 | TgtPrompt$ Select target white or blue creature. | SpellDescription$ CARDNAME deals 4 damage to target white or blue creature.
SVar:RemRandomDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/rending_volley.jpg
Oracle:Rending Volley can't be countered by spells or abilities.\nRending Volley deals 4 damage to target white or blue creature.
- Code: Select all
Name:Silumgar Monument
ManaCost:3
Types:Artifact
A:AB$ Mana | Cost$ T | Produced$ U | SpellDescription$ Add {U} to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ B | SpellDescription$ Add {B} to your mana pool.
A:AB$ Animate | Cost$ 4 U B | Defined$ Self | Power$ 4 | Toughness$ 4 | Types$ Artifact,Creature,Dragon | Colors$ Blue,Black | Keywords$ Flying | SpellDescription$ CARDNAME becomes a 4/4 blue and black Dragon artifact creature with flying until end of turn.
SVar:RemRandomDeck:True
DeckNeeds:Color$Blue|Black
SVar:Picture:http://www.wizards.com/global/images/magic/general/silumgar_monument.jpg
Oracle:{T}: Add {U} or {B} to your mana pool.\n{4}{U}{B}: Silumgar Monument becomes a 4/4 blue and black Dragon artifact creature with flying until end of turn.
- Code: Select all
Name:Tapestry of the Ages
ManaCost:4
Types:Artifact
A:AB$ Draw | Cost$ 2 T | NumCards$ 1 | CheckSVar$ X | SVarCompare$ GE1 | SpellDescription$ Draw a card. Activate this ability only if you've cast a noncreature spell this turn.
SVar:X:Count$ThisTurnCast_Card.YouCtrl+nonCreature
SVar:Picture:http://www.wizards.com/global/images/magic/general/tapestry_of_the_ages.jpg
Oracle:{2}, {T}: Draw a card. Activate this ability only if you've cast a noncreature spell this turn.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 11 Mar 2015, 17:06
- Code: Select all
Name:Surrak, the Hunt Caller
ManaCost:2 G G
Types:Legendary Creature Human Warrior
PT:5/4
T:Mode$ Phase | Phase$ BeginCombat | ValidPlayer$ You | TriggerZones$ Graveyard | CheckSVar$ X | SVarCompare$ GE8 | Execute$ TrigPump | TriggerDescription$ Formidable - At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.
SVar:X:Count$SumPower_Creature.YouCtrl
SVar:TrigPump:AB$ Pump | Cost$ 0 | ValidTgts$ Creature.YouCtrl | TgtPrompt$ Select target creature you control | KW$ Haste
SVar:Picture:http://www.wizards.com/global/images/magic/general/surrak_the_hunt_caller.jpg
Oracle:Formidable - At the beginning of combat on your turn, if creatures you control have total power 8 or greater, target creature you control gains haste until end of turn.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 11 Mar 2015, 19:45
- Code: Select all
Name:Belltoll Dragon
ManaCost:5 U
Types:Creature Dragon
PT:3/3
K:Flying
K:Hexproof
K:Megamorph:5 U U
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigCounters | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, put a +1/+1 counter on each other Dragon creature you control.
SVar:TrigCounters:AB$ PutCounterAll | Cost$ 0 | ValidCards$ Creature.Dragon+YouCtrl+other | CounterType$ P1P1 | CounterNum$ 1
SVar:Picture:http://www.wizards.com/global/images/magic/general/herdchaser_dragon.jpg
Oracle:Flying, hexproof\nMegamorph {5}{U}{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 Belltoll Dragon is turned face up, put a +1/+1 counter on each other Dragon creature you control.
Re: Dragons of Tarkir Spoiler Season
by Marek14 » 12 Mar 2015, 09:36
Commune with Lava - not sure how to write the duration "until end of your next turn"
- Code: Select all
Name:Ainok Survivalist
ManaCost:1 G
Types:Creature Hound Shaman
PT:2/1
K:Megamorph:1 G
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigDestroy | TriggerZones$ Battlefield | TriggerDescription$ When CARDNAME is turned face up, destroy target artifact or enchantment an opponent controls.
SVar:TrigDestroy:AB$Destroy | Cost$ 0 | ValidTgts$ Artifact.OppCtrl,Enchantment.OppCtrl | TgtPrompt$ Select target artifact or enchantment an opponent controls
SVar:Picture:http://www.wizards.com/global/images/magic/general/ainok_survivalist.jpg
Oracle:Megamorph {1}{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 Ainok Survivalist is turned face up, destroy target artifact or enchantment an opponent controls.
- Code: Select all
Name:Damnable Pact
ManaCost:X B B
Types:Sorcery
A:SP$ Draw | Cost$ X B B | NumCards$ X | ValidTgts$ Player | TgtPrompt$ Choose a player | References$ X | SubAbility$ DBLoseLife | SpellDescription$ Target player draws X cards and loses X life.
SVar:DBLoseLife:DB$LoseLife | LifeAmount$ X | References$ X | Defined$ Targeted
SVar:X:Count$xPaid
SVar:Picture:http://www.wizards.com/global/images/magic/general/damnable_pact.jpg
Oracle:Target player draws X cards and loses X life.
- Code: Select all
Name:Icefall Regent
ManaCost:3 U U
Types:Creature Dragon
PT:4/3
K:Flying
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigTap | TriggerDescription$ When CARDNAME enters the battlefield, tap target creature an opponent controls. That creature doesn't untap for as long as you control CARDNAME.
SVar:TrigTap:AB$ Tap | Cost$ 0 | ValidTgts$ Creature.OppCtrl | TgtPrompt$ Select target creature an opponent controls | SubAbility$ DBPump
SVar:DBPump:DB$ Pump | Defined$ Targeted | KW$ HIDDEN CARDNAME doesn't untap during your untap step. | UntilLoseControlOfHost$ True
S:Mode$ RaiseCost | ValidTarget$ Card.Self | Activator$ Opponent | Type$ Spell | Amount$ 2 | Description$ Spells your opponents cast that target CARDNAME cost {2} more to cast.
SVar:PlayMain1:TRUE
SVar:Picture:http://www.wizards.com/global/images/magic/general/icefall_regent.jpg
Oracle:Flying\nWhen Icefall Regent enters the battlefield, tap target creature an opponent controls. That creature doesn't untap during its controller's untap step for as long as you control Icefall Regent.\nSpells your opponents cast that target Icefall Regent cost {2} more to cast.
- Code: Select all
Name:Silkwrap
ManaCost:1 W
Types:Enchantment
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigExile | TriggerDescription$ When CARDNAME enters the battlefield, exile target creature with converted mana cost 3 or less an opponent controls until CARDNAME leaves the battlefield.
SVar:TrigExile:AB$ ChangeZone | Cost$ 0 | Origin$ Battlefield | Destination$ Exile | RememberChanged$ True | ValidTgts$ Creature.cmcLE3+OppCtrl | TgtPrompt$ Select target creature with converted mana cost 3 or less an opponent controls | ConditionPresent$ Card.Self | SubAbility$ DBEffect
SVar:DBEffect:DB$ Effect | Triggers$ ComeBack | RememberObjects$ Targeted | ImprintCards$ Self | SVars$ TrigReturn,ExileSelf | ConditionPresent$ Card.Self | Duration$ Permanent
SVar:ComeBack:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Any | ValidCard$ Card.IsImprinted | Execute$ TrigReturn | TriggerZones$ Command | TriggerController$ TriggeredCardController | Static$ True | TriggerDescription$ That permanent is exiled until Banishing Light leaves the battlefield
SVar:TrigReturn:AB$ ChangeZoneAll | Cost$ 0 | Origin$ Exile | Destination$ Battlefield | ChangeType$ Card.IsRemembered | SubAbility$ ExileSelf
SVar:ExileSelf:DB$ ChangeZone | Origin$ Command | Destination$ Exile | Defined$ Self
SVar:PlayMain1:TRUE
SVar:NeedsToPlay:Creature.cmcLE3+OppCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/silkwrap.jpg
Oracle:When Silkwrap enters the battlefield, exile target creature with converted mana cost 3 or less an opponent controls until Silkwrap leaves the battlefield. (That creature returns under its owner's control.)
- Code: Select all
Name:Vial of Dragonfire
ManaCost:2
Types:Artifact
A:AB$ DealDamage | Cost$ 2 T Sac<1/CARDNAME> | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumDmg$ 2 | SpellDescription$ CARDNAME deals 2 damage to target creature.
SVar:Picture:http://www.wizards.com/global/images/magic/general/vial_of_dragonfire.jpg
Oracle:{2}, {T}, Sacrifice Vial of Dragonfire: Vial of Dragonfire deals 2 damage to target creature.
- Code: Select all
Name:Wandering Tombshell
ManaCost:3 B
Types:Creature Zombie Turtle
PT:1/6
SVar:Picture:http://www.wizards.com/global/images/magic/general/wandering_tombshell.jpg
Oracle:
Re: Dragons of Tarkir Spoiler Season
by friarsol » 12 Mar 2015, 13:57
Yea looks like someone broke that again. It's fixed in r29015.Marek14 wrote:Tried to test the Tapestry, but Forge crashed the moment I tried to select the test deck. Maybe because Forge cannot determine the last set?
- 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 » 12 Mar 2015, 14:15
- Code: Select all
Name:Myth Realized
ManaCost:W
Types:Enchantment
T:Mode$ SpellCast | ValidCard$ Card.nonCreature | ValidActivatingPlayer$ You | Execute$ TrigPutCounter | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast a noncreature spell, put a lore counter on CARDNAME.
SVar:TrigPutCounter:AB$PutCounter | Cost$ 0 | Defined$ Self | CounterType$ LORE | CounterNum$ 1
A:AB$ PutCounter | Cost$ 2 W | CounterType$ LORE | CounterNum$ 1 | SpellDescription$ Put a lore counter on CARDNAME.
A:AB$ Animate | Cost$ W | Defined$ Self | Types$ Creature,Monk,Avatar | staticAbilities$ Static | SpellDescription$ Until end of turn, CARDNAME becomes a Monk Avatar creature in addition to its other types and gains "This creature's power and toughness are each equal to the number of lore counters on it."
SVar:Static:Mode$ Continuous | EffectZone$ Battlefield | CharacteristicDefining$ True | SetPower$ X | SetToughness$ X | Description$ This creature's power and toughness are each equal to the number of charge counters on it.
SVar:X:Count$CardCounters.LORE
SVar:Picture:http://www.wizards.com/global/images/magic/general/myth_realized.jpg
Oracle:Whenever you cast a noncreature spell, put a lore counter on Myth Realized.\n{2}{W}: Put a lore counter on Myth Realized.\n{W}: Until end of turn, Myth Realized becomes a Monk Avatar creature in addition to its other types and gains "This creature's power and toughness are each equal to the number of lore counters on it."
Who is online
Users browsing this forum: No registered users and 33 guests