- "Hrethel" now can be used only when skirmishing a wounded minion.

This commit is contained in:
marcins78@gmail.com
2011-10-30 02:38:01 +00:00
parent 4800f18183
commit 9c6a7d9a05
2 changed files with 3 additions and 2 deletions

View File

@@ -44,7 +44,8 @@ public class Card6_095 extends AbstractCompanion {
@Override
protected List<? extends Action> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game.getGameState(), Phase.SKIRMISH, self)) {
if (PlayConditions.canUseFPCardDuringPhase(game.getGameState(), Phase.SKIRMISH, self)
&& Filters.inSkirmishAgainst(CardType.MINION, Filters.wounded).accepts(game.getGameState(), game.getModifiersQuerying(), self)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndHealCharactersEffect(action, playerId, 1, 1, CardType.MINION, Filters.inSkirmishAgainst(self)));

View File

@@ -2,7 +2,7 @@
<b>29 Oct. 2011</b>
- Added Game History tab allowing to watch your old games.
- "Nan Curunir" now correctly allows to prevent damage only to mounted minions and does not crash the game when used.
- "Hrethel" now can be used only when skirmishing a wounded minion.
<b>27 Oct. 2011</b>
- "Wizard Staff" is no longer considered an artifact by the game, it's just a mere possession.