M13 Spoiler Season
Post MTG Forge Related Programming Questions Here
Moderators: timmermac, Blacksmith, KrazyTheFox, Agetian, friarsol, CCGHQ Admins
67 posts
• Page 2 of 5 • 1, 2, 3, 4, 5
Re: M13 Spoiler Season
by ZzzzSleep » 20 Jun 2012, 14:17
What do you get when you smash together a Rod of Ruin and a Howling Mine? Staff of Nin!
- Staff of Nin | Open
- Code: Select all
Name:Staff of Nin
ManaCost:6
Types:Artifact
Text:no text
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigDraw | TriggerDescription$ At the beginning of your upkeep, draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | NumCards$ 1 | Defined$ You
A:AB$ DealDamage | Cost$ T | Tgt$ TgtCP | NumDmg$ 1 | SpellDescription$ CARDNAME deals 1 damage to target creature or player.
SVar:Rarity:Rare
End
Re: M13 Spoiler Season
by ZzzzSleep » 25 Jun 2012, 11:20
More white cards!
- Griffin Protector | Open
- Code: Select all
Name:Griffin Protector
ManaCost:3 W
Types:Creature Griffin
Text:no text
PT:2/3
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigPump | TriggerDescription$ Whenever a creature enters the battlefield under your control, CARDNAME gets +1/+1 until end of turn.
SVar:TrigPump:AB$Pump | Cost$ 0 | Defined$ Self | NumAtt$ 1 | NumDef$ 1
SVar:BuffedBy:Creature
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/griffin_protector.jpg
End
- Healer of the Pride | Open
- Code: Select all
Name:Healer of the Pride
ManaCost:3 W
Types:Creature Cat Cleric
Text:no text
PT:2/3
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.Other+YouCtrl | TriggerZones$ Battlefield | Execute$ TrigGainLife | TriggerDescription$ Whenever another creature enters the battlefield unfrt your control, you gain 2 life.
SVar:TrigGainLife:AB$GainLife | Cost$ 0 | Defined$ You | LifeAmount$ 2
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/healer_of_the_pride.jpg
End
Re: M13 Spoiler Season
by ZzzzSleep » 25 Jun 2012, 12:01
And a blue card!
- Downpour | Open
- Code: Select all
Name:Downpour
ManaCost:1 U
Types:Instant
Text:no text
A:SP$ Tap | Cost$ 1 U | ValidTgts$ Creature | TgtPrompt$ Select up to three target creatures | TargetMin$ 0 | TargetMax$ 3 | SpellDescription$ Tap up to three target creatures.
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/downpour.jpg
End
Re: M13 Spoiler Season
by sagephoenix » 30 Jun 2012, 22:19
Been away from PC lately. Getting back to coding cards.
- sagephoenix
- Posts: 177
- Joined: 29 Aug 2011, 14:07
- Has thanked: 57 times
- Been thanked: 3 times
Re: M13 Spoiler Season
by torridus » 03 Jul 2012, 13:26
I know some these cards have been claimed already but I needed to code them to test a couple of deck ideas, and figured I'd share since they were already done! Please let me know if anything is incorrect because I haven't attempted to code in cards since Forge 10/19/2010.
I also attempted "Touch of the Eternal" but I'm not 100% sure if I did it correctly or not.
- Ajani, Caller of the Pride (claimed by Scerkor earlier)
- Faith's Reward
- Odric, Master Tactician
Here's the remaining Wild Nacatl -esque cycle:

