Fixed missing alternate cards

This commit is contained in:
marcin.sciesinski
2019-09-17 14:29:07 -07:00
parent 8855ea2eb9
commit d217598a23
3 changed files with 7 additions and 4 deletions

View File

@@ -391,7 +391,7 @@
"cost": [
{
"type": "exert",
"filter": "choose(name(Saruman))"
"filter": "self"
},
{
"type": "discardStackedCards",
@@ -405,7 +405,7 @@
"text": "Would you like to add 1 threat to prevent Saruman from wounding a character in its skirmish?",
"effect": {
"type": "wound",
"filter": "choose(companion,inSkirmishAgainst(name(Saruman)))"
"filter": "choose(companion,inSkirmishAgainst(self))"
},
"cost": {
"type": "addThreats",

View File

@@ -135,7 +135,10 @@
"strength": 3,
"vitality": 4,
"resistance": 7,
"keyword": "ring-bound",
"keyword": [
"ring-bound",
"can start with ring"
],
"effects": [
{
"type": "extraCost",

View File

@@ -209,7 +209,7 @@ public class LotroCardBlueprintLibrary {
private LotroCardBlueprint getBlueprint(String blueprintId) throws CardNotFoundException {
if (_blueprintMapping.containsKey(blueprintId))
return getBlueprint(_blueprintMapping.get(blueprintId));
return getLotroCardBlueprint(_blueprintMapping.get(blueprintId));
String[] blueprintParts = blueprintId.split("_");