Skill for "Nori" now useable in the maneuver phase

Previously, it was a skirmish action
This commit is contained in:
PhallenCassidy
2017-11-28 12:31:05 -05:00
committed by GitHub
parent ceaa800d79
commit 7d83b7ee9e

View File

@@ -22,7 +22,7 @@ import java.util.List;
* Strength: 7
* Vitality: 3
* Resistance: 6
* Game Text: Skirmish: Exert Nori twice and discard a [DWARVEN] follower to discard a possession
* Game Text: Maneuver: Exert Nori twice and discard a [DWARVEN] follower to discard a possession
*/
public class Card30_015 extends AbstractCompanion {
public Card30_015() {
@@ -32,7 +32,7 @@ public class Card30_015 extends AbstractCompanion {
@Override
protected List<ActivateCardAction> getExtraInPlayPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.SKIRMISH, self)
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.MANEUVER, self)
&& PlayConditions.canExert(self, game, 2, self)
&& PlayConditions.canDiscardFromPlay(self, game, Culture.DWARVEN, CardType.FOLLOWER)) {
ActivateCardAction action = new ActivateCardAction(self);
@@ -48,4 +48,4 @@ public class Card30_015 extends AbstractCompanion {
}
return null;
}
}
}