From 6a1c900c3d6dff0597c4acab5d21fbbcee619247 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 04:38:12 +0000 Subject: [PATCH] 1) Changed the keyword: "When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead." to this new updated form: "When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead." 2) I updated these cards.txt card entries and moved them to the top of file: Darksteel Colossus Emrakul, the Aeons Torn Kozilek, Butcher of Truth Legacy Weapon Progenitus Serra Avatar Ulamog, the Infinite Gyre --- res/cards.txt | 116 +++++++++++++++---------------- src/forge/DefaultPlayerZone.java | 2 +- 2 files changed, 59 insertions(+), 59 deletions(-) diff --git a/res/cards.txt b/res/cards.txt index 34d14581644..a902d297fa3 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,61 @@ +Darksteel Colossus +11 +Artifact Creature Golem +no text +11/11 +Trample +Indestructible +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + +Emrakul, the Aeons Torn +15 +Legendary Creature Eldrazi +When you cast Emrakul, take an extra turn after this one. +15/15 +This card can't be countered. +Flying +Protection from colored spells +Annihilator 6 +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + +Kozilek, Butcher of Truth +10 +Legendary Creature Eldrazi +When you cast Kozilek, Butcher of Truth, draw four cards. +12/12 +Annihilator 4 +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + +Legacy Weapon +7 +Legendary Artifact +no text +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + +Progenitus +W W U U B B R R G G +Legendary Creature Hydra Avatar +no text +10/10 +Protection from everything +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + +Serra Avatar +4 W W W +Creature Avatar +Serra Avatar's power and toughness are each equal to your life total. If Serra Avatar is destroyed, shuffle it into its owner's library instead. +1/1 +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + +Ulamog, the Infinite Gyre +11 +Legendary Creature Eldrazi +When you cast Ulamog, the Infinite Gyre, destroy target permanent. +10/10 +Indestructible +Annihilator 4 +When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. + Mnemonic Wall 4 U Creature Wall @@ -560,17 +618,6 @@ When you cast Artisan of Kozilek, you may return target creature card from your 10/9 Annihilator 2 -Emrakul, the Aeons Torn -15 -Legendary Creature Eldrazi -When you cast Emrakul, take an extra turn after this one. -15/15 -This card can't be countered. -Flying -Protection from colored spells -Annihilator 6 -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - Blight B B Enchantment Aura @@ -1391,15 +1438,6 @@ Buried Alive Sorcery Search your library for up to three creature cards and put them into your graveyard. Then shuffle your library. -Ulamog, the Infinite Gyre -11 -Legendary Creature Eldrazi -When you cast Ulamog, the Infinite Gyre, destroy target permanent. -10/10 -Indestructible -Annihilator 4 -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - Alaborn Zealot W Creature Human Soldier @@ -2158,14 +2196,6 @@ Artifact Creature Beast When Phyrexian War Beast leaves the battlefield, sacrifice a land and Phyrexian War Beast deals 1 damage to you. 3/4 -Kozilek, Butcher of Truth -10 -Legendary Creature Eldrazi -When you cast Kozilek, Butcher of Truth, draw four cards. -12/12 -Annihilator 4 -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - Glasses of Urza 1 Artifact @@ -10881,36 +10911,6 @@ Creature Treefolk Warrior Dauntless Dourbark's power and toughness are each equal to the number of Forests you control plus the number of Treefolk you control. Dauntless Dourbark has trample as long as you control another Treefolk. 1/1 -Legacy Weapon -7 -Legendary Artifact -no text -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - -Progenitus -W W U U B B R R G G -Legendary Creature Hydra Avatar -no text -10/10 -Protection from everything -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - -Darksteel Colossus -11 -Artifact Creature Golem -no text -11/11 -Trample -Indestructible -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - -Serra Avatar -4 W W W -Creature Avatar -Serra Avatar's power and toughness are each equal to your life total. If Serra Avatar is destroyed, shuffle it into its owner's library instead. -1/1 -When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead. - Brawn 3 G Creature Incarnation diff --git a/src/forge/DefaultPlayerZone.java b/src/forge/DefaultPlayerZone.java index fb4b0f04b7a..6bd597667a9 100644 --- a/src/forge/DefaultPlayerZone.java +++ b/src/forge/DefaultPlayerZone.java @@ -26,7 +26,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl Card c = (Card)o; if (is("Graveyard") - && c.getKeyword().contains("When this card is put into a graveyard from anywhere, reveal this card and shuffle it into its owner's library instead.")) + && c.getKeyword().contains("When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.")) { PlayerZone lib = AllZone.getZone(Constant.Zone.Library, c.getOwner()); lib.add(c);