- When "Mountain-troll" is played with discarding 5 minions, now it should properly gain Fierce.

This commit is contained in:
marcins78@gmail.com
2012-03-16 13:39:33 +00:00
parent ab7eb7545e
commit 89560820be
3 changed files with 13 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
import com.gempukku.lotro.logic.modifiers.KeywordModifier;
import com.gempukku.lotro.logic.timing.Action;
import com.gempukku.lotro.logic.timing.UnrespondableEffect;
import java.util.Collections;
import java.util.List;
@@ -48,8 +49,14 @@ public class Card15_112 extends AbstractMinion {
@Override
protected void discountPaidCallback() {
action.appendEffect(
new AddUntilEndOfTurnModifierEffect(
new KeywordModifier(self, self, Keyword.FIERCE)));
new UnrespondableEffect() {
@Override
protected void doPlayEffect(LotroGame game) {
action.appendEffect(
new AddUntilEndOfTurnModifierEffect(
new KeywordModifier(self, self, Keyword.FIERCE)));
}
});
}
};
}

View File

@@ -18,6 +18,7 @@ import java.util.Set;
public class DiscardCardsFromPlayEffect extends AbstractPreventableCardEffect {
private PhysicalCard _source;
private String _performingPlayer;
public DiscardCardsFromPlayEffect(PhysicalCard source, PhysicalCard... cards) {
super(cards);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>16 Mar. 2012</b>
- When "Mountain-troll" is played with discarding 5 minions, now it should properly gain Fierce.
<b>15 Mar. 2012</b>
- "Mount Doom" should finally work.
- In card info box in game you will see site owner.