- "Morning Came" now correctly adds +2 Strength to the character if shadow player puts card from hand beneath his/her draw deck.

This commit is contained in:
marcins78@gmail.com
2012-04-27 09:18:32 +00:00
parent 3d30d3cca6
commit e3c729bbe1
2 changed files with 8 additions and 4 deletions

View File

@@ -37,14 +37,14 @@ public class Card7_243 extends AbstractEvent {
action.appendEffect( action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose ROHAN Man", Culture.ROHAN, Race.MAN) { new ChooseActiveCardEffect(self, playerId, "Choose ROHAN Man", Culture.ROHAN, Race.MAN) {
@Override @Override
protected void cardSelected(LotroGame game, final PhysicalCard card) { protected void cardSelected(LotroGame game, final PhysicalCard rohanMan) {
action.appendEffect( action.appendEffect(
new PreventableEffect(action, new PreventableEffect(action,
new AddUntilEndOfPhaseModifierEffect( new AddUntilEndOfPhaseModifierEffect(
new StrengthModifier(self, card, 4), Phase.SKIRMISH) { new StrengthModifier(self, rohanMan, 4), Phase.SKIRMISH) {
@Override @Override
public String getText(LotroGame game) { public String getText(LotroGame game) {
return "Make " + GameUtils.getCardLink(card) + " strength +4"; return "Make " + GameUtils.getCardLink(rohanMan) + " strength +4";
} }
}, GameUtils.getOpponents(game, playerId), }, GameUtils.getOpponents(game, playerId),
new PreventableEffect.PreventionCost() { new PreventableEffect.PreventionCost() {
@@ -60,7 +60,7 @@ public class Card7_243 extends AbstractEvent {
protected void putCardFromHandOnBottomOfDeckCallback(PhysicalCard card) { protected void putCardFromHandOnBottomOfDeckCallback(PhysicalCard card) {
action.appendEffect( action.appendEffect(
new AddUntilEndOfPhaseModifierEffect( new AddUntilEndOfPhaseModifierEffect(
new StrengthModifier(self, card, 2), Phase.SKIRMISH)); new StrengthModifier(self, rohanMan, 2), Phase.SKIRMISH));
} }
}; };
} }

View File

@@ -1,4 +1,8 @@
<pre style="font-size:80%"> <pre style="font-size:80%">
<b>27 Apr. 2012</b>
- "Morning Came" now correctly adds +2 Strength to the character if shadow player puts card from hand beneath his/her
draw deck.
<b>26 Apr. 2012</b> <b>26 Apr. 2012</b>
- "Doors of Durin" should be working correctly now with Smeagol (companion with no race). - "Doors of Durin" should be working correctly now with Smeagol (companion with no race).