- Code: Select all
Name:Akoum Hellkite
ManaCost:4 R R
Types:Creature Dragon
PT:4/4
K:Flying
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Land.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigDealDamage | TriggerDescription$ Landfall - Whenever a land enters the battlefield under your control, CARDNAME deals 1 damage to target creature or player. If that land isa Mountain, CARDNAME deals 2 damage to that creature or player instead.
SVar:TrigDealDamage:AB$DealDamage | Cost$ 0 | ValidTgts$ Creature,Player | TgtPrompt$ Select target player | NumDmg$ X | References$ X
SVar:X:TriggeredCard.Mountain/Plus.1
SVar:Picture:http://www.wizards.com/global/images/magic/general/akoum_hellkite.jpg
Oracle:Flying\nLandfall - Whenever a land enters the battlefield under your control, Akoum Hellkite deals 1 damage to target creature or player. If that land is a Mountain, Akoum Hellkite deals 2 damage to that creature or player instead.
(The wording changed a bit from as originally spoiled: now it says "If that land IS a
Mountain" instead of "WAS a
Mountain", so presumably changing the land's type after it enters the battlefield might affect the amount of damage dealt?)
- Code: Select all
Name:Deathless Behemoth
ManaCost:6
Types:Creature Eldrazi
PT:6/6
K:Vigilance
A:AB$ ChangeZone | Cost$Sac<2/Eldrazi.Scion> | Origin$ Graveyard | Destination$ Hand | ActivationZone$ Graveyard | SorcerySpeed$ True | SpellDescription$ Return CARDNAME from your graveyard to your hand. Activate this ability only any time you could cast a sorcery.
SVar:DiscardMe:1
SVar:RemRandomDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/deathless_behemoth.jpg
Oracle:Vigilance\nSacrifice two Eldrazi Scions: Return Deathless Behemoth from your graveyard to your hand. Activate this ability only any time you could cast a sorcery.
- Code: Select all
Name:Greenwarden or Murasa
ManaCost:4 G G
Types:Creature Elemental
PT:5/4
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigChangeZone | OptionalDecider$ You | TriggerDescription$ When CARDNAME enters the battlefield, you may return target card from your graveyard to your hand.
SVar:TrigChangeZone:AB$ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Hand | ValidTgts$ Card.YouCtrl
T:Mode$ ChangesZone | ValidCard$ Card.Self | Origin$ Battlefield | Destination$ Graveyard | Execute$ TrigExile | OptionalDecider$ TriggeredCardController | TriggerController$ TriggeredCardController | TriggerDescription$ When CARDNAME dies, you may exile it. If you do, you may return target card from your graveyard to your hand.
SVar:TrigExile:AB$ ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Exile | Defined$ TriggeredCard | SubAbility$ DBReturn
SVar:DBReturn:DB$ ChangeZone | Origin$ Graveyard | Destination$ Hand | ValidTgts$ Card.YouCtrl
SVar:Picture:http://www.wizards.com/global/images/magic/general/greenwarden_of_murasa.jpg
Oracle:When Greenwarden of Murasa enters the battlefield, you may return target card from your graveyard to your hand.\nWhen Greenwarden of Murasa dies, you may exile it. If you do, you may return target card from your graveyard to your hand.
(This code isn't perfect yet. I started using
Iname as One's second ability as template for the second ability, but I discovered that
Iname as One's code has some problems: the second ability doesn't target, although it should, and both abilities affect "Spirits", not "Spirit permanents". The current code is still missing the clause that you don't have to return the targeted card to your hand even if you DO choose to exile
Greenwarden of Murasa -- what would be the best way to add that?)
- Code: Select all
Name:Shrine of the Forsaken Gods
ManaCost:no cost
Types:Land
A:AB$ Mana | Cost$ T | Produced$ 1 | SpellDescription$ Add {1} to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ 1 | Amount$ 2 | IsPresent$ Land.YouCtrl | PresentCompare$ GE7 | RestrictValid$ Card.Colorless | SpellDescription$ {T}: Add {2} to your mana pool. Spend this mana only to cast colorless spells. Activate this ability only if you control seven or more lands.
SVar:RemRandomDeck:True
SVar:Picture:http://www.wizards.com/global/images/magic/general/shrine_of_the_forsaken_gods.jpg
Oracle:{T}: Add {1} to your mana pool.\n{T}: Add {2} to your mana pool. Spend this mana only to cast colorless spells. Activate this ability only if you control seven or more lands.
- Code: Select all
Name:Void Winnower
ManaCost:9
Types:Creature Eldrazi
PT:11/9
S:Mode$ CantBeCast | ValidCard$ Card.cmcM2X | Caster$ Opponent | Description$ Your opponents can't cast spells with even converted mana costs. (Zero is even.)
S:Mode$ Continuous | Affected$ Creature.OppCtrl+cmcM2X | AddHiddenKeyword$ CARDNAME can't block. | Description$ Your opponents can't block with creatures with even converted mana costs.
SVar:X:Count$0
SVar:Picture:http://www.wizards.com/global/images/magic/general/void_winnower.jpg
Oracle:Your opponents can't cast spells with even converted mana costs. (Zero is even.)\nYour opponents can't block with creatures with even converted mana costs.
(I'm not 100% sure how to write the "even mana cost" condition. The only card that uses "cmcM2" is
Ashling's Prerogative and I don't know if "cmc20" wouldn't be interpreted as "divisible by 20", so I used the
X wording.)