xxxxxxxxxx
41
let adjectives = ["nutty", "crazy", "suspicious", "witty", "spiritual","lazy", "demented", "crusty, old", "fat", "charismatic", "sinister", "foolish", "jolly"];
let nouns = ["professor", "cat", "magician", "rat", "snowman", "panda", "frog", "toad and frog", "priest", "rabbi and priest", "thief", "scientist", "dr jekyll and mr hyde", "ogre and donkey", "wizard", "dinosaur", "elvis impersonator", "hobbit"];
let verbs = ["ran", "danced", "swam", "crawled", "hopped", "breakdanced", "floated", "flew", "frolicked", "slithered", "bounced"];
let settings = ["into the night", "under the rain", "over the hill", "amongst the stars", "into buckingham palace", "into the ocean", "into the snow", "under the moon", "through skid row", "into the police station and said ACAB", "through central park", "into the metaverse", "through the quantum realm", "through hogwarts", "into a bar", "into the outlook hotel"];
let helveticaFont;
function preload() {
helveticaFont = loadFont("Helvetica-Bold-Font.ttf");
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
for (let i = 0; i < 300; i++) {
fill(255);
noStroke();
circle(random (400), random (400), random(1, 5));
}
fill(255, 208, 0);
textFont(helveticaFont, 20); // (font name, font size)
text("the", 25, 124); // ('text', x, y)
text(random(adjectives), 25, 144);
text(random(nouns), 25, 164);
text(random(verbs), 25, 184);
text(random(settings),25, 204);
noLoop();
}
function mousePressed(){
draw();
}