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