- "Terrible and Evil" now requires to exert at least once.
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
<pre style="font-size:80%">
|
||||
<b>5 Sep. 2013</b>
|
||||
- "Terrible and Evil" now requires to exert at least once.
|
||||
|
||||
<b>21 Jul. 2013</b>
|
||||
- Only two daily tournaments per day (one for EU, one for US).
|
||||
- Dropping prize support for Daily tournaments to Top 4 competitors.
|
||||
|
||||
@@ -39,10 +39,10 @@ public class Card7_050 extends AbstractEvent {
|
||||
@Override
|
||||
public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
|
||||
final PlayEventAction action = new PlayEventAction(self);
|
||||
int vitality = game.getModifiersQuerying().getVitality(game.getGameState(), Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.gandalf));
|
||||
int vitality = game.getModifiersQuerying().getVitality(game.getGameState(), Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.gandalf, Filters.canExert(self)));
|
||||
action.appendCost(
|
||||
new PlayoutDecisionEffect(playerId,
|
||||
new IntegerAwaitingDecision(1, "Choose how many times you wish to exert Gandalf", 0, vitality - 1) {
|
||||
new IntegerAwaitingDecision(1, "Choose how many times you wish to exert Gandalf", 1, vitality - 1) {
|
||||
@Override
|
||||
public void decisionMade(String result) throws DecisionResultInvalidException {
|
||||
int exertCount = getValidatedResult(result);
|
||||
|
||||
Reference in New Issue
Block a user