- "Fearless" should now be giving a proper bonus to the minion.

This commit is contained in:
marcins78@gmail.com
2012-01-16 10:12:27 +00:00
parent 6cab93aebd
commit eb7aed2b9c
2 changed files with 5 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ public class Card4_233 extends AbstractOldEvent {
int bonus = Math.min(5, game.getGameState().getBurdens());
action.insertEffect(
new AddUntilEndOfPhaseModifierEffect(
new StrengthModifier(self, self, bonus), Phase.SKIRMISH));
new StrengthModifier(self, card, bonus), Phase.SKIRMISH));
}
});
possibleEffects.add(
@@ -58,7 +58,7 @@ public class Card4_233 extends AbstractOldEvent {
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.insertEffect(
new AddUntilEndOfPhaseModifierEffect(
new StrengthModifier(self, self, 2), Phase.SKIRMISH));
new StrengthModifier(self, card, 2), Phase.SKIRMISH));
}
});
action.appendEffect(

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>15 Jan. 2012</b>
- "Fearless" should now be giving a proper bonus to the minion.
<b>15 Jan. 2012</b>
- "Hobbit Farmer" and other allies copying site text should now be able to activate the site phase actions.
- "Easterling Banner-bearer" should have his strength correctly calculated.