From 18984823477e9fba8e13be8347f95f70a3a7c2da Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 09:53:56 +0000 Subject: [PATCH] convert Lord of Atlantis to stPumpAll keyword. --- res/cardsfolder/lord_of_atlantis.txt | 3 ++- src/forge/GameActionUtil.java | 7 ++++--- src/forge/StaticEffects.java | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/res/cardsfolder/lord_of_atlantis.txt b/res/cardsfolder/lord_of_atlantis.txt index 3f5ad23b4ce..708353f7301 100644 --- a/res/cardsfolder/lord_of_atlantis.txt +++ b/res/cardsfolder/lord_of_atlantis.txt @@ -1,8 +1,9 @@ Name:Lord of Atlantis ManaCost:U U Types:Creature Merfolk -Text:Other Merfolk creatures get +1/+1 and have islandwalk. +Text:no text PT:2/2 +K:stPumpAll:Creature.Merfolk+Other:1/1/Islandwalk:No Condition:Other Merfolk creatures get +1/+1 and have islandwalk. SVar:PlayMain1:TRUE SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/lord_of_atlantis.jpg diff --git a/src/forge/GameActionUtil.java b/src/forge/GameActionUtil.java index ce4fde6928e..fa0283c7913 100644 --- a/src/forge/GameActionUtil.java +++ b/src/forge/GameActionUtil.java @@ -16976,6 +16976,7 @@ public class GameActionUtil { }; //Merfolk_Sovereign_Other + /* public static Command Lord_of_Atlantis_Pump = new Command() { private static final long serialVersionUID = -2128898623878576243L; @@ -17058,7 +17059,7 @@ public class GameActionUtil { }// execute() }; //Lord_of_Atlantis_Other - + */ public static Command Field_Marshal_Pump = new Command() { private static final long serialVersionUID = -2429608928111507712L; @@ -20916,8 +20917,8 @@ public class GameActionUtil { commands.put("Veteran_Armorsmith_Other", Veteran_Armorsmith_Other); commands.put("Merfolk_Sovereign_Pump", Merfolk_Sovereign_Pump); commands.put("Merfolk_Sovereign_Other", Merfolk_Sovereign_Other); - commands.put("Lord_of_Atlantis_Pump", Lord_of_Atlantis_Pump); - commands.put("Lord_of_Atlantis_Other", Lord_of_Atlantis_Other); + //commands.put("Lord_of_Atlantis_Pump", Lord_of_Atlantis_Pump); + //commands.put("Lord_of_Atlantis_Other", Lord_of_Atlantis_Other); commands.put("Timber_Protector_Pump", Timber_Protector_Pump); commands.put("Timber_Protector_Other", Timber_Protector_Other); commands.put("Goblin_Chieftain_Pump", Goblin_Chieftain_Pump); diff --git a/src/forge/StaticEffects.java b/src/forge/StaticEffects.java index 8c41672ce8d..7f2f1d6b632 100644 --- a/src/forge/StaticEffects.java +++ b/src/forge/StaticEffects.java @@ -126,7 +126,7 @@ public class StaticEffects cardToEffectsList.put("Goblin Chieftain", new String[] {"Goblin_Chieftain_Pump", "Goblin_Chieftain_Other"}); cardToEffectsList.put("Goblin King", new String[] {"Goblin_King_Pump", "Goblin_King_Other"}); cardToEffectsList.put("Merfolk Sovereign", new String[] {"Merfolk_Sovereign_Pump", "Merfolk_Sovereign_Other"}); - cardToEffectsList.put("Lord of Atlantis", new String[] {"Lord_of_Atlantis_Pump","Lord_of_Atlantis_Other"}); + //cardToEffectsList.put("Lord of Atlantis", new String[] {"Lord_of_Atlantis_Pump","Lord_of_Atlantis_Other"}); cardToEffectsList.put("Elvish Champion", new String[] {"Elvish_Champion_Pump","Elvish_Champion_Other"}); cardToEffectsList.put("Field Marshal", new String[] {"Field_Marshal_Pump", "Field_Marshal_Other"}); cardToEffectsList.put("Death Baron", new String[] {"Death_Baron_Pump","Death_Baron_Other"});