- "Ugluk's Sword, Weapon of Command" - bearer cannot take wounds only if you control 2 or more sites now.

This commit is contained in:
marcins78@gmail.com
2012-10-02 14:58:35 +00:00
parent 3e0dc37538
commit 58be33317a
2 changed files with 10 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ package com.gempukku.lotro.cards.set15.uruk_hai;
import com.gempukku.lotro.cards.AbstractAttachable;
import com.gempukku.lotro.cards.modifiers.CantTakeWoundsModifier;
import com.gempukku.lotro.cards.modifiers.conditions.AndCondition;
import com.gempukku.lotro.cards.modifiers.conditions.NotCondition;
import com.gempukku.lotro.cards.modifiers.conditions.PhaseCondition;
import com.gempukku.lotro.common.*;
@@ -10,6 +11,7 @@ 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.SpotCondition;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import java.util.LinkedList;
@@ -41,7 +43,11 @@ public class Card15_173 extends AbstractAttachable {
modifiers.add(
new StrengthModifier(self, Filters.hasAttached(self), 1));
modifiers.add(
new CantTakeWoundsModifier(self, new NotCondition(new PhaseCondition(Phase.SKIRMISH)), Filters.hasAttached(self)));
new CantTakeWoundsModifier(self,
new AndCondition(
new NotCondition(new PhaseCondition(Phase.SKIRMISH)),
new SpotCondition(2, Filters.siteControlled(self.getOwner()))),
Filters.hasAttached(self)));
modifiers.add(
new KeywordModifier(self, Filters.and(Filters.hasAttached(self), Filters.name("Ugluk")), Keyword.DAMAGE, 1));
return modifiers;

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>2 Oct. 2012</b>
- "Ugluk's Sword, Weapon of Command" - bearer cannot take wounds only if you control 2 or more sites now.
<b>1 Oct. 2012</b>
- "Raider Halberd" added to X-list for "Pre-Shadows Multipath" format.