This commit is contained in:
marcins78
2013-03-15 17:46:59 +00:00
parent ccde1eaf67
commit 61c1f152d5
2 changed files with 7 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ var set20 = {
'20_7': 'http://lotrtcg.org/coreset/dunland/dunlendingveteran(r1).png',
'20_8': 'http://lotrtcg.org/coreset/dunland/dunlendinghorde(r1).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(r1).png',
'20_11': 'http://lotrtcg.org/coreset/dunland/dunlendingbrute.png',
'20_12': 'http://lotrtcg.org/coreset/dunland/dunlendingraider',
'20_13': 'http://lotrtcg.org/coreset/dunland/dunlendingelder.png',

View File

@@ -25,14 +25,15 @@ import java.util.List;
/**
* 4
* • Dunlending Ruffian
* Dunland Minion • Man
* 10 2 3
* When you play Dunlending Ruffian, you may discard a [Dunland] card from hand. If you do, spot a companion
* (except the Ring-bearer.) At the beginning of the next Assignment phase, assign this minion to the companion.
* Minion • Man
* 9 2 3
* When you play this minion, you may discard a [Dunland] card from hand. If you do, spot a companion (except
* the Ring-bearer). At the start of the next assignment phase, assign this minion to that companion.
* http://lotrtcg.org/coreset/dunland/dunlendingruffian(r1).png
*/
public class Card20_010 extends AbstractMinion {
public Card20_010() {
super(4, 10, 2, 3, Race.MAN, Culture.DUNLAND, "Dunlending Ruffian", null, true);
super(4, 9, 2, 3, Race.MAN, Culture.DUNLAND, "Dunlending Ruffian", null, true);
}
@Override