misused;54776 wrote:Secret Mage looks to have a lot of misplays regarding Kirin Tor Mage/Kabal Lackey + Secrets. It will often just play the secret instead of both cards.
@Ljac, I'm pretty sure you can fix the bot misplay of not playing (Kirin Tor Mage/Kabal Lackey) before the secret as well as playing more than one (Kirin Tor Mage/Kabal Lackey) in sequence and THEN playing only 1 secret for 0 mana if you make a custom config.
Since you seem to be an expert, could you add a config file for each secret (based on play priority)
1. Explosive Runes (LOOT_101)
2. Counterspell (EX1_287)
3. Ice Block (EX1_295)
I'm not sure how to set the config file, but I think it would look like this. I'll test it out on a misplay-turn when I get home and let you know if it fixed the misplay:
Quote:{
"GameCardId":"LOOT_101",
"ConfigComment":"Explosive Runes : Secret: After your opponent plays a minion, deal 6 damage to it and any excess to their hero.",
"InHandPlayPriority":
{
"values":
[
{
"comment":"if you played a kabal lackey/kirin tor mage, play a secret immediately after!",
"condition": "my_played(count(), cardid=CFM_066) = 1 OR my_played(count(), cardid=EX1_612) = 1",
"value":"20",
}
],
},
"BeforePlayCardBonus":
{
"values":
[
{
"comment":"if a secret costs 0, play it!!",
"condition": "my_hand(count(), secret) > 0 AND my_hand(max(cost), secret) = 0",
"value":"20",
}
],
},
}