Context: I’d like to have cards display one of multiple possibilities. For instance, blanking out two of the four kanji in a 四字熟語. It would not make sense to make cards for all 6 possibilities.
Request: In the previous example, it would be possible on my side to have each kanji in a separate field. I however need a way to do a rand() and use that result with some if logic.
Additional: The rand could either take an argument and return an int between 0 and that number, or the card creator could deal with that by using a modulo (which requires some arithmetic evaluation). In that later case, it could be nice to have full fledged arithmetic evaluations to allow for biased sampling, or simply making math problem cards.