This commit is contained in:
marcins78
2013-03-15 17:54:46 +00:00
parent 68f8704f87
commit 9952ef8784
2 changed files with 8 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ var set20 = {
'20_16': 'http://lotrtcg.org/coreset/dunland/hillmantorchbearer.png',
'20_17': 'http://lotrtcg.org/coreset/dunland/hillmanprimitive(r1).png',
'20_18': 'http://lotrtcg.org/coreset/dunland/hillmanpillager(r1).png',
'20_19': 'http://lotrtcg.org/coreset/dunland/hillmanwarrior.png',
'20_19': 'http://lotrtcg.org/coreset/dunland/hillmanwarrior(r1).png',
'20_20': 'http://lotrtcg.org/coreset/dunland/frecaos.png',
'20_21': 'http://lotrtcg.org/coreset/dunland/wulfwod.png',
'20_22': 'http://lotrtcg.org/coreset/dunland/sarumanti.png',

View File

@@ -19,14 +19,15 @@ import java.util.List;
/**
* 3
* Hillman Warrior
* Dunland Minion • Man
* 9 1 3
* While a [Dunland] Man is stacked on a site you control, this minion is strength +3, damage +1 and may only
* take wounds during skirmishes.
* Minion • Man
* 8 1 3
* While a [Dunland] Man is stacked on a site you control, this minion is strength +2, damage +1 and may only take wounds
* during skirmishes.
* http://lotrtcg.org/coreset/dunland/hillmanwarrior(r1).png
*/
public class Card20_019 extends AbstractMinion {
public Card20_019() {
super(3, 9, 1, 3, Race.MAN, Culture.DUNLAND, "Hillman Warrior");
super(3, 8, 1, 3, Race.MAN, Culture.DUNLAND, "Hillman Warrior");
}
@Override
@@ -34,7 +35,7 @@ public class Card20_019 extends AbstractMinion {
List<Modifier> modifiers = new LinkedList<Modifier>();
SpotCondition condition = new SpotCondition(Filters.siteControlled(self.getOwner()), Filters.hasStacked(Culture.DUNLAND, Race.MAN));
modifiers.add(
new StrengthModifier(self, self, condition, 3));
new StrengthModifier(self, self, condition, 2));
modifiers.add(
new KeywordModifier(self, self, condition, Keyword.DAMAGE, 1));
modifiers.add(