This commit is contained in:
marcins78
2013-03-19 10:19:23 +00:00
parent 0fd194a232
commit fac55e842a
2 changed files with 6 additions and 8 deletions

View File

@@ -244,7 +244,7 @@ var set20 = {
'20_243': 'http://lotrtcg.org/coreset/isengard/wizardswrath(r1).png',
'20_244': 'http://lotrtcg.org/coreset/isengard/treacheryrunsdeep(r1).png',
'20_245': 'http://lotrtcg.org/coreset/isengard/voiceofsaruman.png',
'20_246': 'http://lotrtcg.org/coreset/isengard/mightofsaruman.png',
'20_246': 'http://lotrtcg.org/coreset/isengard/mightofsaruman(r1).png',
'20_247': 'http://lotrtcg.org/coreset/isengard/seekingmycounsel.png',
'20_248': 'http://lotrtcg.org/coreset/isengard/thehourgrowslate.png',
'20_249': 'http://lotrtcg.org/coreset/isengard/oitda.png',

View File

@@ -4,10 +4,7 @@ import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
@@ -15,9 +12,10 @@ import com.gempukku.lotro.game.state.LotroGame;
/**
* 2
* Might of Saruman
* Isengard Event • Skirmish
* Event • Skirmish
* Spell.
* Spot Saruman to make an unbound companion strength - 3.
* Spot Saruman to make a companion strength -3.
* http://lotrtcg.org/coreset/isengard/mightofsaruman(r1).png
*/
public class Card20_246 extends AbstractEvent {
public Card20_246() {
@@ -36,7 +34,7 @@ public class Card20_246 extends AbstractEvent {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(
action, self, playerId, -3, Filters.unboundCompanion));
action, self, playerId, -3, CardType.COMPANION));
return action;
}
}