"Uruk-hai Raiding Party"

This commit is contained in:
marcins78@gmail.com
2011-08-31 12:50:41 +00:00
parent f9b52f7190
commit 26646db37f

View File

@@ -0,0 +1,24 @@
package com.gempukku.lotro.cards.set1.isengard;
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: Isengard
* Twilight Cost: 4
* Type: Minion • Uruk-Hai
* Strength: 9
* Vitality: 3
* Site: 5
* Game Text: Damage +1.
*/
public class Card1_158 extends AbstractMinion {
public Card1_158() {
super(4, 9, 3, 5, Culture.ISENGARD, "Uruk-hai Raiding Party", "1_158");
addKeyword(Keyword.URUK_HAI);
addKeyword(Keyword.DAMAGE);
}
}