convert AEther Vial's upkeep ability to WheneverKeyword

This commit is contained in:
jendave
2011-08-06 09:53:15 +00:00
parent 3c2c8ce492
commit c0d92dfeff
2 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ Name:AEther Vial
ManaCost:1 ManaCost:1
Types:Artifact Types:Artifact
Text:At the beginning of your upkeep, you may put a charge counter on AEther Vial. Text:At the beginning of your upkeep, you may put a charge counter on AEther Vial.
K:WheneverKeyword:BeginningOfUpkeep:No_Initiator:Play:CustomCounter.CHARGE/1:Self:ASAP:Yes_No:ControllerUpkeep:At the beginning of your upkeep, you may put a charge counter on CARDNAME.
SVar:RemAIDeck:True SVar:RemAIDeck:True
SVar:Rarity:Uncommon SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/aether_vial.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/aether_vial.jpg

View File

@@ -57,7 +57,7 @@ public class GameActionUtil {
upkeep_Scute_Mob(); upkeep_Scute_Mob();
upkeep_Lichenthrope(); upkeep_Lichenthrope();
upkeep_Heartmender(); upkeep_Heartmender();
upkeep_AEther_Vial(); //upkeep_AEther_Vial();
upkeep_Ratcatcher(); upkeep_Ratcatcher();
upkeep_Nath(); upkeep_Nath();
upkeep_Anowon(); upkeep_Anowon();
@@ -6753,7 +6753,7 @@ public class GameActionUtil {
} }
/*
private static void upkeep_AEther_Vial() { private static void upkeep_AEther_Vial() {
final Player player = AllZone.Phase.getActivePlayer(); final Player player = AllZone.Phase.getActivePlayer();
PlayerZone playZone = AllZone.getZone(Constant.Zone.Play, player); PlayerZone playZone = AllZone.getZone(Constant.Zone.Play, player);
@@ -6794,6 +6794,7 @@ public class GameActionUtil {
}//for }//for
} }
} }
*/
private static void upkeep_Dragonmaster_Outcast() { private static void upkeep_Dragonmaster_Outcast() {
final Player player = AllZone.Phase.getActivePlayer(); final Player player = AllZone.Phase.getActivePlayer();