- "Raider Halberd" now correctly adds 2 strength to bearer.
This commit is contained in:
@@ -9,6 +9,8 @@ import com.gempukku.lotro.game.PhysicalCard;
|
||||
import com.gempukku.lotro.game.state.LotroGame;
|
||||
import com.gempukku.lotro.logic.actions.ActivateCardAction;
|
||||
import com.gempukku.lotro.logic.effects.AddTwilightEffect;
|
||||
import com.gempukku.lotro.logic.modifiers.Modifier;
|
||||
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
|
||||
import com.gempukku.lotro.logic.timing.Action;
|
||||
|
||||
import java.util.Collections;
|
||||
@@ -33,6 +35,12 @@ public class Card7_156 extends AbstractAttachable {
|
||||
return Filters.and(Culture.RAIDER, Race.MAN);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
|
||||
return Collections.singletonList(
|
||||
new StrengthModifier(self, Filters.hasAttached(self), 2));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
|
||||
if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.SKIRMISH, self, 0)
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<pre style="font-size:80%">
|
||||
<b>20 Nov. 2011</b>
|
||||
- "Sauron" no longer has his twilight cost reduced by the twilight pool size, instead of burdens spotted.
|
||||
- "Raider Halberd" now correctly adds 2 strength to bearer.
|
||||
|
||||
<b>19 Nov. 2011</b>
|
||||
- "Dead Man of Dunharrow" now correctly has Enduring keyword.
|
||||
|
||||
Reference in New Issue
Block a user