This commit is contained in:
marcins78
2013-03-15 17:45:47 +00:00
parent 6f0e01e64b
commit ccde1eaf67
3 changed files with 8 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ var set20 = {
'20_6': 'http://lotrtcg.org/coreset/dunland/dunlendingclansman(r1).png', '20_6': 'http://lotrtcg.org/coreset/dunland/dunlendingclansman(r1).png',
'20_7': 'http://lotrtcg.org/coreset/dunland/dunlendingveteran(r1).png', '20_7': 'http://lotrtcg.org/coreset/dunland/dunlendingveteran(r1).png',
'20_8': 'http://lotrtcg.org/coreset/dunland/dunlendinghorde(r1).png', '20_8': 'http://lotrtcg.org/coreset/dunland/dunlendinghorde(r1).png',
'20_9': 'http://lotrtcg.org/coreset/dunland/dunlendingplunderer.png', '20_9': 'http://lotrtcg.org/coreset/dunland/dunlendingplunderer(r1).png',
'20_10': 'http://lotrtcg.org/coreset/dunland/dunlendingruffian.png', '20_10': 'http://lotrtcg.org/coreset/dunland/dunlendingruffian.png',
'20_11': 'http://lotrtcg.org/coreset/dunland/dunlendingbrute.png', '20_11': 'http://lotrtcg.org/coreset/dunland/dunlendingbrute.png',
'20_12': 'http://lotrtcg.org/coreset/dunland/dunlendingraider', '20_12': 'http://lotrtcg.org/coreset/dunland/dunlendingraider',

View File

@@ -33,7 +33,7 @@ import java.util.List;
*/ */
public class Card20_008 extends AbstractMinion { public class Card20_008 extends AbstractMinion {
public Card20_008() { public Card20_008() {
super(5, 10, 2, 3, Race.MAN, Culture.DUNLAND, "Dunlending Horde"); super(4, 10, 2, 3, Race.MAN, Culture.DUNLAND, "Dunlending Horde");
} }
@Override @Override

View File

@@ -21,14 +21,15 @@ import java.util.List;
/** /**
* 3 * 3
* Dunlending Plunderer * Dunlending Plunderer
* Dunland Minion • Man * Minion • Man
* 9 1 3 * 8 1 3
* When you play Dunlending Plunder, you may discard a [Dunland] card from hand and spot another [Dunland] man * When you play this minion, you may discard a [Dunland] card from hand and spot another [Dunland] Man to discard
* to discard a Free Peoples possession. * a Free Peoples possession.
* http://lotrtcg.org/coreset/dunland/dunlendingplunderer(r1).png
*/ */
public class Card20_009 extends AbstractMinion { public class Card20_009 extends AbstractMinion {
public Card20_009() { public Card20_009() {
super(3, 9, 1, 3, Race.MAN, Culture.DUNLAND, "Dunlending Plunderer"); super(3, 8, 1, 3, Race.MAN, Culture.DUNLAND, "Dunlending Plunderer");
} }
@Override @Override