//Aaron Brody //Kirby - static charachter void setup(){ smooth(); size(500,500); background(170,200,255); //clouds noStroke(); fill(255); ellipse(75,75,110,70); ellipse(160,75,110,70); ellipse(400,175,60,50); ellipse(445,175,50,50); ellipse(355,175,50,50); ellipse(90,270,160,100); ellipse (425,450,30,20); ellipse(445,450,30,15); ellipse(400,450,30,15); //star fill(249,255,95); noStroke(); triangle(125,250,175,350,300,350); triangle(375,250,325,350,200,350); triangle(100,350,250,300,250,350); triangle(400,350,250,300,250,350); triangle(100,350,400,350,250,450); fill(170,200,255); triangle(100,350,250,450,210,400); triangle(400,350,250,450,290,400); //legs stroke(0); fill(165,27,107); ellipse(185,350,100,60); ellipse(315,350,100,60); //main body fill(255,200,200); stroke(0); ellipse(250,250,200,200); noStroke(); //eyes stroke(0); fill(13,28,183); strokeWeight(3); ellipse(225,220,25,60); fill(0); ellipse(225,220,23,30); fill(255); ellipse(225,205,17,25); stroke(0); fill(13,28,183); strokeWeight(3); ellipse(275,220,25,60); fill(0); ellipse(275,220,23,30); fill(255); ellipse(275,205,17,25); //cheeks noStroke(); fill(242,100,138); ellipse(190,265,30,15); ellipse(310,265,30,15); //text fill(0); text("kirby whoops pandas ass",20,20); //mouth fill(180,22,70); ellipse(250,280,30,40); fill(255,200,200); rect(230,260,40,20); }