- "Fearless" should now be giving a proper bonus to the minion.
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user