I've been unable to discover additional available criteria. Notably, there doesn't appear to be a functioning ISLESSTHAN, and I haven't even been able to get ISGREATERTHAN to work.
There are two main ways I know of to handle cases like this, where multiple card slots in the pack each have options. One would be to add a card data column named something like CardSlot. All your uncommons would list "3"; all your rares would list "3 4"; and all your ultras would list "4"; that way you could specify a crit like "CardSlot CONTAINS 3" and be guaranteed to get either an uncommon or a rare.
One limitation of this is that you can't alter the probabilities. If your set has, say, 80 uncommons and 20 rares, you'll always have an 80% chance of getting an uncommon for slot 3.
The other way to handle this is to use what Lackey calls Chances, each of which has a certain percentage of appearing, and includes whatever cards it should provide. The complicating factor is that Lackey only understands chances on the level of the entire pack, not for individual card slots. So in your case, the pack would have four total chances:
This way you could specify whatever probabilities you want for each of the for options (assuming you make them add up to 100%).
Calculating from the probabilities you want for each slot to the probabilities you ultimately need to specify at the top level can get onerous, especially if you've got multiple slots with multiple options. If you've ever tinkered with Python, you might find this tool I made useful:
https://lackeyccg.com/forum/index.php?topic=12713
I could probably stand to make an updated, improved version of that, now that I look at it...
There are two main ways I know of to handle cases like this, where multiple card slots in the pack each have options. One would be to add a card data column named something like CardSlot. All your uncommons would list "3"; all your rares would list "3 4"; and all your ultras would list "4"; that way you could specify a crit like "CardSlot CONTAINS 3" and be guaranteed to get either an uncommon or a rare.
One limitation of this is that you can't alter the probabilities. If your set has, say, 80 uncommons and 20 rares, you'll always have an 80% chance of getting an uncommon for slot 3.
The other way to handle this is to use what Lackey calls Chances, each of which has a certain percentage of appearing, and includes whatever cards it should provide. The complicating factor is that Lackey only understands chances on the level of the entire pack, not for individual card slots. So in your case, the pack would have four total chances:
- (2 commons and) 1 uncommon, 1 rare
- (2 commons and) 1 uncommon, 1 ultra
- (2 commons and) 2 rares
- (2 commons and) 1 rare, 1 ultra
This way you could specify whatever probabilities you want for each of the for options (assuming you make them add up to 100%).
Calculating from the probabilities you want for each slot to the probabilities you ultimately need to specify at the top level can get onerous, especially if you've got multiple slots with multiple options. If you've ever tinkered with Python, you might find this tool I made useful:
https://lackeyccg.com/forum/index.php?topic=12713
I could probably stand to make an updated, improved version of that, now that I look at it...