- KLD Fixes (incl. small change to "can't crew Vehicles" to match Revoke Privileges text)

This commit is contained in:
Sol
2016-09-21 18:53:27 +00:00
parent ce17927d55
commit e63a0b3bcf
5 changed files with 5 additions and 5 deletions

View File

@@ -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?

View File

@@ -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) {

View File

@@ -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

View File

@@ -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.

View File

@@ -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")) {