Corrected "New Fear"

Previously, the card did not provide the text for the prevent cost in-game.
This commit is contained in:
PhallenCassidy
2016-12-12 09:12:53 -05:00
committed by GitHub
parent daf019e9f2
commit 514598d4a9

View File

@@ -47,7 +47,12 @@ public class Card4_240 extends AbstractOldEvent {
new PreventableEffect.PreventionCost() {
@Override
public Effect createPreventionCostForPlayer(SubAction subAction, String playerId) {
return new ChooseAndDiscardCardsFromPlayEffect(subAction, playerId, 2, 2, CardType.COMPANION, Filters.not(Filters.ringBearer));
return new ChooseAndDiscardCardsFromPlayEffect(subAction, playerId, 2, 2, CardType.COMPANION, Filters.not(Filters.ringBearer)) {
@Override
public String getText(LotroGame game) {
return "Discard 2 companions (except the Ring-bearer)";
}
}
}
}
));