Corrected "New Fear"
Previously, the card did not provide the text for the prevent cost in-game.
This commit is contained in:
@@ -47,7 +47,12 @@ public class Card4_240 extends AbstractOldEvent {
|
|||||||
new PreventableEffect.PreventionCost() {
|
new PreventableEffect.PreventionCost() {
|
||||||
@Override
|
@Override
|
||||||
public Effect createPreventionCostForPlayer(SubAction subAction, String playerId) {
|
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)";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
|
|||||||
Reference in New Issue
Block a user