- "Wizard Storm" should now work when fellowship moves from the site it's attached to.
This commit is contained in:
@@ -2,6 +2,7 @@ package com.gempukku.lotro.cards.set2.isengard;
|
|||||||
|
|
||||||
import com.gempukku.lotro.cards.AbstractAttachable;
|
import com.gempukku.lotro.cards.AbstractAttachable;
|
||||||
import com.gempukku.lotro.cards.PlayConditions;
|
import com.gempukku.lotro.cards.PlayConditions;
|
||||||
|
import com.gempukku.lotro.cards.TriggerConditions;
|
||||||
import com.gempukku.lotro.cards.actions.AttachPermanentAction;
|
import com.gempukku.lotro.cards.actions.AttachPermanentAction;
|
||||||
import com.gempukku.lotro.cards.effects.ExertCharactersEffect;
|
import com.gempukku.lotro.cards.effects.ExertCharactersEffect;
|
||||||
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
|
import com.gempukku.lotro.cards.effects.SelfDiscardEffect;
|
||||||
@@ -57,8 +58,7 @@ public class Card2_048 extends AbstractAttachable {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
|
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
|
||||||
if (effectResult.getType() == EffectResult.Type.WHEN_MOVE_FROM
|
if (TriggerConditions.movesFrom(game, effectResult, self.getAttachedTo())) {
|
||||||
&& game.getGameState().getCurrentSite() == self) {
|
|
||||||
RequiredTriggerAction action = new RequiredTriggerAction(self);
|
RequiredTriggerAction action = new RequiredTriggerAction(self);
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new ExertCharactersEffect(self, CardType.COMPANION));
|
new ExertCharactersEffect(self, CardType.COMPANION));
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
<pre style="font-size:80%">
|
<pre style="font-size:80%">
|
||||||
|
<b>26 Dec. 2011</b>
|
||||||
|
- "Wizard Storm" should now work when fellowship moves from the site it's attached to.
|
||||||
|
|
||||||
<b>22 Dec. 2011</b>
|
<b>22 Dec. 2011</b>
|
||||||
- "Valley of the Silverlode" should not correctly allow to heal every Hobbit companion.
|
- "Valley of the Silverlode" should not correctly allow to heal every Hobbit companion.
|
||||||
- "Sneaking!" will now correctly heal Smeagol, if it's skirmishing a minion(s) of higher or equal vitality.
|
- "Sneaking!" will now correctly heal Smeagol, if it's skirmishing a minion(s) of higher or equal vitality.
|
||||||
|
|||||||
Reference in New Issue
Block a user