Skittermander Generator

/** * * @param numberOfRandoms The number of desired random results. In this app, that would be the Number of Dice. * @param maximumValue The maximum value to limit results to.. in this app, that would be the Die Number. * @returns {Uint32Array} */ function rnd(numberOfRandoms, maximumValue) { // Dont bother. if (numberOfRandoms < 1) { return; } var randomValues = new Uint32Array(numberOfRandoms); window.crypto.getRandomValues(randomValues); //console.log(randomValues); //Due to browser issues with full support of TypeArray.prototypes, this is actually for the best. // for (var i = 0; i " + JSON.stringify(randoms)); var fnameResult = fnames[randoms[0]-1]; var lnameResult = lnames[randoms[1]-1]; var colorResult = colors[randoms[2]-1]; var quirkResult = quirks[randoms[3]-1]; document.getElementById("result").innerHTML = (fnameResult + " " + lnameResult + " is a " + colorResult + " skittermander, who " + quirkResult + ".") } function tweetIt () { var phrase = document.getElementById('result').innerText; var tweetUrl = 'https://twitter.com/share?text=' + encodeURIComponent(phrase) + ' %40CosmicCrit %23StarfinderRPG %23Paizo' + ' Make a skittermander:' + '&url=' + 'https://cosmiccrit.com/skittermander-generator/'; window.open(tweetUrl); }

Need more skittermanders in your Starfinder game? (I mean, who doesn’t?) Click the button to generate a skittermander.

Want to submit more ideas for skittermander names, colors, and quirks? Send them to cosmiccrit@gmail.com or tweet @CosmicCrit.