xxxxxxxxxx
34
var x = 1;
var y = 1;
var shroom;
var shroomX = 300;
var shroomY = 300;
var shroomSpeed = 5;
var berry;
var berryX = 25;
var berryY = 25;
function setup() {
createCanvas(400, 400);
shroom = loadImage("Shroomish.png");
berry = loadImage("Razz_Berry.png");
frameRate(8);
}
function draw() {
background(50, 205, 50);
image(shroom, shroomX, shroomY, 100, 100);
image(berry, berryX, berryY, 100, 100);
if (mouseIsPressed === true) {
var direction = int(random(2));
if (direction === 0) {
shroomX = shroomX - shroomSpeed;
} else if (direction === 1) {
shroomY = shroomY - shroomSpeed;
}
}
if(dist(shroomX,shroomY,berryX,berryY) < 70) {
berryX= -100;
berryY= -100;
}
}