- When "Mountain-troll" is played with discarding 5 minions, now it should properly gain Fierce.
This commit is contained in:
@@ -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)));
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user