- "Uruk Stormer" now allows to take control of a site, if any other Uruk-hai kills a companion or ally.

This commit is contained in:
marcins78@gmail.com
2011-11-13 14:47:10 +00:00
parent 7f689a07f4
commit 4f1699a3ea
2 changed files with 5 additions and 2 deletions

View File

@@ -38,9 +38,9 @@ public class Card4_198 extends AbstractMinion {
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (effectResult.getType() == EffectResult.Type.KILL
&& Filters.inSkirmish.accepts(game.getGameState(), game.getModifiersQuerying(), self)) {
&& Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.inSkirmish, Race.URUK_HAI)) {
KillResult killResult = (KillResult) effectResult;
final Collection<PhysicalCard> killedFPs = Filters.filter(killResult.getKilledCards(), game.getGameState(), game.getModifiersQuerying(), Filters.or(Filters.type(CardType.ALLY), Filters.type(CardType.COMPANION)));
final Collection<PhysicalCard> killedFPs = Filters.filter(killResult.getKilledCards(), game.getGameState(), game.getModifiersQuerying(), Filters.or(CardType.ALLY, CardType.COMPANION));
List<OptionalTriggerAction> actions = new LinkedList<OptionalTriggerAction>();
for (int i = 0; i < killedFPs.size(); i++) {
OptionalTriggerAction action = new OptionalTriggerAction(self);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>13 Nov. 2011</b>
- "Uruk Stormer" now allows to take control of a site, if any other Uruk-hai kills a companion or ally.
<b>11 Nov. 2011</b>
- "Eowyn, Daughter of Eomund" now allows to play possession from hand, rather than discard with her ability.
- "They Stole It" now always wounds the character in skirmish against Gollum, not only when the companion is wounded.