- Fixed the wording of the keyword: "If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.".

This commit is contained in:
Sloth
2011-10-19 14:47:30 +00:00
parent d81300d786
commit 09ead4f149
5 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ PT:11/11
K:Trample
K:Infect
K:Indestructible
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
SVar:Rarity:Mythic
SVar:Picture:http://www.wizards.com/global/images/magic/general/blightsteel_colossus.jpg
SetInfo:MBS|Mythic|http://magiccards.info/scans/en/mbs/99.jpg

View File

@@ -5,7 +5,7 @@ Text:no text
PT:11/11
K:Trample
K:Indestructible
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
SVar:Rarity:Mythic
SVar:Picture:http://resources.wizards.com/magic/cards/dst/en-us/card48158.jpg
SetInfo:M10|Mythic|http://magiccards.info/scans/en/m10/208.jpg

View File

@@ -3,7 +3,7 @@ ManaCost:7
Types:Legendary Artifact
Text:no text
A:AB$ ChangeZone | Cost$ W U B R G | ValidTgts$ Permanent | TgtPrompt$ Select target permanent | Origin$ Battlefield | Destination$ Exile | SpellDescription$ Exile target permanent.
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
SVar:RemRandomDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/legacy_weapon.jpg

View File

@@ -4,7 +4,7 @@ Types:Legendary Creature Hydra Avatar
Text:no text
PT:10/10
K:Protection from everything
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.
SVar:Rarity:Mythic
SVar:Picture:http://www.wizards.com/global/images/magic/general/progenitus.jpg
SetInfo:CFX|Mythic|http://magiccards.info/scans/en/cfx/121.jpg

View File

@@ -56,7 +56,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl
}
if (is(Zone.Graveyard)
&& c.hasKeyword("When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.")) {
&& c.hasKeyword("If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.")) {
PlayerZone lib = c.getOwner().getZone(Constant.Zone.Library);
lib.add(c);
c.getOwner().shuffle();