Has anyone ever gotten an inclusive list of valid eval terms?
I am working on a plugin where booster packs have drop rates per position in the package is
- card1 common
- card2 common
- card3 uncommon, rare
- card4 rare, ultra
Etc
I don't
need them to be in this order. But I am trying to work out a way that A has chances for the distribution I want and B offers small odds that cards might be foil.
I can probably work out the GREATERTHAN to do it. But I would really like to consider all my options.
Thank you for the help!
Using a Combination of CONTAINS and GREATERTHAN, I think I can get close by adding some extra columns, that should let me define which cards are available for selection:
Foil | Rarity | Num | Odds | Card |
0 | C | 1 | 54 | 1267 |
0 | U | 2 | 86 | 346 |
1 | U | 2 | 90 | 346 |
0 | R | 3 | 88 | 345 |
1 | R | 3 | 92 | 345 |
0 | Sr | 4 | 94 | 5 |
1 | Sr | 4 | 96 | 5 |
Odds GREATERTHAN #
Card CONTAINS #
I haven't tested this yet, but my guess is it might work.