I was given what was required for the project but was given absolutely no idea how to do it.
Crab - you should create randomWalk and smellFlower methods...the Crab will walk "randomly" like the textbook discusses and will slow down whenever it comes in contact with a Flower (Hint...that is when the Crab can see the Flower)
LadyBug - you should create a Fade method...the LadyBug will "fade" or lose some of its transparency each time a Crab crosses over it (Hint...that is, when the LadyBug can see a Crab)
Frog - you should create a Jump method...the Frog will jump a certain distance (of your own choosing ) when a Crab crosses near it (Hint...that is, when the Frog can see a Crab... change the Frog's Y value...ie the distance from the top of the world)
Flower - you should create a Blink method...the Flower will blink on and off continuously (Hint...save the Flower's current transparency in a variable, set the transparency to zero, and then set the transparency back to the value you have saved in the variable...you must also call Greenfoot's delay() method after setting/re-setting the transparency). In a week or two we will give you more help with the Flower's blinking, but we would like you to try this challenge first by yourself.

