mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Removed the keyword "When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and its owner shuffles his or her graveyard into his or her library." and converted the abilities to triggered abilities.
This commit is contained in:
@@ -7,7 +7,8 @@ K:CARDNAME can't be countered.
|
||||
K:Flying
|
||||
K:Protection from colored spells
|
||||
K:Annihilator 6
|
||||
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and its owner shuffles his or her graveyard into his or her library.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Graveyard | ValidCard$ Creature.Self | Execute$ TrigShuffle | TriggerDescription$ When CARDNAME is put into a graveyard from anywhere, its owner shuffles his or her graveyard into his or her library.
|
||||
SVar:TrigShuffle:AB$ChangeZoneAll | Cost$ 0 | Defined$ TriggeredCardController | ChangeType$ Card | Origin$ Graveyard | Destination$ Library | Shuffle$ True
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Self | Execute$ TrigAddTurn | TriggerDescription$ When you cast CARDNAME, take an extra turn after this one.
|
||||
SVar:TrigAddTurn:AB$AddTurn | Cost$ 0 | Defined$ You | NumTurns$ 1
|
||||
SVar:Rarity:Mythic
|
||||
|
||||
@@ -4,7 +4,8 @@ Types:Legendary Creature Eldrazi
|
||||
Text:no text
|
||||
PT:12/12
|
||||
K:Annihilator 4
|
||||
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and its owner shuffles his or her graveyard into his or her library.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Graveyard | ValidCard$ Creature.Self | Execute$ TrigShuffle | TriggerDescription$ When CARDNAME is put into a graveyard from anywhere, its owner shuffles his or her graveyard into his or her library.
|
||||
SVar:TrigShuffle:AB$ChangeZoneAll | Cost$ 0 | Defined$ TriggeredCardController | ChangeType$ Card | Origin$ Graveyard | Destination$ Library | Shuffle$ True
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Self | Execute$ TrigDraw | TriggerDescription$ When you cast CARDNAME, draw four cards.
|
||||
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 4
|
||||
SVar:Rarity:Mythic
|
||||
|
||||
@@ -5,7 +5,8 @@ Text:no text
|
||||
PT:10/10
|
||||
K:Indestructible
|
||||
K:Annihilator 4
|
||||
K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and its owner shuffles his or her graveyard into his or her library.
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Graveyard | ValidCard$ Creature.Self | Execute$ TrigShuffle | TriggerDescription$ When CARDNAME is put into a graveyard from anywhere, its owner shuffles his or her graveyard into his or her library.
|
||||
SVar:TrigShuffle:AB$ChangeZoneAll | Cost$ 0 | Defined$ TriggeredCardController | ChangeType$ Card | Origin$ Graveyard | Destination$ Library | Shuffle$ True
|
||||
T:Mode$ SpellCast | ValidCard$ Card.Self | Execute$ TrigDestroy | TriggerDescription$ When you cast CARDNAME, destroy target permanent.
|
||||
SVar:TrigDestroy:AB$Destroy | Cost$ 0 | ValidTgts$ Permanent | TgtPrompt$ Select target permanent
|
||||
SVar:Rarity:Mythic
|
||||
|
||||
@@ -63,19 +63,6 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl
|
||||
return;
|
||||
}
|
||||
|
||||
if (is(Zone.Graveyard)
|
||||
&& c.hasKeyword("When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and its owner shuffles his or her graveyard into his or her library.")) {
|
||||
PlayerZone lib = c.getOwner().getZone(Constant.Zone.Library);
|
||||
PlayerZone grave = c.getOwner().getZone(Constant.Zone.Graveyard);
|
||||
lib.add(c);
|
||||
for (Card gc : c.getOwner().getCardsIn(Zone.Graveyard)) {
|
||||
lib.add(gc);
|
||||
}
|
||||
grave.reset();
|
||||
c.getOwner().shuffle();
|
||||
return;
|
||||
}
|
||||
|
||||
if (c.isUnearthed() && (is(Zone.Graveyard) || is(Zone.Hand) || is(Zone.Library))) {
|
||||
PlayerZone removed = c.getOwner().getZone(Constant.Zone.Exile);
|
||||
removed.add(c);
|
||||
|
||||
Reference in New Issue
Block a user