20_351
This commit is contained in:
@@ -349,7 +349,7 @@ var set20 = {
|
||||
'20_348': 'http://lotrtcg.org/coreset/rohan/wallneverbreached.png',
|
||||
'20_349': 'http://lotrtcg.org/coreset/sauron/baraddurcaptain(r1).png',
|
||||
'20_350': 'http://lotrtcg.org/coreset/sauron/blackgateologhai(r1).png',
|
||||
'20_351': 'http://lotrtcg.org/coreset/sauron/bladeofgorgoroth.png',
|
||||
'20_351': 'http://lotrtcg.org/coreset/sauron/bladeofgorgoroth(r1).png',
|
||||
'20_352': 'http://lotrtcg.org/coreset/sauron/bladeofmorannon.png',
|
||||
'20_353': 'http://lotrtcg.org/coreset/sauron/boundtothisfate.png',
|
||||
'20_354': 'http://lotrtcg.org/coreset/sauron/despairingshadow.png',
|
||||
|
||||
@@ -7,7 +7,6 @@ import com.gempukku.lotro.common.*;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.PhysicalCard;
|
||||
import com.gempukku.lotro.game.state.LotroGame;
|
||||
import com.gempukku.lotro.logic.modifiers.KeywordModifier;
|
||||
import com.gempukku.lotro.logic.modifiers.Modifier;
|
||||
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
|
||||
|
||||
@@ -17,10 +16,11 @@ import java.util.List;
|
||||
/**
|
||||
* 1
|
||||
* Blade of Gorgoroth
|
||||
* Sauron Possession • Hand weapon
|
||||
* Possession • Hand weapon
|
||||
* 2
|
||||
* Bearer must be a [Sauron] Orc.
|
||||
* While you cannot spot 3 Free Peoples cultures, bearer is damage +1.
|
||||
* While you cannot spot 3 Free Peoples cultures, bearer is strength +2.
|
||||
* http://lotrtcg.org/coreset/sauron/bladeofgorgoroth(r1).png
|
||||
*/
|
||||
public class Card20_351 extends AbstractAttachable {
|
||||
public Card20_351() {
|
||||
@@ -38,8 +38,8 @@ public class Card20_351 extends AbstractAttachable {
|
||||
modifiers.add(
|
||||
new StrengthModifier(self, Filters.hasAttached(self), 2));
|
||||
modifiers.add(
|
||||
new KeywordModifier(self, Filters.hasAttached(self),
|
||||
new NotCondition(new CanSpotFPCulturesCondition(self.getOwner(), 3)), Keyword.DAMAGE, 1));
|
||||
new StrengthModifier(self, Filters.hasAttached(self),
|
||||
new NotCondition(new CanSpotFPCulturesCondition(self.getOwner(), 3)), 2));
|
||||
return modifiers;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user