Cloud of Junk
I'll jump in on this, it's fun enough.
If you want a quick way to get the right words for your your wordcloud, you can open up your game page and paste the following into Chrome/Firefox's debug console:
js
wordlist = ""; document.querySelectorAll(".-comment .markup").forEach(mark => { wordlist += mark.textContent.toLowerCase() + " "; } ); console.log(wordlist)
That'll get all the words just from the comments (ignoring the usernames and timestamps) and lowercase them all too. Make sure you read the code yourself first though, as it's never safe to just run random code from the internet.
Also, big fan of the JUST LOVE SOMEONE splayed across the top.
