- Turned the ability of Quagnoth into a proper triggered ability.

This commit is contained in:
Sloth
2011-11-03 07:44:49 +00:00
parent fe00f490d4
commit 3e1f8d9f1f
2 changed files with 2 additions and 3 deletions

View File

@@ -3,9 +3,10 @@ ManaCost:5 G
Types:Creature Beast
Text:no text
PT:4/5
K:If a spell or ability an opponent controls causes you to discard CARDNAME, return it to your hand.
K:Split second
K:Shroud
T:Mode$ Discarded | ValidCard$ Card.Self | ValidCause$ Card.YouDontCtrl | Execute$ TrigReturn | TriggerDescription$ When a spell or ability an opponent controls causes you to discard CARDNAME, return it to your hand.
SVar:TrigReturn:AB$ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Hand
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/quagnoth.jpg
SetInfo:FUT|Rare|http://magiccards.info/scans/en/fut/150.jpg

View File

@@ -1395,8 +1395,6 @@ public abstract class Player extends GameEntity {
+ "counters on it instead of putting it into your graveyard."))
&& null != sa && !c.getController().equals(sa.getSourceCard().getController())) {
AllZone.getGameAction().discardPutIntoPlayInstead(c);
} else if (c.hasKeyword("If a spell or ability an opponent controls "
+ "causes you to discard CARDNAME, return it to your hand.")) {
} else {
AllZone.getGameAction().moveToGraveyard(c);
}