- "Last Days" allows to play only one minion now, if a minion is killed (counts as both killed and discarded).

This commit is contained in:
marcins78@gmail.com
2012-06-29 12:02:25 +00:00
parent 3813cee3cc
commit 22e44a6c42
2 changed files with 4 additions and 2 deletions

View File

@@ -32,8 +32,7 @@ public class Card12_071 extends AbstractPermanent {
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, final PhysicalCard self) {
if ((TriggerConditions.forEachKilled(game, effectResult, CardType.MINION, Culture.MEN)
|| TriggerConditions.forEachDiscardedFromPlay(game, effectResult, CardType.MINION, Culture.MEN))
if (TriggerConditions.forEachDiscardedFromPlay(game, effectResult, CardType.MINION, Culture.MEN)
&& !PlayConditions.isPhase(game, Phase.REGROUP)
&& PlayConditions.canPlayFromHand(playerId, game, -2, Culture.MEN, CardType.MINION)) {
final OptionalTriggerAction action = new OptionalTriggerAction(self);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>29 Jun. 2012</b>
- "Last Days" allows to play only one minion now, if a minion is killed (counts as both killed and discarded).
<b>28 Jun. 2012</b>
- "Argument Ready to Hand" no longer discards companions.