diff --git a/res/cardsfolder/k/koth_of_the_hammer.txt b/res/cardsfolder/k/koth_of_the_hammer.txt index f5c56d4aa3b..1282add12dd 100644 --- a/res/cardsfolder/k/koth_of_the_hammer.txt +++ b/res/cardsfolder/k/koth_of_the_hammer.txt @@ -3,6 +3,13 @@ ManaCost:2 R R Types:Planeswalker Koth Text:no text Loyalty:3 +A:AB$ Untap | Cost$ AddCounter<1/LOYALTY> | Planeswalker$ True | ValidTgts$ Mountain | TgtPrompt$ Select target Mountain | SubAbility$ DBAnimate | SpellDescription$ Untap target Mountain. It becomes a 4/4 red Elemental creature until end of turn. It's still a land. +SVar:DBAnimate:DB$ Animate | Defined$ Targeted | Power$ 4 | Toughness$ 4 | Types$ Creature,Elemental | Colors$ Red +A:AB$ Mana | Cost$ SubCounter<2/LOYALTY> | Planeswalker$ True | Produced$ R | Amount$ X | SpellDescription$ Add R to your mana pool for each Mountain you control. +A:AB$ Effect | Cost$ SubCounter<5/LOYALTY> | Planeswalker$ True | Ultimate$ True | Name$ Koth of the Hammer emblem | StaticAbilities$ STDamage | SVars$ ABDealDamage | Duration$ Permanent | SpellDescription$ You get an emblem with "Mountains you control have '{T}: This land deals 1 damage to target creature or player." +SVar:STDamage:Mode$ Continuous | Affected$ Mountain.YouCtrl | AddAbility$ ABDealDamage | AffectedZone$ Battlefield +SVar:ABDealDamage:AB$ DealDamage | Cost$ T | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | NumDmg$ 1 | SpellDescription$ Deal 1 damage to target creature or player +SVar:X:Count$Valid Mountain.YouCtrl SVar:PlayMain1:TRUE SVar:Rarity:Mythic SVar:Picture:http://www.wizards.com/global/images/magic/general/koth_of_the_hammer.jpg diff --git a/src/main/java/forge/card/cardFactory/CardFactory_Planeswalkers.java b/src/main/java/forge/card/cardFactory/CardFactory_Planeswalkers.java index e1c324fecf6..06870712a15 100644 --- a/src/main/java/forge/card/cardFactory/CardFactory_Planeswalkers.java +++ b/src/main/java/forge/card/cardFactory/CardFactory_Planeswalkers.java @@ -1297,6 +1297,7 @@ public class CardFactory_Planeswalkers { return card; } // *************** END ************ END ************************** + /* // *************** START *********** START ************************** else if (cardName.equals("Koth of the Hammer")) { // computer only plays ability 1 and 3, put 1/1 Soldier in play and @@ -1529,6 +1530,7 @@ public class CardFactory_Planeswalkers { return card; } // *************** END ************ END ************************** + */ return card; }