This commit is contained in:
marcins78
2013-03-19 11:12:33 +00:00
parent 7a34a9bdbd
commit f70af01055
2 changed files with 7 additions and 5 deletions

View File

@@ -317,7 +317,7 @@ var set20 = {
'20_316': 'http://lotrtcg.org/coreset/rohan/eomerec.png',
'20_317': 'http://lotrtcg.org/coreset/rohan/eomerrm.png',
'20_318': 'http://lotrtcg.org/coreset/rohan/eomersspear.png',
'20_319': 'http://lotrtcg.org/coreset/rohan/eowynlotsa.png',
'20_319': 'http://lotrtcg.org/coreset/rohan/eowynlots(r1).png',
'20_320': 'http://lotrtcg.org/coreset/rohan/eowynnor.png',
'20_321': 'http://lotrtcg.org/coreset/rohan/eowynsswordnb.png',
'20_322': 'http://lotrtcg.org/coreset/rohan/feyheseemed.png',

View File

@@ -14,10 +14,12 @@ import com.gempukku.lotro.logic.modifiers.StrengthModifier;
/**
* 2
* •Eowyn, Lady of the Shield-arm
* Rohan Companion • Man
* Companion • Man
* 6 3 7
* Valiant. While in your starting fellowship, Eowyn's twilight cost is -1.
* While you can spot an exhausted [Rohan] Man, Eowyn is strength +3.
* Valiant.
* While in your starting fellowship, Eowyn's twilight cost is -1.
* While you can spot an exhausted [Rohan] Man, Eowyn is strength +2.
* http://lotrtcg.org/coreset/rohan/eowynlots(r1).png
*/
public class Card20_319 extends AbstractCompanion {
public Card20_319() {
@@ -33,6 +35,6 @@ public class Card20_319 extends AbstractCompanion {
@Override
public Modifier getAlwaysOnModifier(LotroGame game, PhysicalCard self) {
return new StrengthModifier(self, self,
new SpotCondition(Culture.ROHAN, Race.MAN, Filters.exhausted), 3);
new SpotCondition(Culture.ROHAN, Race.MAN, Filters.exhausted), 2);
}
}