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

@@ -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);