- "Plains of Rohan Camp" now allows to heal "up to" 3 wounds, not just 3 wounds.

This commit is contained in:
marcins78@gmail.com
2012-12-16 20:24:24 +00:00
parent 60d936ca17
commit b6ceaaf0c9
2 changed files with 6 additions and 3 deletions

View File

@@ -33,11 +33,11 @@ public class Card4_333 extends AbstractSite {
if (TriggerConditions.startOfPhase(game, effectResult, Phase.FELLOWSHIP)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION));
new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 0, 1, CardType.COMPANION));
action.appendEffect(
new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION));
new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 0, 1, CardType.COMPANION));
action.appendEffect(
new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION));
new ChooseAndHealCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 0, 1, CardType.COMPANION));
return Collections.singletonList(action);
}
return null;

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>16 Dec. 2012</b>
- "Plains of Rohan Camp" now allows to heal "up to" 3 wounds, not just 3 wounds.
<b>15 Dec. 2012</b>
- Both "Forces of Mordor" and "Uruk Spy" now give a choice of number of minions to spot, therefore allowing to spot less
than are in play.