- "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:
@@ -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);
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user