- "Nertea, Dark Horseman" now puts a message in chat box, which race was chosen.

This commit is contained in:
marcins78@gmail.com
2013-01-01 19:00:28 +00:00
parent ee537f5e72
commit 952ad78069
2 changed files with 3 additions and 1 deletions

View File

@@ -59,7 +59,7 @@ public class Card19_038 extends AbstractMinion {
}
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, final PhysicalCard self) {
public List<RequiredTriggerAction> getRequiredAfterTriggers(final LotroGame game, EffectResult effectResult, final PhysicalCard self) {
if (TriggerConditions.played(game, effectResult, self)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
@@ -73,6 +73,7 @@ public class Card19_038 extends AbstractMinion {
@Override
protected void validDecisionMade(int index, String result) {
self.setWhileInZoneData(Race.findRaceByHumanReadable(result));
game.getGameState().sendMessage(self.getOwner() +" has chosen "+result);
}
}));
return Collections.singletonList(action);

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>01 Jan. 2013</b>
- "Scintillating Bird" now should discard the cards, if not enough cards of the specified type are revealed.
- "Nertea, Dark Horseman" now puts a message in chat box, which race was chosen.
<b>23 Dec. 2012</b>
- Merchant now sells all the cards, but the out-of-stock cards are substantially more expensive to buy.