Corrected twilight cost

This commit is contained in:
PhallenCassidy
2017-11-13 07:37:53 -05:00
committed by GitHub
parent 3ac9fbc9ce
commit fdc266a928

View File

@@ -17,14 +17,14 @@ import java.util.List;
* Set: The Short Rest
* Side: Shadow
* Culture: Troll
* Twilight Cost: 1
* Twilight Cost: 2
* Type: Possession • Hand Weapon
* Strength: +3
* Game Text: Bearer must be a Troll. Bearer is damage +1.
*/
public class Card31_068 extends AbstractAttachable {
public Card31_068() {
super(Side.SHADOW, CardType.POSSESSION, 1, Culture.GUNDABAD, PossessionClass.HAND_WEAPON, "Troll Knife");
super(Side.SHADOW, CardType.POSSESSION, 2, Culture.GUNDABAD, PossessionClass.HAND_WEAPON, "Troll Knife");
}
@Override
@@ -39,4 +39,4 @@ public class Card31_068 extends AbstractAttachable {
modifiers.add(new KeywordModifier(self, Filters.hasAttached(self), Keyword.DAMAGE));
return modifiers;
}
}
}