twilightsparkele;49979 wrote:for aggro paladin, is think it might be good to write a json that says not to play get away kodo and noble sacrifice at the same time? Also make a way to prioritize playing gentle megasaur when there are 2+ minions instead of spamming boards with more 2/1 + 1/1 murlocs? and with divine favor, if its the last card in your hand and your opponent has 1 or 2 cards, make the value higher? and with steward of darkshire, writing a combo for darkshire into the things th at summon two one drops is pretty good as well.
i can help write these but i'm wondering if they'll actually be good additions
I think these could be good additions; my only concern is that the Divine Favor json is that it might work negatively when the player has a large hand. I am having difficulty thinking about the best way to write is the Getaway Kodo/Noble Sacrifice; I think it might prevent the cards from ever being played if the other one has already been played, even if it has popped. I guess we just need to test it. The other ones are pretty straight forward; take a look at what I have come up with, and let me know what you think and your suggestions for changes.
Edit: I lowered the value of the combo. After doing some testing, it was over-valuing the Tidecallers.
combo.json
{
"GameCardId":"Combo",
"ConfigComment":"Aggro Paladin Combos",
"ComboList":
{
"values":
[
{
"comment":"Steward of Darkshire (OG_310) --> Bilefin Tidehunter (OG_156)",
"condition": "*",
"combo":"OG_310 >> OG_156",
"value":"5 >> 5",
}
,
{
"comment":"Steward of Darkshire (OG_310) --> Murloc Tidehunter (EX1_506)",
"condition": "*",
"combo":"OG_310 >> EX1_506",
"value":"5 >> 5",
}
],
},
}
CFM_800.json
{
"GameCardId":"CFM_800",
"ConfigComment":"Getaway Kodo config",
"BeforePlayCardBonus":
{
"values":
[
{
"comment":"Don't play if you have played Noble Sacrifice",
"condition": "my_secret(count()) > 0 AND my_played(count(), cardid=EX1_130) > 0",
"value":"-15",
}
,
],
},
}
EX1_130.json
{
"GameCardId":"EX1_130",
"ConfigComment":"Noble Sacrifice config",
"BeforePlayCardBonus":
{
"values":
[
{
"comment":"Don't play if you have played Getaway Kodo",
"condition": "my_secret(count()) > 0 AND my_played(count(), cardid=CFM_800) > 0",
"value":"-15",
}
,
],
},
}
EX1_349.json
{
"GameCardId":"EX1_349",
"ConfigComment":"Divine Favor config",
"BeforePlayCardBonus":
{
"values":
[
{
"comment":"Play as last card in your hand when opponent has small hand",
"condition": "my_hand(count()) == 1, opp_hand(count()) <= 2",
"value":"15",
}
,
],
},
}
UNG_089.json
{
"GameCardId":"UNG_089",
"ConfigComment":"Gentle Megasaur config",
"BeforePlayCardBonus":
{
"values":
[
{
"comment":"don't play this card with less than 2 murlocs on board",
"condition": "my_minions(count(), murloc=true) < 2",
"value":"-10",
}
,
],
},
}