Fixed missing alternate cards
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -135,7 +135,10 @@
|
||||
"strength": 3,
|
||||
"vitality": 4,
|
||||
"resistance": 7,
|
||||
"keyword": "ring-bound",
|
||||
"keyword": [
|
||||
"ring-bound",
|
||||
"can start with ring"
|
||||
],
|
||||
"effects": [
|
||||
{
|
||||
"type": "extraCost",
|
||||
|
||||
@@ -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("_");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user