- "Down to the Last Child" now triggers on companion/ally losing skirmish, not Uruk-hai winning, so if companion loses

skirmish to 2 Uruk-hai, it will only add one token.
This commit is contained in:
marcins78
2012-10-16 23:04:39 +00:00
parent 57febbcf11
commit 42ab1638e9
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ import com.gempukku.lotro.cards.effects.AddTokenEffect;
import com.gempukku.lotro.cards.effects.RemoveTokenEffect;
import com.gempukku.lotro.cards.effects.TakeControlOfASiteEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
@@ -33,7 +34,7 @@ public class Card4_148 extends AbstractPermanent {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.winsSkirmish(game, effectResult, Race.URUK_HAI)) {
if (TriggerConditions.losesSkirmishInvolving(game, effectResult, Filters.or(CardType.COMPANION, CardType.ALLY), Race.URUK_HAI)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new AddTokenEffect(self, self, Token.ISENGARD));

View File

@@ -1,4 +1,8 @@
<pre style="font-size:80%">
<b>16 Oct. 2012</b>
- "Down to the Last Child" now triggers on companion/ally losing skirmish, not Uruk-hai winning, so if companion loses
skirmish to 2 Uruk-hai, it will only add one token.
<b>5 Oct. 2012</b>
- "Called Away" cannot be played now if burdens cannot be removed.