diff --git a/res/cardsfolder/kird_ape.txt b/res/cardsfolder/kird_ape.txt index af86f008d83..adf3f4a62d8 100644 --- a/res/cardsfolder/kird_ape.txt +++ b/res/cardsfolder/kird_ape.txt @@ -1,8 +1,10 @@ Name:Kird Ape ManaCost:R Types:Creature Ape -Text:Kird Ape gets +1/+2 as long as you control a Forest. +Text:no text +#Kird Ape gets +1/+2 as long as you control a Forest. PT:1/1 +K:stPumpSelf:Creature:1/2:isPresent Forest.YouCtrl:CARDNAME gets +1/+2 as long as you control a Forest. SVar:Rarity:Common SVar:Picture:http://www.wizards.com/global/images/magic/general/kird_ape.jpg End diff --git a/src/forge/GameActionUtil.java b/src/forge/GameActionUtil.java index 73aba050a84..b440f58a3e0 100644 --- a/src/forge/GameActionUtil.java +++ b/src/forge/GameActionUtil.java @@ -14890,7 +14890,7 @@ public class GameActionUtil { }// execute() }; - + /* public static Command Kird_Ape = new Command() { private static final long serialVersionUID = 3448725650293971110L; @@ -14916,6 +14916,7 @@ public class GameActionUtil { else return false; } }; + */ public static Command Loam_Lion = new Command() { private static final long serialVersionUID = -6996623102170747897L; @@ -21149,7 +21150,7 @@ public class GameActionUtil { commands.put("Gaeas_Avenger", Gaeas_Avenger); commands.put("Vexing_Beetle", Vexing_Beetle); commands.put("Sejiri_Merfolk", Sejiri_Merfolk); - commands.put("Kird_Ape", Kird_Ape); + //commands.put("Kird_Ape", Kird_Ape); commands.put("Loam_Lion", Loam_Lion); commands.put("Sedge_Troll", Sedge_Troll); commands.put("Hedge_Troll", Hedge_Troll); diff --git a/src/forge/StaticEffects.java b/src/forge/StaticEffects.java index 2f4a8133985..9250ed4cf62 100644 --- a/src/forge/StaticEffects.java +++ b/src/forge/StaticEffects.java @@ -86,7 +86,7 @@ public class StaticEffects cardToEffectsList.put("Vexing Beetle", new String[] {"Vexing_Beetle"}); cardToEffectsList.put("Sejiri Merfolk", new String[] {"Sejiri_Merfolk"}); cardToEffectsList.put("Loam Lion", new String[] {"Loam_Lion"}); - cardToEffectsList.put("Kird Ape", new String[] {"Kird_Ape"}); + //cardToEffectsList.put("Kird Ape", new String[] {"Kird_Ape"}); cardToEffectsList.put("Sedge Troll", new String[] {"Sedge_Troll"}); cardToEffectsList.put("Hedge Troll", new String[] {"Hedge_Troll"}); cardToEffectsList.put("Wild Nacatl", new String[] {"Wild_Nacatl"});