Fixing Their Eyes drawing 3 when the RB is exhausted instead of 1/2 separately

This commit is contained in:
Christian 'ketura' McCarty
2021-12-18 21:29:53 -06:00
parent 07ad6d9368
commit 56ddb93e37

View File

@@ -148,23 +148,23 @@
"filter": "ring bearer",
"amount": 1
},
"effect": {
"type": "conditional",
"condition": {
"type": "canSpot",
"filter": "exhausted,ring bearer"
},
"effect": [
{
"type": "drawCards",
"count": 2
"effect": [
{
"type": "drawCards",
"count": 1
},
{
"type": "conditional",
"condition": {
"type": "canSpot",
"filter": "exhausted,ring bearer"
},
"effect": {
"type": "drawCards",
"count": 1
}
{
"type": "drawCards",
"count": 1
}
]
}
}
]
}
]
},