"Easterling Detachment"

This commit is contained in:
marcins78
2013-01-24 13:35:57 +00:00
parent d103952e34
commit bf774f20be

View File

@@ -0,0 +1,22 @@
package com.gempukku.lotro.cards.set20.fallenRealms;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Race;
/**
* 6
* Easterling Detachment
* Fallen Realms Minion • Man
* 13 3 4
* Easterling. Fierce. Enduring.
*/
public class Card20_114 extends AbstractMinion {
public Card20_114() {
super(6, 13, 3, 4, Race.MAN, Culture.FALLEN_REALMS, "Easterling Detachment");
addKeyword(Keyword.EASTERLING);
addKeyword(Keyword.FIERCE);
addKeyword(Keyword.ENDURING);
}
}