"Goblin Patrol Troop"

This commit is contained in:
marcins78@gmail.com
2011-09-08 18:36:00 +00:00
parent 7fc10fd1a7
commit 5286748197

View File

@@ -0,0 +1,21 @@
package com.gempukku.lotro.cards.set1.moria;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
/**
* Set: The Fellowship of the Ring
* Side: Shadow
* Culture: Moria
* Twilight Cost: 6
* Type: Minion • Orc
* Strength: 13
* Vitality: 3
* Site: 4
*/
public class Card1_177 extends AbstractMinion {
public Card1_177() {
super(6, 13, 3, 4, Keyword.ORC, Culture.MORIA, "Goblin Patrol Troop");
}
}