- "Asfaloth" no longer discard itself when attached to Ally and fellowship is at an Underground site.

This commit is contained in:
marcins78@gmail.com
2012-03-10 17:09:35 +00:00
parent 4b8a24a0de
commit 8bbd13d752
2 changed files with 6 additions and 1 deletions

View File

@@ -54,7 +54,8 @@ public class Card1_031 extends AbstractAttachableFPPossession {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (PlayConditions.location(game, Keyword.UNDERGROUND)) {
if (PlayConditions.canSpot(game, Filters.hasAttached(self), CardType.COMPANION)
&& PlayConditions.location(game, Keyword.UNDERGROUND)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(new SelfDiscardEffect(self));
return Collections.singletonList(action);

View File

@@ -1,4 +1,8 @@
<pre style="font-size:80%">
<b>9 Mar. 2012</b>
- "Asfaloth" no longer discard itself when attached to Ally and fellowship is at an Underground site.
- Added all the missing booster packs and rarity for all cards.
<b>9 Mar. 2012</b>
- When a card stacks cards from discard, it does it now correctly if the number of cards in discard is exactly the same
as it has to stack (if no selection is needed).