- Thragtusk | Open
- Code: Select all
Name:Thragtusk
ManaCost:4 G
Types:Creature Beast
Text:no text
PT:5/3
T:Mode$ ChangesZone | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ Life | TriggerDescription$ Whenever this creature enters the battlefield, you gain 5 life.
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Any | ValidCard$ Card.Self | Execute$ Token | TriggerDescription$ Whenever this creature leaves the battlefield, put a 3/3 green Beast creature token onto the battlefield
SVar:Token:AB$ Token | Cost$ 0 | TokenOwner$ You | TokenName$ Beast | TokenColors$ Green | TokenTypes$ Creature,Beast | TokenPower$ 3 | TokenToughness$ 3 | TokenAmount$ 1
SVar:Life:DB$ GainLife | Defined$ You | LifeAmount$ 5
SVar:Rarity:Rare
Oracle:When Thragtusk enters the battlefield, you gain 5 life. When Thragtusk leaves the battlefield, put a 3/3 green Beast creature token onto the battlefield.
End
- Prized Elephant | Open
- Code: Select all
Name:Prized Elephant
ManaCost:3 W
Types:Creature Elephant
Text:no text
PT:3/3
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 1 | AddToughness$ 1 | CheckSVar$ X | SVarCompare$ GE1 | Description$ CARDNAME gets +1/+1 as long as you control a Forest.
A:AB$ Pump | Cost$ G | KW$ Trample | SpellDescription$ CARDNAME gets trample until end of turn.
SVar:X:Count$Valid Forest.YouCtrl
SVar:Rarity:Uncommon
Oracle:Prized Elephant gets +1/+1 as long as you control a Forest.\nG: Prized Elephant gains trample until end of turn.
End
- Show of Valor | Open
- Code: Select all
Name:Show of Valor
ManaCost:1 W
Types:Instant
Text:no text
A:SP$ Pump | Cost$ 1 W | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +2 | NumDef$ +4 | SpellDescription$ Target creature gets +2/+4 until end of turn.
SVar:Rarity:Common
Oracle:Target creature gets +2/+4 until end of turn.
End
- Captain's Call | Open
- Code: Select all
Name:Captain's Call
ManaCost:3 W
Types:Sorcery
Text:Put three 1/1 white Soldier creature tokens onto the battlefield.
A:SP$ Token | Cost$ 3 W | TokenAmount$ 3 | TokenName$ Soldier | TokenTypes$ Creature,Soldier | TokenOwner$ You | TokenColors$ White | TokenPower$ 1 | TokenToughness$ 1
SVar:PlayMain1:TRUE
SVar:Rarity:Common
Oracle:Put three 1/1 white Soldier creature tokens onto the battlefield.
End
I also attempted "Touch of the Eternal" but I'm not 100% sure if I did it correctly or not.
- Touch of the Eternal | Open
- Code: Select all
Name:Touch of the Eternal
ManaCost:5 W W
Types:Enchantment
Text:no text
T:Mode$ Phase | Phase$ Upkeep | TriggerZones$ Battlefield | Execute$ TrigLife | TriggerDescription$ At the beginning of your upkeep, your life total becomes equal to the number of permanents you control.
SVar:TrigLife:AB$SetLife | Cost$ 0 | Defined$ You | LifeAmount$ X
SVar:X:Count$TypeYouCtrl.Permanent
SVar:Rarity:Rare
Oracle:At the beginning of your upkeep, your life total becomes equal to the number of permanents you control.
End
- Ajani, Caller of the Pride (claimed by Scerkor earlier)
- Faith's Reward
- Odric, Master Tactician
Here's the remaining Wild Nacatl -esque cycle:
- Arctic Aven | Open
- Code: Select all
Name:Arctic Aven
ManaCost:2 U
Types:Creature Bird
Text:no text
PT:2/1
K:Flying
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 1 | AddToughness$ 1 | CheckSVar$ X | SVarCompare$ GE1 | Description$ CARDNAME gets +1/+1 as long as you control a Plains.
A:AB$ Pump | Cost$ W | KW$ Lifelink | SpellDescription$ CARDNAME gets lifelink until end of turn.
SVar:X:Count$Valid Plains.YouCtrl
SVar:Rarity:Uncommon
Oracle:Arctic Aven gets +1/+1 as long as you control a Plains.\nW: Arctic Aven gains lifelink until end of turn.
End
- Harbor Bandit | Open
- Code: Select all
Name:Harbor Bandit
ManaCost:2 B
Types:Creature Human Rogue
Text:no text
PT:2/2
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 1 | AddToughness$ 1 | CheckSVar$ X | SVarCompare$ GE1 | Description$ CARDNAME gets +1/+1 as long as you control a Island.
A:AB$ Pump | Cost$ 1 U | KW$ Unblockable | SpellDescription$ CARDNAME is unblockable this turn.
SVar:X:Count$Valid Island.YouCtrl
SVar:Rarity:Uncommon
Oracle:Harbor Bandit gets +1/+1 as long as you control an Island.\n1 W: Harbor Bandit is unblockable this turn.
End

