Fix to 10R112 "Nine-fingered Frodo and the Ring of Doom"
Can now remove one threat if and only if there are no burdens and not two threats
This commit is contained in:
@@ -47,6 +47,7 @@ public class Card10_112 extends AbstractEvent {
|
|||||||
List<Effect> possibleEffects = new LinkedList<Effect>();
|
List<Effect> possibleEffects = new LinkedList<Effect>();
|
||||||
possibleEffects.add(
|
possibleEffects.add(
|
||||||
new RemoveBurdenEffect(playerId, self));
|
new RemoveBurdenEffect(playerId, self));
|
||||||
|
if (game.getGameState().getThreats() > 1) {
|
||||||
possibleEffects.add(
|
possibleEffects.add(
|
||||||
new RemoveThreatsEffect(self, 2) {
|
new RemoveThreatsEffect(self, 2) {
|
||||||
@Override
|
@Override
|
||||||
@@ -54,6 +55,10 @@ public class Card10_112 extends AbstractEvent {
|
|||||||
return "Remove 2 threats";
|
return "Remove 2 threats";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else if (game.getGameState().getBurdens() == 0) {
|
||||||
|
possibleEffects.add(
|
||||||
|
new RemoveThreatsEffect(self, 1));
|
||||||
|
}
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new ChoiceEffect(action, playerId, possibleEffects));
|
new ChoiceEffect(action, playerId, possibleEffects));
|
||||||
return action;
|
return action;
|
||||||
|
|||||||
Reference in New Issue
Block a user