Coders: I am trying to add to the doomguard .json to not play when bloodreaver guldan is in hand. Will the file I wrote below (I only made bottom half) work?
I also don't want it to miss lethal. For instance, enemy is at 3 health, I have doomguard and bloodreaver in hand, and it doesn't play doomguard because of my text. Thoughts?
{
"GameCardId":"EX1_310",
"ConfigComment":"Doomguard config",
"BeforeUseHeroPowerBonus":
{
"values":
[
{
"condition": "my_hand(count())<2",
"value":"-1000",
}
],
},
"BeforePlayCardBonus":
{
"values":
[
{
"comment":"don't play this card if DK is in your hand",
"condition": "my_hand(count(ICC_831)) == 1",
"value":"-10",
},
],
},
}