- Crimson Muckwader | Open
- Code: Select all
Name:Crimson Muckwader
ManaCost:1 R
Types:Creature Lizard
Text:no text
PT:2/1
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 1 | AddToughness$ 1 | CheckSVar$ X | SVarCompare$ GE1 | Description$ CARDNAME gets +1/+1 as long as you control a Swamp.
A:AB$ Pump | Cost$ 2 B | KW$ Regenerate | SpellDescription$ Regenerate CARDNAME.
SVar:X:Count$Valid Swamp.YouCtrl
SVar:Rarity:Uncommon
Oracle:Crimson Muckwader gets +1/+1 as long as you control a Swamp.\n2 B: Regenerate Crimson Muckwader.
End
- Flinthoof Boar | Open
- Code: Select all
Name:Flinthoof Boar
ManaCost:1 G
Types:Creature Boar
Text:no text
PT:2/2
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 1 | AddToughness$ 1 | CheckSVar$ X | SVarCompare$ GE1 | Description$ CARDNAME gets +1/+1 as long as you control a Mountain.
A:AB$ Pump | Cost$ R | KW$ Haste | SpellDescription$ CARDNAME gains haste until end of turn.
SVar:X:Count$Valid Mountain.YouCtrl
SVar:Rarity:Uncommon
Oracle:Flinthoof Boar gets +1/+1 as long as you control a Mountain.\nR: Flinthoof Boar gains haste until end of turn.
End
Re: M13 Spoiler Season
by ZzzzSleep » 04 Jul 2012, 22:50
Is there a list of still unclaimed cards? The forge upcoming wiki entry looks out of date...
http://www.slightlymagic.net/wiki/Forge_Upcoming
http://www.slightlymagic.net/wiki/Forge_Upcoming
Re: M13 Spoiler Season
by squee1968 » 06 Jul 2012, 09:06
Pretty slim pickins left for me, but as they say, you snooze, you lose.
Public Execution
Chandra's Fury
Magmaquake
Slumbering Dragon
Thundermaw Hellkite
Boundless Realms
Fungal Sprouting
Mwonvuli Beast Tracker
Predatory Rampage
Timberpack Wolf
- Code: Select all
Name:Bloodhunter Bat
ManaCost:3 B
Types:Creature Bat
Text:no text
PT:2/2
K:Flying
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigLoseLife | TriggerDescription$ When CARDNAME enters the battlefield, target player loses 2 life and you gain 2 life.
SVar:TrigLoseLife:AB$LoseLife | Cost$ 0 | ValidTgts$ Player | TgtPrompt$ Choose target player | LifeAmount$ 2 | SubAbility$ DBGainLife
SVar:DBGainLife:DB$GainLife | Defined$ You | LifeAmount$ 2
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/bloodhunter_bat.jpg
End
- Code: Select all
Name:Courtly Provocateur
ManaCost:2 U
Types:Creature Human Wizard
Text:no text
PT:1/1
A:AB$ Pump | Cost$ T | ValidTgts$ Creature | TgtPrompt$ Select target creature | KW$ HIDDEN CARDNAME attacks each turn if able. | IsCurse$ True | SpellDescription$ Target creature attacks this turn if able.
A:AB$Pump | Cost$ T | ValidTgts$ Creature | TgtPrompt$ Select target creature | KW$ HIDDEN CARDNAME blocks each turn if able. | SpellDescription$ Target creature blocks this turn if able.
SVar:RemAIDeck:True
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/courtly_provocateur.jpg
End
- Code: Select all
Name:Disciple of Bolas
ManaCost:3 B
Types:Creature Human Wizard
Text:no text
PT:2/1
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigSac | TriggerDescription$ When CARDNAME enters the battlefield, sacrifice another creature. You gain X life and draw X cards, where X is that creature's power.
SVar:TrigSac:AB$ Sacrifice | Cost$ 0 | Amount$ 1 | SacValid$ Creature.Other | RememberSacrificed$ True | Mandatory$ True | SubAbility$ GainLife
SVar:GainLife:AB$ GainLife | Cost$ 0 | LifeAmount$ X | References$ X | SubAbility$ DBDraw
SVar:DBDraw:DB$ Draw | NumCards$ X | References$ X
SVar:X:Remembered$CardPower
SVar:NeedsToPlay:Creature.YouCtrl
SVar:RemAIDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/disciple_of_bolas.jpg
End
- Code: Select all
Name:Encrust
ManaCost:1 U U
Types:Enchantment Aura
Text:no text
K:Enchant artifact or creature
A:SP$ Attach | Cost$ 1 U U | ValidTgts$ Creature | AILogic$ Curse
S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddHiddenKeyword$ HIDDEN CARDNAME doesn't untap during your untap step. & HIDDEN CARDNAME's activated abilities can't be activated. | Description$ Enchanted permanent doesn't untap during its controller's untap step and its activated abilities can't be activated.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/encrust.jpg
End
- Code: Select all
Name:Faith's Reward
ManaCost:3 W
Types:Instant
Text:no text
A:SP$ ChangeZone | Cost$ 3 W | Origin$ Graveyard | Destination$ Battlefield | Defined$ ThisTurnEntered_Graveyard_from_Battlefield_Permanent.YouCtrl | SpellDescription$ Return to the battlefield all permanent cards in your graveyard that were put there from the battlefield this turn.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/faiths_reward.jpg
End
- Code: Select all
Name:Jace's Phantasm
ManaCost:U
Types:Creature Illusion
Text:no text
PT:1/1
K:Flying
S:Mode$ Continuous | Affected$ Card.Self | AddPower$ 4 | AddToughness$ 4 | CheckSVar$ X | SVarCompare$ GE10 | References$ X | Description$ CARDNAME gets +4/+4 as long as an opponent has ten or more cards in his or her graveyard.
SVar:X:Count$InOppYard
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/jaces_phantasm.jpg
End
- Code: Select all
Name:Nefarox, Overlord of Grixis
ManaCost:4 U U
Types:Legendary Creature Demon
Text:no text
PT:5/5
K:Flying
K:Exalted
T:Mode$ Attacks | ValidCard$ Card.Self | Alone$ True | Execute$ TrigSac | TriggerDescription$ Whenever CARDNAME attacks alone, defending player sacrifices a creature.
SVar:TrigSac:AB$Sacrifice | Cost$ 0 | Defined$ Opponent | SacValid$ Creature
SVar:HasAttackEffect:TRUE
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/nefarox_overlord_of_grixis.jpg
End
- Code: Select all
Name:Spelltwine
ManaCost:5 U
Types:Sorcery
Text:no text
A:SP$ ChangeZone | Cost$ 5 U | Origin$ Graveyard | Destination$ Exile | TgtPrompt$ Choose target instant or sorcery card in your graveyard | ValidTgts$ Instant.YouCtrl,Sorcery.YouCtrl | SubAbility$ CopyYou | SpellDescription$ Exile target instant or sorcery card from your graveyard and target instant or sorcery from your opponent's graveyard. Copy those cards. Cast the copies if able without paying their mana cost.
SVar:CopyYou:AB$ CopySpell | Cost$ 0 | Defined$ Targeted | SubAbility$ TgtOpp
SVar:TgtOpp:AB$ ChangeZone | Cost$ 5 U | Origin$ Graveyard | Destination$ Exile | TgtPrompt$ Choose target instant or sorcery card in your opponent's graveyard | ValidTgts$ Instant.YouDontCtrl,Sorcery.YouDontCtrl | RememberChanged$ True | SubAbility$ CopyOpp
SVar:CopyOpp:AB$ CopySpell | Cost$ 0 | Defined$ Remembered | SubAbility$ DBChange
SVar:DBChange:DB$ChangeZone | Origin$ Stack | Destination$ Exile | Description$ Exile CARDNAME.
SVar:RemAIDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/spelltwine.jpg
End
- Code: Select all
Name:Talrand, Sky Summoner
ManaCost:2 U U
Types:Legendary Creature Merfolk Wizard
Text:no text
PT:2/2
T:Mode$ SpellCast | ValidCard$ Instant,Sorcery | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigToken | TriggerDescription$ Whenever you cast an instant or sorcery spell, put a 2/2 blue Drake creature token with flying onto the battlefield.
SVar:TrigToken:AB$Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Drake | TokenTypes$ Creature,Drake | TokenColors$ Blue | TokenPower$ 2 | TokenToughness$ 2 | TokenOwner$ You | TokenKeywords$ Flying
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/talrand_sky_summoner.jpg
End
- Code: Select all
Name:Void Stalker
ManaCost:1 U
Types:Creature Elemental
Text:no text
PT:2/1
A:AB$ ChangeZone | Cost$ 2 U T | ValidTgts$ Creature | TgtPrompt$ Select target creature | Origin$ Battlefield | Destination$ Library | LibraryPosition$ 0 | RememberChanged$ True | ForgetOtherRemembered$ True | SubAbility$ SelfBounce | SpellDescription$ Put CARDNAME and target creature on top of their owner's libraries, then those players shuffle their libraries.
SVar:SelfBounce:DB$ ChangeZone | Defined$ Self | Origin$ Battlefield | Destination$ Library | LibraryPosition$ 0 | SubAbility$ ShuffleCheckOpp
SVar:ShuffleCheckOpp:DB$ Shuffle | Defined$ Opponent | SubAbility$ ShuffleCheckYou | ConditionCheckSVar$ X | References$ X
SVar:ShuffleCheckYou:DB$ Shuffle | Defined$ You | SubAbility$ DBCleanup
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:X:Remembered$Amount
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/void_stalker.jpg
End
Public Execution
Chandra's Fury
Magmaquake
Slumbering Dragon
Thundermaw Hellkite
Boundless Realms
Fungal Sprouting
Mwonvuli Beast Tracker
Predatory Rampage
Timberpack Wolf
Re: M13 Spoiler Season
by friarsol » 06 Jul 2012, 13:03
Looks like M13 is up on Magiccards.info which means our setinfoscript will work now.
http://magiccards.info/m13/en.html
Looks like there are only 107 new cards: http://magiccards.info/query?q=%2B%2Be% ... st&s=cname
And 142 reprints: http://magiccards.info/query?q=%2B%2Be% ... st&s=cname
We should run setinfo and merge the branch. New mtgdata should be ready sometime today too I believe.
http://magiccards.info/m13/en.html
Looks like there are only 107 new cards: http://magiccards.info/query?q=%2B%2Be% ... st&s=cname
And 142 reprints: http://magiccards.info/query?q=%2B%2Be% ... st&s=cname
We should run setinfo and merge the branch. New mtgdata should be ready sometime today too I believe.
- friarsol
- Global Moderator
- Posts: 7593
- Joined: 15 May 2010, 04:20
- Has thanked: 243 times
- Been thanked: 965 times
Re: M13 Spoiler Season
by Sloth » 06 Jul 2012, 17:47
I will try it now.friarsol wrote:We should run setinfo and merge the branch. New mtgdata should be ready sometime today too I believe.
-
Sloth - Programmer
- Posts: 3498
- Joined: 23 Jun 2009, 19:40
- Has thanked: 125 times
- Been thanked: 507 times
Re: M13 Spoiler Season
by friarsol » 06 Jul 2012, 17:53
I just uploaded the new mtg-data so we can run Oracle text on all the new cards either before or after the merge (more likely after if you are already in process).
- friarsol
- Global Moderator
- Posts: 7593
- Joined: 15 May 2010, 04:20
- Has thanked: 243 times
- Been thanked: 965 times
Re: M13 Spoiler Season
by Sloth » 06 Jul 2012, 19:05
It seems that claiming cards didn't really work out this time. So here is the list of new M13 cards still missing:
- | Open
- Ajani, Caller of the Pride
Boundless Realms
Chandra's Fury
Cleaver Riot
Dragon Hatchling
Elderscale Wurm
Firewing Phoenix
Flames of the Firebrand
Fungal Sprouting
Gem of Becoming
Hellion Crucible
Krenko, Mob Boss
Magmaquake
Mwonvuli Beast Tracker
Odric, Master Tactician
Predatory Rampage
Primal Huntbeast
Public Execution
Ring of Evos Isle
Ring of Kalonia
Ring of Thune
Ring of Valkas
Ring of Xathrid
Roaring Primadox
Rummaging Goblin
Sands of Delirium
Sentinel Spider
Slumbering Dragon
Spiked Baloth
Switcheroo
Thundermaw Hellkite
Timberpack Wolf
Trading Post
Wild Guess
Worldfire
Xathrid Gorgon
Yeva's Forcemage
Yeva, Nature's Herald
Last edited by Sloth on 06 Jul 2012, 19:32, edited 1 time in total.
-
Sloth - Programmer
- Posts: 3498
- Joined: 23 Jun 2009, 19:40
- Has thanked: 125 times
- Been thanked: 507 times
Re: M13 Spoiler Season
by friarsol » 06 Jul 2012, 19:24
Yea I feel like magiccards.info usually gets their list up earlier in the week, which helps fill in the remaining gaps. I think it's just the summer interfering with people's abilities to jump in and help. A bunch of these look like fairly straightforward scripters. So hopefully a good batch will be done this weekend.Sloth wrote:It seems that claiming cards didn't really work out this time. So here is the list of new M13 cards still missing:
- friarsol
- Global Moderator
- Posts: 7593
- Joined: 15 May 2010, 04:20
- Has thanked: 243 times
- Been thanked: 965 times
Re: M13 Spoiler Season
by moomarc » 06 Jul 2012, 21:32
Unfortunately I've had little free time to commit to this release, but should have a few hours on Monday if anything's left. Squee also claimed another 10 from the list leaving 28 cards (I seem to recall from AVR that he was unable to commit changes to the wiki for some reason so couldn't claim cards there) so I don't think there'll be too much left after the weekend. Thanks for the list though. Normally towards the end of a release I try get unclaimed cards up on the wiki but I was too out of the loop this time. Congrats to everyone thoughfriarsol wrote:Yea I feel like magiccards.info usually gets their list up earlier in the week, which helps fill in the remaining gaps. I think it's just the summer interfering with people's abilities to jump in and help. A bunch of these look like fairly straightforward scripters. So hopefully a good batch will be done this weekend.Sloth wrote:It seems that claiming cards didn't really work out this time. So here is the list of new M13 cards still missing:

-Marc
-
moomarc - Pixel Commander
- Posts: 2091
- Joined: 04 Jun 2010, 15:22
- Location: Johannesburg, South Africa
- Has thanked: 371 times
- Been thanked: 372 times
Re: M13 Spoiler Season
by ArsenalNut » 06 Jul 2012, 23:59
I had to script at least one card in this set
Now back to the crashing clones

- Ajani, Caller of the Pride | Open
- Name:Ajani, Caller of the Pride
ManaCost:1 W W
Types:Planeswalker Ajani
Text:no text
Loyalty:4
A:AB$ PutCounter | Cost$ AddCounter<1/LOYALTY> | Planeswalker$ True | CounterNum$ 1 | CounterType$ P1P1 | TargetMin$ 0 | TargetMax$ 1 | ValidTgts$ Creature | TgtPrompt$ Select target creature | SpellDescription$ Put a +1/+1 counter on up to one target creature.
A:AB$ Pump | Cost$ SubCounter<3/LOYALTY> | Planeswalker$ True | ValidTgts$ Creature | TgtPrompt$ Select target creature | KW$ Flying & Double Strike | SpellDescription$ Target creature gains flying and double strike until end of turn.
A:AB$ Token | Cost$ SubCounter<8/LOYALTY> | Planeswalker$ True | TokenAmount$ X | References$ X | TokenName$ Cat | TokenTypes$ Creature,Cat | TokenOwner$ You | TokenColors$ White | TokenPower$ 2 | TokenToughness$ 2 | SpellDescription$ Put X 2/2 white Cat creature tokens onto the battlefield, where X is your life total.
SVar:X:Count$YourLifeTotal
SVar:Rarity:Mythic
SVar:Picture:http://www.wizards.com/global/images/magic/general/ajani_caller_of_the_pride.jpg
SetInfo:M13|Mythic|http://magiccards.info/scans/en/m13/1.jpg
Oracle:[+1] Put a +1/+1 counter on up to one target creature.\n[-3] Target creature gains flying and double strike until end of turn.\n[-8] Put X 2/2 white Cat creature tokens onto the battlefield, where X is your life total.
End
Now back to the crashing clones

So many cards, so little time
-
ArsenalNut - Posts: 512
- Joined: 08 Jul 2011, 03:49
- Has thanked: 27 times
- Been thanked: 121 times
Re: M13 Spoiler Season
by squee1968 » 07 Jul 2012, 01:06
@moomarc: yep, I'm still unable to claim cards via wiki. Not a big deal. Not sure if the 28 cards remaining includes the first 10 that i posted above (9 of which have been added already by Sloth, btw), but I'll post the next 10 that I claimed now, and lay claim to the remaining 8, which will probably be done today.
Gem of Becoming
Ring of Evos Isle
Ring of Kalonia
Ring of Thune
Ring of Valkas
Ring of Xathrid
Trading Post
Hellion Crucible
- Code: Select all
Name:Boundless Realms
ManaCost:6 G
Types:Sorcery
Text:no text
A:SP$ ChangeZone | Cost$ 6 G | Origin$ Library | Destination$ Battlefield | ChangeType$ Land.Basic | ChangeNum$ X | References$ X | Tapped$ True | SpellDescription$ Search your library for X basic land cards, where X is the number of lands you control, and put them onto the battlefield tapped. Then shuffle your library.
SVar:X:Count$Valid Land.YouCtrl
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/boundless_realms.jpg
End
- Code: Select all
Name:Chandra's Fury
ManaCost:4 R
Types:Instant
Text:no text
A:SP$ DealDamage | Cost$ 4 R | Tgt$ Player | NumDmg$ 4 | SubAbility$ DmgAll | SpellDescription$ CARDNAME deals 4 damage to target player and 1 damage to each creature that player controls.
SVar:DmgAll:AB$ DamageAll | Cost$ 0 | NumDmg$ 1 | ValidCards$ Creature.YouDontCtrl
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/chandras_fury.jpg
End
- Code: Select all
Name:Fungal Sprouting
ManaCost:3 G
Types:Sorcery
Text:no text
A:SP$ Token | Cost$ 3 G | TokenAmount$ X | TokenName$ Saproling | TokenTypes$ Creature,Saproling | TokenOwner$ You | TokenColors$ Green | TokenPower$ 1 | TokenToughness$ 1 | References$ X | SpellDescription$ Put X 1/1 green Saproling creature tokens onto the battlefield, where X is the greatest power among creatures you control.
SVar:X:Count$GreatestPowerYouControl
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/fungal_sprouting.jpg
End
- Code: Select all
Name:Magmaquake
ManaCost:X R R
Types:Instant
Text:no text
A:SP$ DamageAll | Cost$ X R R | ValidCards$ Creature.withoutFlying,Planeswalker | NumDmg$ X | References$ X | SpellDescription$ CARDNAME deals X damage to each creature without flying and to each planeswalker.
SVar:X:Count$xPaid
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/magmaquake.jpg
End
- Code: Select all
Name:Mwonvuli Beast Tracker
ManaCost:1 G G
Types:Creature Human Scout
Text:no text
PT:2/1
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ ScoutSearch | TriggerDescription$ When CARDNAME enters the battlefield, search your library for a creature card with deathtouch, hexproof, reach or trample and reveal it. Shuffle your library, then put that card on top of it.
SVar:ScoutSearch:DB$ ChangeZone | Origin$ Library | Destination$ Library | LibraryPosition$ 0 | ChangeNum$ 1 | ChangeType$ Creature.withDeathtouch+YouCtrl,Creature.withHexproof+YouCtrl,Creature.withReach+YouCtrl,Creature.withTrample+YouCtrl
SVar:RemRandomDeck:True
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/mwonvuli_beast_tracker.jpg
End
- Code: Select all
Name:Predatory Rampage
ManaCost:3 G G
Types:Sorcery
Text:no text
A:SP$ PumpAll | Cost$ 3 G G | ValidCards$ Creature.YouCtrl | NumAtt$ +3 | NumDef$ +3 | SubAbility$ OppBlock | SpellDescription$ Creatures you control get +3/+3 until end of turn. Each creature your opponents control blocks this turn if able.
SVar:OppBlock:DB$ PumpAll | ValidCards$ Creature.YouDontCtrl | AddHiddenKeyword$ HIDDEN CARDNAME blocks each turn if able.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/predatory_rampage.jpg
End
- Code: Select all
Name:Public Execution
ManaCost:5 B
Types:Instant
Text:no text
A:SP$ Destroy | Cost$ 5 B | ValidTgts$ Creature.YouDontCtrl | TgtPrompt$ Select target creature an opponent controls | RememberTargets$ True | SubAbility$ WeakenOther | SpellDescription$ Destroy target creature an opponent controls. Each other creature that player controls gets -2/-0 until end of turn.
SVar:WeakenOther:DB$ PumpAll | ValidCards$ Creature.YouDontCtrl+IsNotRemembered | NumAtt$ -2 | IsCurse$ True
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/public_execution.jpg
End
- Code: Select all
Name:Slumbering Dragon
ManaCost:R
Types:Creature Dragon
Text:no text
PT:3/3
K:Flying
S:Mode$ Continuous | Affected$ Card.Self | AddHiddenKeyword$ HIDDEN CARDNAME can't attack or block. | CheckSVar$ X | SVarCompare$ GE5 | References$ X | Description$ CARDNAME can't attack or block unless it has five or more +1/+1 counters on it.
T:Mode$ Attacks | ValidCard$ Creature.YouDontCtrl | TriggerZones$ Battlefield | Execute$ DragonWake | TriggerDescription$ Whenever a creature attacks you or a planeswalker you control, put a +1/+1 counter on CARDNAME.
SVar:TrigPutCounter:AB$PutCounter | Cost$ 0 | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1
SVar:X:Count$NumCounters.P1P1
SVar:RemRandomDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/slumbering_dragon.jpg
End
- Code: Select all
Name:Thundermaw Hellkite
ManaCost:3 R R
Types:Creature Dragon
Text:no text
PT:5/5
K:Flying
K:Haste
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ ThunderDamage | TriggerDescription$ When CARDNAME enters the battlefield, it deals 1 damage to each creature with flying your opponents control. Tap those creatures.
SVar:ThunderDamage:AB$ DamageAll | Cost$ 0 | NumDmg$ 1 | ValidCards$ Creature.withFlying+YouDontCtrl | ValidDescription$ each creature with flying you don't control | SubAbility$ ThunderTap
SVar:ThunderTap:AB$ TapAll | Cost$ 0 | ValidCards$ Creature.withFlying+YouDontCtrl | ValidDescription$ each creature with flying you don't control
SVar:RemAIDeck:True
SVar:Rarity:Mythic
SVar:Picture:http://www.wizards.com/global/images/magic/general/thundermaw_hellkite.jpg
End
- Code: Select all
Name:Timberpack Wolf
ManaCost:1 G
Types:Creature Wolf
Text:no text
PT:2/2
S:Mode$ Continuous | Affected$ Card.Self | NumAtt$ +X | NumDef$ +X | References$ X | SpellDescription$ CARDNAME gets +1/+1 for each other creature you control named CARDNAME.
SVar:X:Count$Valid Creature.namedTimberpack Wolf+YouCtrl/Minus.1
SVar:BuffedBy:Creature.namedTimberpack Wolf
SVar:RemRandomDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/timberpack_wolf.jpg
End
Gem of Becoming
Ring of Evos Isle
Ring of Kalonia
Ring of Thune
Ring of Valkas
Ring of Xathrid
Trading Post
Hellion Crucible
67 posts
• Page 2 of 5 • 1, 2, 3, 4, 5
Who is online
Users browsing this forum: No registered users and 23 guests