- "Throne of Minas Tirith" should only trigger once now, when a minion is killed.

This commit is contained in:
marcins78@gmail.com
2012-03-07 10:49:23 +00:00
parent b193dec39f
commit 8590bc83f9
2 changed files with 4 additions and 3 deletions

View File

@@ -43,9 +43,7 @@ public class Card17_036 extends AbstractPermanent {
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (PlayConditions.isPhase(game, Phase.SKIRMISH)
&&
(TriggerConditions.forEachKilled(game, effectResult, CardType.MINION)
|| TriggerConditions.forEachDiscardedFromPlay(game, effectResult, CardType.MINION))) {
&& TriggerConditions.forEachDiscardedFromPlay(game, effectResult, CardType.MINION)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new ReinforceTokenEffect(self, playerId, Token.GONDOR));

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>7 Mar. 2012</b>
- "Throne of Minas Tirith" should only trigger once now, when a minion is killed.
<b>6 Mar. 2012</b>
- "The Board Is Set" has now the Spell keyword.
- "East Wall of Rohan" allows to exert the companions only to FP player.