Shadows over Innistrad spoiler season
Post MTG Forge Related Programming Questions Here
	Moderators: timmermac, Agetian, friarsol, Blacksmith, KrazyTheFox, CCGHQ Admins
Re: Shadows over Innistrad spoiler season
 by Marek14 » 23 Mar 2016, 07:44
by Marek14 » 23 Mar 2016, 07:44 
Not sure how to do Prized Amalgam, which checks whether a creature entering the battlefield "entered from your graveyard or you cast it from your graveyard". I suppose it can be split in two abilities, since the two conditions are mutually exclusive. For the second part, do we have a proper condition that would work even with things like Gather Specimens or Perplexing Chimera? (It doesn't matter who controls the creature or who controlled it as a spell, only who actually cast it.)
			
		Re: Shadows over Innistrad spoiler season
 by Marek14 » 23 Mar 2016, 15:16
by Marek14 » 23 Mar 2016, 15:16 
- Code: Select all
- Name:The Gitrog Monster
 ManaCost:3 B G
 Types:Legendary Creature Frog Horror
 PT:6/6
 K:Deathtouch
 T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ TrigSacUnless | TriggerZones$ Battlefield | TriggerDescription$ At the beginning of your upkeep, sacrifice CARDNAME unless you sacrifice a land.
 SVar:TrigSacUnless:AB$ Sacrifice | Cost$ 0 | Defined$ Self | UnlessCost$ Sac<1/Land> | UnlessPayer$ You
 S:Mode$ Continuous | Affected$ You | AddKeyword$ AdjustLandPlays:1 | Description$ You may play an additional land on each of your turns.
 T:Mode$ ChangesZone | ValidCard$ Land.YouOwn | OncePerEffect$ True | Origin$ Any | Destination$ Graveyard | TriggerZones$ Battlefield | Execute$ TrigDraw | TriggerDescription$ Whenever one or more land cards are put into your graveyard from anywhere, draw a card.
 SVar:TrigDraw:DB$ Draw | Cost$ 0 | Defined$ You | NumCards$ 1
 SVar:Picture:http://www.wizards.com/global/images/magic/general/the_gitrog_monster.jpg
 Oracle:Deathtouch\nAt the beginning of your upkeep, sacrifice The Gitrog Monster unless you sacrifice a land.\nYou may play an additional land on each of your turns.\nWhenever one or more land cards are put into your graveyard from anywhere, draw a card.
Also, does this work correctly with things like multiple animated lands dying on SBE at the same time or multiple land cards being discarded in cleanup step?
- Code: Select all
- Name:Vessel of Malignity
 ManaCost:1 B
 Types:Enchantment
 A:AB$ ChangeZone | Cost$ 1 B Sac<1/CARDNAME> | ValidTgts$ Opponent | SorcerySpeed$ True | TgtPrompt$ Select target opponent | Origin$ Hand | Destination$ Exile | ChangeType$ Card | ChangeNum$ 2 | Chooser$ Targeted | IsCurse$ True | Mandatory$ True | Hidden$ True | StackDescription$ SpellDescription | SpellDescription$ Target opponent exiles a card from his or her hand. Activate this ability only any time you could cast a sorcery.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/vessel_of_malignity.jpg
 Oracle:{1}{B}, Sacrifice Vessel of Malignity: Target opponent exiles two cards from his or her hand. Activate this ability only any time you could cast a sorcery.
- Code: Select all
- Name:Vessel of Paramnesia
 ManaCost:1 U
 Types:Enchantment
 A:AB$ Mill | Cost$ U Sac<1/CARDNAME> | NumCards$ 3 | ValidTgts$ Player | SubAbility$ DBDraw | TgtPrompt$ Select target player | SpellDescription$ Target player puts the top three cards of his or her library into his or her graveyard. Draw a card.
 SVar:DBDraw:DB$ Draw | Cost$ 0 | Defined$ You | NumCards$ 1
 SVar:Picture:http://www.wizards.com/global/images/magic/general/vessel_of_paramnesia.jpg
 Oracle:{U}, Sacrifice Vessel of Paramnesia: Target player puts the top three cards of his or her library into his or her graveyard. Draw a card.
- Code: Select all
- Name:Vessel of Nascency
 ManaCost:G
 Types:Enchantment
 A:AB$ Dig | Cost$ 1 G Sac<1/CARDNAME> | Planeswalker$ True | DigNum$ 4 | Reveal$ True | ChangeNum$ 1 | ChangeValid$ Artifact,Creature,Enchantment,Land,Planeswalker | DestinationZone2$ Graveyard | SpellDescription$ Reveal the top four card of your library. You may put an artifact, creature, enchantment, land, or planeswalker card from among them into your hand. Put the rest into your graveyard.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/vessel_of_nascency.jpg
 Oracle:{1}{G}, Sacrifice Vessel of Nascency: Reveal the top four card of your library. You may put an artifact, creature, enchantment, land, or planeswalker card from among them into your hand. Put the rest into your graveyard.
- Code: Select all
- Name:Vessel of Ephemera
 ManaCost:1 W
 Types:Enchantment
 A:AB$ Token | Cost$ 2 W Sac<1/CARDNAME> | TokenOwner$ You | TokenAmount$ 2 | TokenName$ Spirit | TokenTypes$ Creature,Spirit | TokenOwner$ You | TokenColors$ White | TokenPower$ 1 | TokenToughness$ 1 | TokenKeywords$ Flying | TokenImage$ w 1 1 spirit SOI | SpellDescription$ Put two 1/1 white Spirit creature tokens with flying onto the battlefield.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/vessel_of_ephemera.jpg
 Oracle:{2}{W}, Sacrifice Vessel of Ephemera: Put two 1/1 white Spirit creature tokens with flying onto the battlefield.
Re: Shadows over Innistrad spoiler season
 by Hanmac » 23 Mar 2016, 19:32
by Hanmac » 23 Mar 2016, 19:32 
- Code: Select all
- Name:Altered Ego
 ManaCost:X 2 G U
 Types:Creature Shapeshifter
 PT:0/0
 K:CARDNAME can't be countered.
 K:ETBReplacement:Copy:ChooseCreature:Optional
 K:etbCounter:P1P1:X
 SVar:ChooseCreature:DB$ ChooseCard | Cost$ 0 | Defined$ You | Amount$ 1 | Choices$ Creature.Other | SubAbility$ DBCopy | RememberChosen$ True | AILogic$ Clone | SpellDescription$ You may have CARDNAME enter the battlefield as a copy of any creature on the battlefield.
 SVar:DBCopy:DB$ Clone | Defined$ Remembered
 SVar:X:Count$xPaid
 SVar:Picture:http://www.wizards.com/global/images/magic/general/altered_ego.jpg
 Oracle:Altered Ego can't be countered.\n You may have Altered Ego enter the battlefield as a copy of any creature on the battlefield, except it enters with X additional +1/+1 counters on it.
Re: Shadows over Innistrad spoiler season
 by Marek14 » 23 Mar 2016, 19:44
by Marek14 » 23 Mar 2016, 19:44 
Hm, wouldn't this code let you have it enter with counters, but not copy anything? The Oracle text doesn't support that option.Hanmac wrote:
- Code: Select all
Name:Altered Ego
ManaCost:X 2 G U
Types:Creature Shapeshifter
PT:0/0
K:CARDNAME can't be countered.
K:ETBReplacement:Copy:ChooseCreature:Optional
K:etbCounter:P1P1:X
SVar:ChooseCreature:DB$ ChooseCard | Cost$ 0 | Defined$ You | Amount$ 1 | Choices$ Creature.Other | SubAbility$ DBCopy | RememberChosen$ True | AILogic$ Clone | SpellDescription$ You may have CARDNAME enter the battlefield as a copy of any creature on the battlefield.
SVar:DBCopy:DB$ Clone | Defined$ Remembered
SVar:X:Count$xPaid
SVar:Picture:http://www.wizards.com/global/images/magic/general/altered_ego.jpg
Oracle:Altered Ego can't be countered.\n You may have Altered Ego enter the battlefield as a copy of any creature on the battlefield, except it enters with X additional +1/+1 counters on it.
Re: Shadows over Innistrad spoiler season
 by Hanmac » 23 Mar 2016, 19:48
by Hanmac » 23 Mar 2016, 19:48 
@Marek14: are you are right, i will change that later, or maybe tomorrow *sleepy*
			
		Re: Shadows over Innistrad spoiler season
 by Marek14 » 23 Mar 2016, 19:49
by Marek14 » 23 Mar 2016, 19:49 
- Code: Select all
- Name:Humble the Brute
 ManaCost:4 W
 Types:Instant
 A:SP$ Destroy | Cost$ 4 W | ValidTgts$ Creature.powerGE4 | SubAbility$ DBToken | TgtPrompt$ Select target creature with power 4 or greater | Destroy target creature with power 4 or greater. Investigate. (Put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")
 SVar:DBToken:DB$ Token | TokenAmount$ 1 | TokenName$ Clue | TokenTypes$ Artifact,Clue | TokenOwner$ You | TokenColors$ Colorless | TokenImage$ c clue | TokenAltImages$ c_clue2,c_clue3,c_clue4,c_clue5,c_clue6 | TokenAbilities$ ABDraw
 SVar:ABDraw:AB$ Draw | Cost$ 2 Sac<1/CARDNAME> | NumCards$ 1 | SpellDescription$ Draw a card.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/humble_the_brute.jpg
 Oracle:Destroy target creature with power 4 or greater.\nInvestigate. (Put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")
Last edited by Marek14 on 23 Mar 2016, 20:52, edited 1 time in total.
					
				
			
		Re: Shadows over Innistrad spoiler season
 by Marek14 » 23 Mar 2016, 20:52
by Marek14 » 23 Mar 2016, 20:52 
- Code: Select all
- Name:Survive the Night
 ManaCost:2 W
 Types:Instant
 A:SP$ Pump | Cost$ 2 W | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ +1 | KW$ Indestructible | SubAbility$ DBToken | SpellDescription$ Target creature gets +1/+0 and gains indestructible until end of turn. Investigate. (Put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")
 SVar:DBToken:DB$ Token | TokenAmount$ 1 | TokenName$ Clue | TokenTypes$ Artifact,Clue | TokenOwner$ You | TokenColors$ Colorless | TokenImage$ c clue | TokenAltImages$ c_clue2,c_clue3,c_clue4,c_clue5,c_clue6 | TokenAbilities$ ABDraw
 SVar:ABDraw:AB$ Draw | Cost$ 2 Sac<1/CARDNAME> | NumCards$ 1 | SpellDescription$ Draw a card.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/survive_the_night.jpg
 Oracle:Target creature gets +1/+0 and gains indestructible until end of turn.\nInvestigate. (Put a colorless Clue artifact token onto the battlefield with "{2}, Sacrifice this artifact: Draw a card.")
Re: Shadows over Innistrad spoiler season
 by Hanmac » 23 Mar 2016, 21:12
by Hanmac » 23 Mar 2016, 21:12 
@Marek14: i think Altered Ego need to be implemented in a similar way than The Mimeoplasm with both be a clone and entering the battlefield with X +1/+1 counters ...
			
		Re: Shadows over Innistrad spoiler season
 by Marek14 » 24 Mar 2016, 07:36
by Marek14 » 24 Mar 2016, 07:36 
- Code: Select all
- Name:Stitchwing Skaab
 ManaCost:3 U
 Types:Creature Zombie Horror
 PT:3/1
 K:Flying
 A:AB$ ChangeZone | Cost$ 1 U Discard<2/Card> | Origin$ Graveyard | Destination$ Battlefield | Tapped$ True | ActivationZone$ Graveyard | SpellDescription$ Return CARDNAME from your graveyard to the battlefield tapped.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/stitchwing_skaab.jpg
 Oracle:Flying\n{1}{U}, Discard two cards: Return Stitchwing Skaab from your graveyard to the battlefield tapped.
- Code: Select all
- Name:Uninvited Geist
 ManaCost:2 U
 Types:Creature Spirit
 PT:2/2
 K:Skulk
 T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Player | Execute$ TrigTransform | CombatDamage$ True | TriggerDescription$ When CARDNAME deals combat damage to a player, transform it.
 SVar:TrigTransform:AB$SetState | Cost$ 0 | Defined$ Self | Mode$ Transform
 AlternateMode:DoubleFaced
 SVar:Picture:http://www.wizards.com/global/images/magic/general/uninvited_geist.jpg
 Oracle:Skulk (This creature can't be blocked by creatures with greater power.)\nWhen Uninvited Geist deals combat damage to a player, transform it.
 ALTERNATE
 Name:Unimpeded Trespasser
 ManaCost:no cost
 Colors:blue
 Types:Creature Spirit
 PT:3/3
 K:Unblockable
 SVar:Picture:http://www.wizards.com/global/images/magic/general/unimpeded_trespasser.jpg
 Oracle:Unimpeded Tresspasser can't be blocked.
Re: Shadows over Innistrad spoiler season
 by Marek14 » 24 Mar 2016, 15:13
by Marek14 » 24 Mar 2016, 15:13 
- Code: Select all
- Name:Inexorable Blob
 ManaCost:2 G
 Types:Creature Ooze
 PT:3/3
 T:Mode$ Attacks | ValidCard$ Card.Self | Execute$ TrigToken | Condition$ Delirium | TriggerDescription$ Delirium - Whenever CARDNAME attacks, if there are four or more card types among cards in your graveyard, put a 3/3 green Ooze creature token onto the battlefield tapped and attacking.
 SVar:TrigToken:AB$ Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Ooze | TokenTypes$ Creature,Ooze | TokenOwner$ You | TokenColors$ Green | TokenPower$ 3 | TokenToughness$ 3 | TokenTapped$ True | TokenAttacking$ True
 SVar:HasAttackEffect:TRUE
 SVar:Picture:http://www.wizards.com/global/images/magic/general/inexorable_blob.jpg
 Oracle:Delirium - Whenever Inexorable Blob attacks, if there are four or more card types among cards in your graveyard, put a 3/3 green Ooze creature token onto the battlefield tapped and attacking.
- Code: Select all
- Name:Forgotten Creation
 ManaCost:3 U
 Types:Creature Zombie Horror
 PT:3/3
 K:Skulk
 T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ TrigDiscard | OptionalDecider$ You | TriggerZones$ Battlefield | TriggerDescription$ At the beginning of your upkeep, you may discard all the cards in your hand. If you do, draw that many cards.
 SVar:TrigDiscard:AB$ Discard | Cost$ 0 | Mode$ Hand | RememberDiscarded$ True | SubAbility$ DBDraw
 SVar:DBDraw:DB$ Draw | Cost$ 0 | Defined$ You | NumCards$ X | References$ X
 SVar:X:Remembered$Amount
 SVar:Picture:http://www.wizards.com/global/images/magic/general/forgotten_creation.jpg
 Oracle:Skulk (This creature can't be blocked by creatures with greater power.)\nAt the beginning of your upkeep, you may discard all the cards in your hand. If you do, draw that many cards.
- Code: Select all
- Name:Ulvenwald Hydra
 ManaCost:4 G G
 Types:Creature Hydra
 PT:*/*
 K:Reach
 S:Mode$ Continuous | EffectZone$ All | CharacteristicDefining$ True | SetPower$ X | SetToughness$ X | Description$ CARDNAME's power and toughness are each equal to the number of lands you control.
 SVar:X:Count$Valid Land.YouCtrl
 SVar:TrigChange:AB$ChangeZone | Cost$ 0 | Origin$ Library | Destination$ Battlefield | Tapped$ True | ChangeType$ Land | ChangeNum$ 1 | ShuffleNonMandatory$ True
 T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Creature.Self | Execute$ TrigChange | OptionalDecider$ You | TriggerDescription$ When CARDNAME enters the battlefield, you may search your library for a land card, put it onto the battlefield tapped, then shuffle your library.
 SVar:BuffedBy:Land
 SVar:Picture:http://www.wizards.com/global/images/magic/general/ulvenwald_hydra.jpg
 Oracle:Reach\nUlvenwald Hydra's power and toughness are each equal to the number of lands you control.\nWhen Ulvenwald Hydra enters the battlefield, you may search your library for a land card, put it onto the battlefield tapped, then shuffle your library.
Re: Shadows over Innistrad spoiler season
 by Marek14 » 24 Mar 2016, 18:51
by Marek14 » 24 Mar 2016, 18:51 
- Code: Select all
- Name:Hope Against Hope
 ManaCost:2 W
 Types:Enchantment Aura
 K:Enchant creature
 A:SP$ Attach | Cost$ 2 W | ValidTgts$ Creature | AILogic$ Pump
 S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddPower$ X | AddToughness$ X | Description$ Enchanted creature gets +1/+1 for each creature you control.
 SVar:X:Count$Valid Creature.YouCtrl
 S:Mode$ Continuous | Affected$ Creature.EnchantedBy+Human | AddKeyword$ First Strike | Description$ As long as enchanted creature is a Human, it has first strike.
 SVar:BuffedBy:Creature
 SVar:Picture:http://www.wizards.com/global/images/magic/general/hope_against_hope.jpg
 Oracle:Enchant creature\nEnchanted creature gets +1/+1 for each creature you control.\nAs long as enchanted creature is a Human, it has first strike.
Re: Shadows over Innistrad spoiler season
 by Marek14 » 24 Mar 2016, 19:34
by Marek14 » 24 Mar 2016, 19:34 
- Code: Select all
- Name:Ever After
 ManaCost:4 B B
 Types:Sorcery
 A:SP$ ChangeZone | Cost$ 4 B B | Origin$ Graveyard | Destination$ Battlefield | TgtPrompt$ Choose target creature card in your graveyard | ValidTgts$ Creature.YouOwn | TargetMin$ 0 | TargetMax$ 2 | SubAbility$ Animate | Return up to two target creature cards from your graveyard onto the battlefield. Each of those creatures is a black Zombie in addition to its other colors and types. Put Ever After on the bottom of its owner's library.
 SVar:Animate:DB$Animate | Defined$ Targeted | Types$ Zombie | Colors$ Black | Permanent$ True | SubAbility$ DBPut
 SVar:DBPut:DB$ChangeZone | Origin$ Stack | Destination$ Library | LibraryPosition$ -1
 SVar:Picture:http://www.wizards.com/global/images/magic/general/ever_after.jpg
 Oracle:Return up to two target creature cards from your graveyard onto the battlefield. Each of those creatures is a black Zombie in addition to its other colors and types. Put Ever After on the bottom of its owner's library.
Re: Shadows over Innistrad spoiler season
 by Marek14 » 24 Mar 2016, 20:04
by Marek14 » 24 Mar 2016, 20:04 
- Code: Select all
- Name:Lambholt Pacifist
 ManaCost:1 G
 Types:Creature Human Shaman Werewolf
 PT:3/3
 S:Mode$ Continuous | Affected$ Card.Self | AddHiddenKeyword$ CARDNAME can't attack. | CheckSVar$ X | SVarCompare$ EQ0 | Description$ CARDNAME can't attack unless you control a creature with power 4 or greater.
 SVar:X:Count$Valid Creature.YouCtrl+powerGE4
 T:Mode$Phase | Phase$ Upkeep | WerewolfTransformCondition$ True | TriggerZones$ Battlefield | Execute$ TrigTransform | TriggerDescription$ At the beginning of each upkeep, if no spells were cast last turn, transform CARDNAME.
 SVar:TrigTransform:AB$SetState | Cost$ 0 | Defined$ Self | Mode$ Transform
 AlternateMode:DoubleFaced
 SVar:Picture:http://www.wizards.com/global/images/magic/general/lambholt_pacifist.jpg
 Oracle:At the beginning of each upkeep, if no spells were cast last turn, transform Lambholt Pacifist.
 ALTERNATE
 Name:Lambholt Butcher
 ManaCost:no cost
 Colors:green
 Types:Creature Werewolf
 PT:4/4
 T:Mode$Phase | Phase$ Upkeep | WerewolfUntransformCondition$ True | TriggerZones$ Battlefield | Execute$ TrigTransform | TriggerDescription$ At the beginning of each upkeep, if a player cast two or more spells last turn, transform CARDNAME.
 SVar:TrigTransform:AB$SetState | Cost$ 0 | Defined$ Self | Mode$ Transform
 SVar:Picture:http://www.wizards.com/global/images/magic/general/lambholt_butcher.jpg
 Oracle:At the beginning of each upkeep, if a player cast two or more spells last turn, transform Lambholt Butcher.
Re: Shadows over Innistrad spoiler season
 by Marek14 » 24 Mar 2016, 21:34
by Marek14 » 24 Mar 2016, 21:34 
- Code: Select all
- Name:Thornhide Wolves
 ManaCost:4 G
 Types:Creature Wolf
 PT:4/5
 SVar:Picture:http://www.wizards.com/global/images/magic/general/thornhide_wolves.jpg
 Oracle:
- Code: Select all
- Name:Pyre Hound
 ManaCost:3 R
 Types:Creature Elemental Hound
 PT:2/3
 K:Trample
 T:Mode$ SpellCast | ValidCard$ Instant,Sorcery | ValidActivatingPlayer$ You | Execute$ TrigPutCounter | TriggerZones$ Battlefield | TriggerDescription$ Whenever you cast an instant or sorcery spell, put a +1/+1 counter on CARDNAME.
 SVar:BuffedBy:Instant,Sorcery
 SVar:Picture:http://www.wizards.com/global/images/magic/general/pyre_hound.jpg
 Oracle:Trample\nWhenever you cast an instant or sorcery spell, put a +1/+1 counter on Pyre Hound.
- Code: Select all
- Name:Aim High
 ManaCost:1 G
 Types:Instant
 A:SP$ Untap | Cost$ 1 G | ValidTgts$ Creature | TgtPrompt$ Select target creature |SubAbility$ DBPump | SpellDescription$ Untap target creature. It gets +2/+2 and gains reach until end of turn.
 SVar:DBPump:DB$ Pump | Cost$ 0 | Defined$ Targeted | NumAtt$ +2 | NumDef$ +2 | KW$ Reach
 SVar:Picture:http://www.wizards.com/global/images/magic/general/aim_high.jpg
 Oracle:Untap target creature. It gets +2/+2 and gains reach until end of turn.
- Code: Select all
- Name:Rottenheart Ghoul
 ManaCost:3 B
 Types:Creature Zombie
 PT:2/4
 T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | Execute$ TrigDiscard | TriggerController$ TriggeredCardController | TriggerDescription$ When CARDNAME dies, target player discards a card.
 SVar:TrigDiscard:AB$ Discard | Cost$ 0 | ValidTgts$ Player | NumCards$ 1 | Mode$ TgtChoose
 SVar:Picture:http://www.wizards.com/global/images/magic/general/rottenheart_ghoul.jpg
 Oracle:When Rottenheart Ghoul dies, target player discards a card.
- Code: Select all
- Name:Rabid Bite
 ManaCost:1 G
 Types:Sorcery
 A:SP$ Pump | Cost$ 1 G | ValidTgts$ Creature.YouCtrl | AILogic$ PowerDmg | TgtPrompt$ Select target creature you control | SubAbility$ SoulsDamage | StackDescription$ None | SpellDescription$ Target creature you control deals damage equal to its power to target creature you don't control
 SVar:SoulsDamage:DB$ DealDamage | ValidTgts$ Creature.YouDontCtrl | AILogic$ PowerDmg | TgtPrompt$ Select target creature you don't control | NumDmg$ X | References$ X | ConditionDefined$ Targeted | ConditionPresent$ Creature | ConditionCompare$ EQ1 | DamageSource$ ParentTarget
 SVar:X:ParentTargeted$CardPower
 SVar:Picture:http://www.wizards.com/global/images/magic/general/rabid_bite.jpg
 Oracle:Target creature you control deals damage equal to its power to target creature you don't control.
- Code: Select all
- Name:Devilthorn Fox
 ManaCost:1 W
 Types:Creature Fox
 PT:3/1
 SVar:Picture:http://www.wizards.com/global/images/magic/general/devilthorn_fox.jpg
 Oracle:
- Code: Select all
- Name:Inspiring Captain
 ManaCost:3 W
 Types:Creature Human Soldier
 PT:3/3
 T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigPumpAll | TriggerDescription$ When CARDNAME enters the battlefield, creatures you control get +1/+1 until end of turn.
 SVar:TrigPumpAll:AB$ PumpAll | Cost$ 0 | ValidCards$ Creature.YouCtrl | NumAtt$ +1 | NumDef$ +1
 SVar:PlayMain1:TRUE
 SVar:Picture:http://www.wizards.com/global/images/magic/general/inspiring_captain.jpg
 Oracle:When Inspiring Captain enters the battlefield, creatures you control get +1/+1 until end of turn.
- Code: Select all
- Name:Ethereal Guidance
 ManaCost:2 W
 Types:Sorcery
 A:SP$ PumpAll | Cost$ 2 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/ethereal_guidance.jpg
 Oracle:Creatures you control get +2/+1 until end of turn.
- Code: Select all
- Name:Hulking Devil
 ManaCost:3 R
 Types:Creature Devil
 PT:5/2
 SVar:Picture:http://www.wizards.com/global/images/magic/general/hulking_devil.jpg
 Oracle:
- Code: Select all
- Name:Vampire Noble
 ManaCost:2 B
 Types:Creature Vampire
 PT:3/2
 SVar:Picture:http://www.wizards.com/global/images/magic/general/vampire_noble.jpg
 Oracle:
- Code: Select all
- Name:Silverstrike
 ManaCost:3 W
 Types:Instant
 A:SP$ Destroy | Cost$ 3 W | ValidTgts$ Creature.attacking | TgtPrompt$ Select target attacking creature | SubAbility$ DBGainLife | SpellDescription$ Destroy target attacking creature. You gain 3 life.
 SVar:DBGainLife:DB$ GainLife | Defined$ You | LifeAmount$ 3
 SVar:Picture:http://www.wizards.com/global/images/magic/general/silverstrike.jpg
 Oracle:Destroy target attacking creature. You gain 3 life.
- Code: Select all
- Name:Sleep Paralysis
 ManaCost:3 U
 Types:Enchantment Aura
 K:Enchant creature
 A:SP$ Attach | Cost$ 3 U | ValidTgts$ Creature | AILogic$ KeepTapped
 T:Mode$ ChangesZone | ValidCard$ Card.Self | Origin$ Any | Destination$ Battlefield | Execute$ TrigTap | TriggerDescription$ When CARDNAME enters the battlefield, tap enchanted creature.
 SVar:TrigTap:AB$ Tap | Cost$ 0 | Defined$ Enchanted
 S:Mode$ Continuous | Affected$ Creature.AttachedBy | AddHiddenKeyword$ CARDNAME doesn't untap during your untap step. | Description$ Enchanted creature doesn't untap during its controller's untap step.
 SVar:Picture:http://www.wizards.com/global/images/magic/general/sleep_paralysis.jpg
 Oracle:Enchant creature\nWhen Sleep Paralysis enters the battlefield, tap enchanted creature.\nEnchanted creature doesn't untap during its controller's untap step.
Re: Shadows over Innistrad spoiler season
 by Hanmac » 25 Mar 2016, 15:34
by Hanmac » 25 Mar 2016, 15:34 
whole spoiler is out:
http://magic.wizards.com/en/articles/ar ... rinnistrad
Investigate does need to be as action because of:
Erdwal Illuminator: "whenever you investigate for the first time"
			
		http://magic.wizards.com/en/articles/ar ... rinnistrad
Investigate does need to be as action because of:
Erdwal Illuminator: "whenever you investigate for the first time"
Who is online
Users browsing this forum: No registered users and 18 guests
