String [] TYPE = new String[changeFrames];
PImage [] images = new PImage [numFrames];
player = minim.loadFile("07.mp3", 2048);
f = createFont("Arial", 20, true);
TYPE[0] = "Oh hello there...!";
TYPE[1] = "I don't believe we've met before.";
TYPE[2] = "Were you expecting a game of some sort?";
TYPE[3] = "Maybe you'll get one if you keep clicking!";
TYPE[4] = "Go on... click again!";
TYPE[5] = "Hmm hmm hmm *humming a song* ♪~ ";
TYPE[6] = "Ahahaha, are you still clicking?";
TYPE[7] = "Sorry, there's no real game here.";
TYPE[8] = "Oopsies! That wasn't a very appropriate face to show!";
TYPE[9] = "There's no actual game here.";
TYPE[10] = "Boo hoo, right? *animu girl tears*";
TYPE[11] = "I was suppose to be the main star of it, too!";
TYPE[12] = "Wait... What do you mean that wasn't part of the potential plan?";
TYPE[13] = "Boo, no wonder the original version didn't happen! It didn't have ME in it!";
TYPE[14] = "Well, maybe in the future that can all change.";
TYPE[15] = "And it can be all about me!";
TYPE[16] = "Don't you think I'd be the great for the role as the protagonist?";
TYPE[17] = "*TURNS ON MAX KAWAII-DESU*";
TYPE[18] = "Do I have to repeat it all over again?";
images[0] = loadImage("default.png");
images[1] = loadImage("default.png");
images[2] = loadImage("kawaii.png");
images[3] = loadImage("happy.png");
images[4] = loadImage("happy.png");
images[5] = loadImage("kawaii.png");
images[6] = loadImage("happy.png");
images[7] = loadImage("troll.png");
images[8] = loadImage("sad.png");
images[9] = loadImage("sad.png");
images[10] = loadImage("tear.png");
images[11] = loadImage("tear.png");
images[12] = loadImage("default.png");
images[13] = loadImage("angry.png");
images[14] = loadImage("default.png");
images[15] = loadImage("happy.png");
images[16] = loadImage("happy.png");
images[17] = loadImage("maxkawaii.png");
images[18] = loadImage("kawaii.png");
if (mousePressed == true)
if (start >=changeFrames)
image(images[frame], 50, 0);
if (mousePressed == false)
text(TYPE[start], 12, 650);
if (mousePressed == true)
if (start >=changeFrames)
image(images[frame], 50, 0);
if (mousePressed == false)
text(TYPE[start], 12, 650);