My gripe wasn't as much with yo-kai as with ff14 RNG in general.

I would have done the last 3 weapons if i was getting a paced medal input. I was not.

When i bring up RNG in ff14 people mostly tell me it fits the marked averages but only on multiple thousand pool statistics. When i try to craft one or two HQ thing and i get ridiculous luck, i am not going to try a thousand more times just to see if it meets the marked %. Also i regularly get streaks which are way off the marked averages.

I will do the world a favor and post my random function:

/* Random(23); will give you 0-23 with a fair chance to 0 and 23
FALSE
{0,0 0,1 0,2 0,3 0,4}=0
{0,5 ... 1,4}=1
{1,5 1,6 1,7 1,8 1,9 2,0}=2

TRUE
{0,0 0,1 0,2 0,3 0,4}=0
{0,5 ... 1,4}=1
{1,5 ... 2,4}=2
{2,5 2,6 2,7 2,8 2,9 3,0}=0 */

function Random(limit){
value = Math.round(Math.random() * (limit + 1));
if(value == (limit + 1))
value = 0;
return value;
}