- "Saruman, Master of Foul Folk" now correctly allows to heal each ISENGARD Orc when fellowship moves.

This commit is contained in:
marcins78@gmail.com
2012-04-09 14:31:34 +00:00
parent 00284c84c6
commit 0eb0952c55
2 changed files with 5 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ import com.gempukku.lotro.game.state.GameState;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.actions.OptionalTriggerAction;
import com.gempukku.lotro.logic.effects.ChooseAndHealCharactersEffect;
import com.gempukku.lotro.logic.effects.HealCharactersEffect;
import com.gempukku.lotro.logic.modifiers.Condition;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.ModifierFlag;
@@ -77,7 +77,9 @@ public class Card5_056 extends AbstractMinion {
if (effectResult.getType() == EffectResult.Type.WHEN_FELLOWSHIP_MOVES) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, 1, 1, 2, Culture.ISENGARD, Race.ORC));
new HealCharactersEffect(self, Culture.ISENGARD, Race.ORC));
action.appendEffect(
new HealCharactersEffect(self, Culture.ISENGARD, Race.ORC));
return Collections.singletonList(action);
}
return null;

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>09 Apr. 2012</b>
- "Throne of Saruman" now correctly boosts conditions that become Wizard minions.
- "Saruman, Master of Foul Folk" now correctly allows to heal each ISENGARD Orc when fellowship moves.
<b>07 Apr. 2012</b>
- "East Wall of Rohan" can be activated once only.