Fix to The Hobbit "He Gives Me Courage"

No longer allows the Free Peoples to exert a Wise ally if no Wise [Elven] ally can exert
This commit is contained in:
PhallenCassidy
2018-03-08 11:39:24 -05:00
committed by GitHub
parent efe31933a2
commit 919ec4e7b4

View File

@@ -38,7 +38,7 @@ public class Card30_030 extends AbstractEvent {
public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
final PlayEventAction action = new PlayEventAction(self);
if ((PlayConditions.canExert(self, game, Filters.gandalf))
&& (PlayConditions.canExert(self, game, Keyword.WISE, CardType.ALLY))) {
&& (PlayConditions.canExert(self, game, Keyword.WISE, Culture.ELVEN, CardType.ALLY))) {
action.appendCost(
new PlayoutDecisionEffect(playerId,
new YesNoDecision("Do you want to exert Gandalf and a Wise ally?") {