From e63a0b3bcfb566f50df8b812c922a002ada06d05 Mon Sep 17 00:00:00 2001 From: Sol Date: Wed, 21 Sep 2016 18:53:27 +0000 Subject: [PATCH] - KLD Fixes (incl. small change to "can't crew Vehicles" to match Revoke Privileges text) --- forge-ai/src/main/java/forge/ai/ComputerUtil.java | 2 +- forge-game/src/main/java/forge/game/cost/CostTapType.java | 2 +- forge-gui/res/cardsfolder/upcoming/architect_of_the_untamed.txt | 2 +- forge-gui/res/cardsfolder/upcoming/revoke_privileges.txt | 2 +- forge-gui/src/main/java/forge/player/HumanCostDecision.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/forge-ai/src/main/java/forge/ai/ComputerUtil.java b/forge-ai/src/main/java/forge/ai/ComputerUtil.java index 156cfbc6f31..4c825a3144f 100644 --- a/forge-ai/src/main/java/forge/ai/ComputerUtil.java +++ b/forge-ai/src/main/java/forge/ai/ComputerUtil.java @@ -508,7 +508,7 @@ public class ComputerUtil { CardLists.getValidCards(all, type.split(";"), activate.getController(), activate, sa); if (sa.hasParam("Crew")) { - typeList = CardLists.getNotKeyword(typeList, "CARDNAME can't crew a vehicle"); + typeList = CardLists.getNotKeyword(typeList, "CARDNAME can't crew Vehicles."); } // is this needed? diff --git a/forge-game/src/main/java/forge/game/cost/CostTapType.java b/forge-game/src/main/java/forge/game/cost/CostTapType.java index 2a1ee2f3d90..782452b9522 100644 --- a/forge-game/src/main/java/forge/game/cost/CostTapType.java +++ b/forge-game/src/main/java/forge/game/cost/CostTapType.java @@ -129,7 +129,7 @@ public class CostTapType extends CostPartWithList { typeList = CardLists.filter(typeList, Presets.UNTAPPED); if (ability.hasParam("Crew")) { - typeList = CardLists.getNotKeyword(typeList, "CARDNAME can't crew a vehicle"); + typeList = CardLists.getNotKeyword(typeList, "CARDNAME can't crew Vehicles."); } if (sameType) { diff --git a/forge-gui/res/cardsfolder/upcoming/architect_of_the_untamed.txt b/forge-gui/res/cardsfolder/upcoming/architect_of_the_untamed.txt index e0aeadc0374..20fcb0da5f2 100644 --- a/forge-gui/res/cardsfolder/upcoming/architect_of_the_untamed.txt +++ b/forge-gui/res/cardsfolder/upcoming/architect_of_the_untamed.txt @@ -2,7 +2,7 @@ Name:Architect of the Untamed ManaCost:2 G Types:Creature Elf Artificer Druid PT:2/3 -T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Land.YouCtrl | Execute$ TrigEnergy | TriggerDescription$ Whenever a land enters the battlefiend under your control, you get {E} (an energy counter). +T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | TriggerZones$ Battlefield | ValidCard$ Land.YouCtrl | Execute$ TrigEnergy | TriggerDescription$ Whenever a land enters the battlefiend under your control, you get {E} (an energy counter). SVar:TrigEnergy:DB$ PutCounter | Defined$ You | CounterType$ ENERGY | CounterNum$ 1 A:AB$ Token | Cost$ PayEnergy<8> | TokenAmount$ 1 | TokenName$ Beast | TokenTypes$ Artifact,Creature,Beast | TokenOwner$ You | TokenColors$ Colorless | TokenPower$ 6 | TokenToughness$ 6 | TokenImage$ c 6 6 beast | SpellDescription$ Create a 6/6 colorless Beast artifact creature token. SVar:Picture:http://www.wizards.com/global/images/magic/general/architect_of_the_untamed.jpg diff --git a/forge-gui/res/cardsfolder/upcoming/revoke_privileges.txt b/forge-gui/res/cardsfolder/upcoming/revoke_privileges.txt index 1850cd6b050..b1d10c95bc5 100644 --- a/forge-gui/res/cardsfolder/upcoming/revoke_privileges.txt +++ b/forge-gui/res/cardsfolder/upcoming/revoke_privileges.txt @@ -3,6 +3,6 @@ ManaCost:2 W Types:Enchantment Aura K:Enchant creature A:SP$ Attach | Cost$ 2 W | ValidTgts$ Creature | AILogic$ Curse -S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddHiddenKeyword$ CARDNAME can't attack or block. & CARDNAME can't crew a vehicle. | Description$ Enchanted creature can't attack, block, or crew Vehicles. +S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddHiddenKeyword$ CARDNAME can't attack or block. & CARDNAME can't crew Vehicles. | Description$ Enchanted creature can't attack, block, or crew Vehicles. SVar:Picture:http://www.wizards.com/global/images/magic/general/revoke_privileges.jpg Oracle:Enchanted creature can't attack, block, or crew Vehicles. diff --git a/forge-gui/src/main/java/forge/player/HumanCostDecision.java b/forge-gui/src/main/java/forge/player/HumanCostDecision.java index 6336976a8fa..1fd6f418f71 100644 --- a/forge-gui/src/main/java/forge/player/HumanCostDecision.java +++ b/forge-gui/src/main/java/forge/player/HumanCostDecision.java @@ -1095,7 +1095,7 @@ public class HumanCostDecision extends CostDecisionMakerBase { typeList = CardLists.filter(typeList, Presets.UNTAPPED); if (ability.hasParam("Crew")) { - typeList = CardLists.getNotKeyword(typeList, "CARDNAME can't crew a vehicle"); + typeList = CardLists.getNotKeyword(typeList, "CARDNAME can't crew Vehicles."); } if (c == null && !amount.equals("Any")) {