"Redhorn Pass"

This commit is contained in:
marcins78@gmail.com
2012-01-16 11:43:42 +00:00
parent a25b0d443b
commit 48f73ce353

View File

@@ -0,0 +1,19 @@
package com.gempukku.lotro.cards.set13.site;
import com.gempukku.lotro.cards.AbstractNewSite;
import com.gempukku.lotro.common.Keyword;
/**
* Set: Bloodlines
* Twilight Cost: 2
* Type: Site
* Game Text: Mountain. Culture tokens cannot be added, removed, or reinforced.
*/
public class Card13_194 extends AbstractNewSite {
public Card13_194() {
super("Redhorn Pass", 2, Direction.LEFT);
addKeyword(Keyword.MOUNTAIN);
}
// TODO - make this card work
}