diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/isengard/Card5_055.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/isengard/Card5_055.java index c8cbbd930..92539cfa4 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/isengard/Card5_055.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/isengard/Card5_055.java @@ -3,7 +3,7 @@ package com.gempukku.lotro.cards.set5.isengard; import com.gempukku.lotro.cards.AbstractMinion; import com.gempukku.lotro.cards.PlayConditions; import com.gempukku.lotro.cards.TriggerConditions; -import com.gempukku.lotro.cards.effects.ExertCharactersEffect; +import com.gempukku.lotro.cards.effects.SelfExertEffect; import com.gempukku.lotro.cards.effects.TakeControlOfASiteEffect; import com.gempukku.lotro.common.Culture; import com.gempukku.lotro.common.Keyword; @@ -11,12 +11,10 @@ import com.gempukku.lotro.common.Race; import com.gempukku.lotro.filters.Filters; import com.gempukku.lotro.game.PhysicalCard; import com.gempukku.lotro.game.state.LotroGame; -import com.gempukku.lotro.logic.GameUtils; import com.gempukku.lotro.logic.actions.OptionalTriggerAction; import com.gempukku.lotro.logic.modifiers.KeywordModifier; import com.gempukku.lotro.logic.modifiers.Modifier; import com.gempukku.lotro.logic.timing.EffectResult; -import com.gempukku.lotro.logic.timing.results.CharacterWonSkirmishResult; import java.util.Collections; import java.util.List; @@ -47,18 +45,14 @@ public class Card5_055 extends AbstractMinion { @Override public List getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) { - if (TriggerConditions.winsSkirmish(game, effectResult, Culture.ISENGARD, Race.ORC)) { - CharacterWonSkirmishResult result = (CharacterWonSkirmishResult) effectResult; - PhysicalCard winner = result.getWinner(); - if (PlayConditions.canExert(self, game, winner)) { - OptionalTriggerAction action = new OptionalTriggerAction(self); - action.setText("Exert " + GameUtils.getCardLink(winner)); - action.appendCost( - new ExertCharactersEffect(self, winner)); - action.appendEffect( - new TakeControlOfASiteEffect(self, playerId)); - return Collections.singletonList(action); - } + if (TriggerConditions.winsSkirmish(game, effectResult, Culture.ISENGARD, Race.ORC) + && PlayConditions.canSelfExert(self, game)) { + OptionalTriggerAction action = new OptionalTriggerAction(self); + action.appendCost( + new SelfExertEffect(self)); + action.appendEffect( + new TakeControlOfASiteEffect(self, playerId)); + return Collections.singletonList(action); } return null; diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html index 1c66166a3..4ea9b9904 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html @@ -1,4 +1,7 @@
+27 Dec. 2011
+- "Isengard Scout Troop" now exerts itself to take control of a site.
+
 26 Dec. 2011
 - "Wizard Storm" should now work when fellowship moves from the site it's attached to.
 - "Courtesy of My Hall" should be able to discard a hard from it now to heal a dwarf.