mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- KLD Fixes (incl. small change to "can't crew Vehicles" to match Revoke Privileges text)
This commit is contained in:
@@ -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?
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user