I wanted to ask a question that wasn't addressed on your basic tutorial ,
we have 2 similar mulligan rules :
{
"comment": "hold Southsea Captain (NEW1_027) if you start second",
"mulligan":"NEW1_027",
"condition": "coin",
"value":"hold",
}
,
{
"comment": "hold Frothing Berserker(EX1_604) if you start second and you don't have Southsea Captain",
"mulligan":"EX1_604",
"condition": "coin AND my_hand(count(), cardid=NEW1_027) == 0",
"value":"hold",
}
can we unify them like this? :
{
"comment": "hold Southsea Captain (NEW1_027) if you start second otherwise keep frothing berserker if possible",
"mulligan":"NEW1_027|EX1_604",
"condition": "coin",
"value":"hold",
}