Rank: Advanced Member Groups: Registered
Posts: 162
Thanks: 15 times Was thanked: 225 time(s) in 58 post(s)
|
scottbreak;52283 wrote:Here is an old glyph json I wrote a month or so back; you can use this as a base if you want. You might have to adjust values and conditions to fit your build, but it's a start... UNG_941.json
{ "GameCardId":"UNG_941", "ConfigComment":"Primordial Glyph discover bonus config",
"OnDiscoverCardBonus": { "values": [ { "comment":"choose Frostbolt (CS2_024)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_024) > 0 ", "value":"5", } , { "comment":"choose Arcane Intellect (CS2_023)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_023) > 0 ", "value":"5", } , { "comment":"choose Counterspell (EX1_287)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=EX1_287) > 0 ", "value":"5", } , { "comment":"choose Mirror Entity (EX1_294)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=EX1_294) > 0 ", "value":"5", } , { "comment":"choose Spellbender (tt_010)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=tt_010) > 0 ", "value":"5", } , { "comment":"choose Fireball (CS2_029)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_029) > 0 ", "value":"5", } , { "comment":"choose Polymnorph (CS2_022)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_022) > 0 ", "value":"2", } , { "comment":"choose Cabalist's Tome (OG_090)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=OG_090) > 0 ", "value":"2", } , { "comment":"choose Blizzard (CS2_028)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_028) > 0 AND opp_minions(count(),) < 2", "value":"2", } , { "comment":"choose Meteor (UNG_955)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=UNG_955) > 0 AND opp_minions(count(),) < 2", "value":"2", } , { "comment":"choose Firelands Portal (KAR_076)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=KAR_076) > 0 ", "value":"5", } , { "comment":"choose Flamestrike (CS2_032)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_032) > 0 AND opp_minions(count(),) < 2", "value":"2", } , { "comment":"choose Pyroblast (EX1_279)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=EX1_279) > 0 ", "value":"2", } , ], }, }
Scott here is the file I made earlier today. I used the discovery file you made for stonehill defender as a start. I numbered them from 1 upwards. Does it select the highest number first or the lowest. The way you had stonehill defender file written it seemed highest to lowest. I notice in your file you have everything sent to value 2 or 5. I also made discovery files for big priest today as well for free from amber, eternal servitude, and shadow ember (spell that lets you discover a spell) These files will help make that deck a TON more efficient once I get them tweaked properly. I'll post them all when I'm done. I ran elemental mage at rank 5 today for a few hours. First impression was meh. Had about 40% win rate. I'll play with it more. UNG_941.json
{ "GameCardId":"UNG_941", "ConfigComment":"Primordial Glyph discover bonus config",
"OnDiscoverCardBonus": { "values": [ { "comment":"choose Meteor (UNG_955)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=UNG_955) > 0 ", "value":"11", } , { "comment":"choose Pyroblast (EX1_279)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=EX1_279) > 0 ", "value":"10", } , { "comment":"choose Flamestrike (CS2_032)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_032) > 0 ", "value":"9", } , { "comment":"choose Fireball (CS2_029)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_029) > 0 ", "value":"8", } , { "comment":"choose Firelands Portal (KAR_076)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=KAR_076) > 0 ", "value":"7", } , { "comment":"choose Cabalist's Tome (OG_090)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=OG_090) > 0 ", "value":"6", } , { "comment":"choose Blizzard (CS2_028)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_028) > 0 ", "value":"5", } , { "comment":"choose Polymorph (CS2_022)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_022) > 0 ", "value":"4", } , { "comment":"choose Ice Block (EX1_295)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=EX1_295) > 0 ", "value":"3", } , { "comment":"choose Frostbolt (CS2_024)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_024) > 0 ", "value":"2", } , { "comment":"choose Arcane Intellect (CS2_023)", "condition": "my_hero(count(),mage) > 0 AND my_discover(count(),cardid=CS2_023) > 0 ", "value":"1", } , ], }, }
|