From 32a18bdd4f167ed692fde7cfd4c46753a1a3abc0 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 21:40:53 +0000 Subject: [PATCH] *Converted Amulet of Vigor to trigger. --- res/cardsfolder/amulet_of_vigor.txt | 4 +++- src/forge/PlayerZone_ComesIntoPlay.java | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/res/cardsfolder/amulet_of_vigor.txt b/res/cardsfolder/amulet_of_vigor.txt index f2f06141a6c..c92b886264e 100644 --- a/res/cardsfolder/amulet_of_vigor.txt +++ b/res/cardsfolder/amulet_of_vigor.txt @@ -1,7 +1,9 @@ Name:Amulet of Vigor ManaCost:1 Types:Artifact -Text:Whenever a permanent enters the battlefield tapped and under your control, untap it. +Text:no text +T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Permanent.tapped+YouCtrl | Execute$ TrigUntap | TriggerDescription$ Whenever a permanent enters the battlefield tapped and under your control, untap it. +SVar:TrigUntap:AB$Untap | Cost$ 0 | Defined$ TriggeredCard SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/amulet_of_vigor.jpg SetInfo:WWK|Rare|http://magiccards.info/scans/en/wwk/121.jpg diff --git a/src/forge/PlayerZone_ComesIntoPlay.java b/src/forge/PlayerZone_ComesIntoPlay.java index 031a612143c..3965744f845 100644 --- a/src/forge/PlayerZone_ComesIntoPlay.java +++ b/src/forge/PlayerZone_ComesIntoPlay.java @@ -68,7 +68,8 @@ public class PlayerZone_ComesIntoPlay extends DefaultPlayerZone { AllZone.GameAction.checkWheneverKeyword(c,"EntersBattleField",null); PlayerZone play = AllZone.getZone(Constant.Zone.Battlefield, c.getController()); - + + /* //Amulet of Vigor if(c.isTapped()) { final Card untapCrd = c; @@ -84,7 +85,7 @@ public class PlayerZone_ComesIntoPlay extends DefaultPlayerZone { for(int i = 0; i < AllZoneUtil.getPlayerCardsInPlay(c.getController(), "Amulet of Vigor").size(); i++) AllZone.Stack.add(ability); - } + }*/ if(c.isLand()) { //System.out.println("A land was just put onto the battlefield: " + c.getName());