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
This commit is contained in:
jendave
2011-08-06 04:38:12 +00:00
parent 7ba5d5465b
commit 6a1c900c3d
2 changed files with 59 additions and 59 deletions

View File

@@ -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 Mnemonic Wall
4 U 4 U
Creature Wall Creature Wall
@@ -560,17 +618,6 @@ When you cast Artisan of Kozilek, you may return target creature card from your
10/9 10/9
Annihilator 2 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 Blight
B B B B
Enchantment Aura Enchantment Aura
@@ -1391,15 +1438,6 @@ Buried Alive
Sorcery Sorcery
Search your library for up to three creature cards and put them into your graveyard. Then shuffle your library. 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 Alaborn Zealot
W W
Creature Human Soldier 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. When Phyrexian War Beast leaves the battlefield, sacrifice a land and Phyrexian War Beast deals 1 damage to you.
3/4 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 Glasses of Urza
1 1
Artifact 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. 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 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 Brawn
3 G 3 G
Creature Incarnation Creature Incarnation

View File

@@ -26,7 +26,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl
Card c = (Card)o; Card c = (Card)o;
if (is("Graveyard") 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()); PlayerZone lib = AllZone.getZone(Constant.Zone.Library, c.getOwner());
lib.add(c); lib.add(c);