- "Perspective" now correctly adds threats.

This commit is contained in:
marcins78@gmail.com
2012-06-06 17:15:28 +00:00
parent e8961a54e4
commit 754fe9d498
2 changed files with 4 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ import com.gempukku.lotro.common.*;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.effects.AddThreatsEffect;
import com.gempukku.lotro.logic.effects.ChooseActiveCardEffect;
import com.gempukku.lotro.logic.timing.Action;
@@ -34,6 +35,8 @@ public class Card18_025 extends AbstractPermanent {
&& PlayConditions.canAddThreat(game, self, 2)
&& PlayConditions.canSpot(game, Race.WIZARD)) {
final ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new AddThreatsEffect(playerId, self, 2));
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose a minion", CardType.MINION) {
@Override

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>6 Jun. 2012</b>
- "Final Account" now requires to exert a GANDALF Wizard to play it.
- "Perspective" now correctly adds threats.
<b>5 Jun. 2012</b>
- "Host of Udun" now correctly reduces the cost if threats are removed, when card could be played for full cost.