This commit is contained in:
marcins78
2013-03-19 11:28:27 +00:00
parent f32c39d2b9
commit 5c1e79f2ca
2 changed files with 6 additions and 5 deletions

View File

@@ -358,7 +358,7 @@ var set20 = {
'20_357': 'http://lotrtcg.org/coreset/sauron/gatheringevil(r1).png',
'20_358': 'http://lotrtcg.org/coreset/sauron/gothmogvc.png',
'20_359': 'http://lotrtcg.org/coreset/sauron/gothmogswargrb.png',
'20_360': 'http://lotrtcg.org/coreset/sauron/thegreateyel.png',
'20_360': 'http://lotrtcg.org/coreset/sauron/greateyel(r1).png',
'20_361': 'http://lotrtcg.org/coreset/sauron/grondwh.png',
'20_362': 'http://lotrtcg.org/coreset/sauron/mouthofsauronbgm.png',
'20_363': 'http://lotrtcg.org/coreset/sauron/ologhaimalice.png',

View File

@@ -24,17 +24,18 @@ import java.util.Collections;
import java.util.List;
/**
* 4
* 3
* •The Great Eye, Lidless
* Sauron Minion
* 8 4 6
* Minion
* 6 4 6
* Cunning.
* When you play this minion, spot another [Sauron] minion to add a threat for each companion over 4.
* Shadow: Exert The Great Eye twice to make the number of Free Peoples cultures you can spot -1 until the regroup phase.
* http://lotrtcg.org/coreset/sauron/greateyel(r1).png
*/
public class Card20_360 extends AbstractMinion {
public Card20_360() {
super(4, 8, 4, 6, null, Culture.SAURON, "The Great Eye", "Lidless", true);
super(3, 6, 4, 6, null, Culture.SAURON, "The Great Eye", "Lidless", true);
addKeyword(Keyword.CUNNING);
}