I want the bot to use Divine Favor (EX1_349) if it will draw at least one card, and have nothing else to play and has the 3 mana left, or even more mana since there's nothing to play
For example, I have only Divine Favor on my hand at turn 5, my opp has 1 card.
With the actual config I'm using:
Quote:
{
"comment":"Draw < 2",
"condition": "(opp_hand(count()) - my_hand(count())) < 2",
"value":"-15",
},
{
"comment":"Draw > 2",
"condition": "(opp_hand(count()) - my_hand(count())) > 2",
"value":"5 * opp_hand(count()) - my_hand(count())",
},
the bot won't play Divine Favor because it loses 20 value, but in this situation I want it to use it anyway.
Thanks in advance