"Curse Their Foul Feet!" does not discard any cards if there is 0 Orcs in hand

This commit is contained in:
marcin.sciesinski
2020-03-27 10:30:25 -07:00
parent 7fa1dca601
commit 85a9eb9d28

View File

@@ -206,14 +206,26 @@
"memorize": "cardsInHand"
},
{
"type": "discardFromHand",
"hand": "shadowPlayer",
"player": "shadowPlayer",
"forced": true,
"count": {
"type": "forEachMatchingInMemory",
"memory": "cardsInHand",
"filter": "orc"
"type": "conditional",
"condition": {
"type": "isMore",
"firstNumber": {
"type": "forEachMatchingInMemory",
"memory": "cardsInHand",
"filter": "orc"
},
"secondNumber": 0
},
"effect": {
"type": "discardFromHand",
"hand": "shadowPlayer",
"player": "shadowPlayer",
"forced": true,
"count": {
"type": "forEachMatchingInMemory",
"memory": "cardsInHand",
"filter": "orc"
}
}
}
]