- The Prowess keyword will now set a BuffedBy SVar for the AI.

This commit is contained in:
Sloth
2014-09-17 13:39:38 +00:00
parent f75a2a8888
commit 51b3d723b9

View File

@@ -3372,6 +3372,7 @@ public class CardFactoryUtil {
final Trigger prowessTrigger = TriggerHandler.parseTrigger(trigProwess.toString(), card, true); final Trigger prowessTrigger = TriggerHandler.parseTrigger(trigProwess.toString(), card, true);
for (int i = 0; i < prowess; i++) { for (int i = 0; i < prowess; i++) {
card.addTrigger(prowessTrigger); card.addTrigger(prowessTrigger);
card.setSVar("BuffedBy", "Card.nonCreature+nonLand"); // for the AI
} // Prowess } // Prowess
} }