"Goblin Bowman"

This commit is contained in:
marcins78@gmail.com
2011-09-28 21:54:53 +00:00
parent d32488eb85
commit 27cd9f0ce2

View File

@@ -0,0 +1,24 @@
package com.gempukku.lotro.cards.set2.moria;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Race;
/**
* Set: Mines of Moria
* Side: Shadow
* Culture: Moria
* Twilight Cost: 2
* Type: Minion • Orc
* Strength: 4
* Vitality: 1
* Site: 4
* Game Text: Archer.
*/
public class Card2_060 extends AbstractMinion {
public Card2_060() {
super(2, 4, 1, 4, Race.ORC, Culture.MORIA, "Goblin Bowman");
addKeyword(Keyword.ARCHER);
}
}