Rank: Newbie
Groups: Registered
Posts: 6
Thanks: 3 times Was thanked: 1 time(s) in 1 post(s)
|
Man, great work, but i have to say that PERSONALLY i don't like Glyph and Aluneth settings. Aluneth is always equipped if you have less than 6 cards and your opponent is not rogue (?? maybe for tempo, i guess) Glyph always rejects AOE effects, not a great choice in some matchups! EDIT: I tried to help on the Glyph discovery, waiting for feedbacks (would be really appreciated) Code:
{
"GameCardId":"UNG_941",
"ConfigComment":"Primordial Glyph settings.",
"OnDiscoverCardBonus":
{
"values":
[
{
"comment":"Spells you never want to take are: Blizzard (CS2_028), Shifting Scroll (LOOT_104), Forbidden Flame (OG_086), Breath of Sindragosa (ICC_836), Cone of Cold (EX1_275), Deck of Wonders (LOOT_106), Flamestrike (CS2_032), Freezing Potion (CFM_021), Frost Nova (CS2_026), Frozen Clone (ICC_082), Glacial Mysteries (ICC_086), Arcane Missiles (EX1_277), Greater Arcane Missiles (CFM_623), Lesser Ruby Spellstone (LOOT_103), Mirror Image (CS2_027), Molten Reflection (UNG_948), Potion of Polymorph (CFM_620), Shatter (OG_081), Simulacrum (ICC_823), Vaporize (EX1_594), Volcanic Potion (CFM_065).",
"condition": "my_discover(count(), cardid = CS2_028 | LOOT_104 | OG_086 | ICC_836 | EX1_275 | LOOT_106 | CS2_032 | CFM_021 | CS2_026 | ICC_082 | ICC_086 | EX1_277 | CFM_623 | LOOT_103 | CS2_027 | UNG_948 | CFM_620 | OG_081 | ICC_823 | EX1_594 | CFM_065) > 0",
"value":"-1000",
},
{
"comment":"The spells you want are Explosive Runes (LOOT_101), Fireball (CS2_029), Firelands Portal (KAR_076), Frostbolt (CS2_024) and Pyroblast (EX1_279).",
"condition": "my_discover(count(), cardid = LOOT_101 | CS2_029 | KAR_076 | CS2_024 | EX1_279) > 0",
"value":"25",
},
{
"comment":"Spells you want to take are if opponent has 3+ minions with 2- HP: Volcanic Potion (CFM_065).",
"condition": "my_discover(count(), cardid = CFM_065) > 0 AND opp_minions(count())>= 3 AND opp_minions(max(health))<= 2" ,
"value":"15",
},
{
"comment":"Spells you want to take are if opponent has 4+ minions with 4- or less HP: Flamestrike (CS2_032).",
"condition": "my_discover(count(), cardid = CS2_032) > 0 AND opp_minions(count())>= 4 AND opp_minions(max(health))<= 4" ,
"value":"10",
},
{
"comment":"If your opponent has board but he has 15- hp: Blizzard (CS2_028).",
"condition": "my_discover(count(), cardid = CS2_028) > 0 AND opp_minions(count())>= 3 AND opp_hero(max(health)) <= 15" ,
"value":"5",
},
{
"comment":"If your opponent has no board: Greater Arcane Missiles (CFM_623).",
"condition": "my_discover(count(), cardid = CFM_623) > 0 AND opp_minions(count())==0" ,
"value":"12",
},
],
},
}
|