- "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:
@@ -37,14 +37,14 @@ public class Card7_243 extends AbstractEvent {
|
||||
action.appendEffect(
|
||||
new ChooseActiveCardEffect(self, playerId, "Choose ROHAN Man", Culture.ROHAN, Race.MAN) {
|
||||
@Override
|
||||
protected void cardSelected(LotroGame game, final PhysicalCard card) {
|
||||
protected void cardSelected(LotroGame game, final PhysicalCard rohanMan) {
|
||||
action.appendEffect(
|
||||
new PreventableEffect(action,
|
||||
new AddUntilEndOfPhaseModifierEffect(
|
||||
new StrengthModifier(self, card, 4), Phase.SKIRMISH) {
|
||||
new StrengthModifier(self, rohanMan, 4), Phase.SKIRMISH) {
|
||||
@Override
|
||||
public String getText(LotroGame game) {
|
||||
return "Make " + GameUtils.getCardLink(card) + " strength +4";
|
||||
return "Make " + GameUtils.getCardLink(rohanMan) + " strength +4";
|
||||
}
|
||||
}, GameUtils.getOpponents(game, playerId),
|
||||
new PreventableEffect.PreventionCost() {
|
||||
@@ -60,7 +60,7 @@ public class Card7_243 extends AbstractEvent {
|
||||
protected void putCardFromHandOnBottomOfDeckCallback(PhysicalCard card) {
|
||||
action.appendEffect(
|
||||
new AddUntilEndOfPhaseModifierEffect(
|
||||
new StrengthModifier(self, card, 2), Phase.SKIRMISH));
|
||||
new StrengthModifier(self, rohanMan, 2), Phase.SKIRMISH));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
<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>
|
||||
- "Doors of Durin" should be working correctly now with Smeagol (companion with no race).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user