This site requires JavaScript, please enable it in your browser!
Greenfoot back

Results

Search

Scenarios

Adventures of Crabby

Upscaled Modern-Crab

… of the tutorial scenario, modern-crab. I call it 'Adventures of …

Respect My Crab 2: Dirty Crabby

The follow up to Respect My Crab!, Respect My Crab 2 is an even faster paced frenzy to eat the loud Worms and outrace the brash Lobsters.

… up to Respect My Crab!, Respect My Crab 2 chronicles the attempt … brash Lobsters as a hungry Crab, who lives on the corupt …

little-crab

1 crab, 3 lobsters, 10 random generated worms. Crab eats worms. Lobsters eat crabs

1 crab, 3 lobsters, 10 random generated worms. Crab eats worms. Lobsters eat crabs

Modified Little Crab

A modified version of the Little Crab book scenario

Find out who will win, the crabs or the lobster. The lobster wins if it eats all the crabs first. The crabs win if they eat all the worms first.

Speical Needs Crabs

Crab must eat 8 worms before being eaten by a Lobster

You play as a Crab and you must eat 8 crabs to win the game. If you are eaten by a Lobster, you lose. Press the left key to turn up, press the right key to turn downward.

The Little Crabs!

Crab—French Fry Eating Challenge

In this game, your task is to try and eat 20 french fries without getting eaten by the lobsters. You control both crabs with the arrow keys, and you are still in the game if only one crab remains. Good luck! Music creds: "Panini" by Lil Nas X

Crab game

Lobbster vs crab

You control a lobbster to eat mini crabs while bigger crabs are trying to eat you

Super Crab v0.88

Seriously Improved Little Crab

… 've been using the little-crab scenario for teaching Greenfoot, and … using a and d for crab -Crab eats worms and adds to … a certain range of the crab -Made Worms have a lifespan …

Super Crab

Seriously Improved Little Crab

… 've been using the little-crab scenario for teaching Greenfoot, and … using a and d for crab -Crab eats worms and adds to … within a given range of crab -Worms now hafe a lifespan …

crabs and people

Connor Sims, two controlled actors (Crab and RandomPerson)

Crab wins if it eats 3 worms, RandomPerson wins if they eat 6 things (they can eat everything else), the crab moves twice as fast (two move commands in the act method) Crab uses wasd to move, RandomPerson uses arrowkeys

Respect My Crab!

A fast paced frenzy to eat the loud Worms and outrace the brash Lobsters as a hungry Crab

… brash Lobsters as a hungry Crab, who lives on the beach … happy. ~~PLEASE PLAY RESPECT MY CRAB 2: DIRTY CRABBY AS WELL …

Crab - Koala Team Up 4 Life

Crabs and Koalas Unite

… Controls "a" = left "d" = right Crab Controls "left arrow key" = left … " = right To win have the crab eat 15 worms. The lobsters … will attack the crab. Thats why his bro, the …

play crab finished

eats worms and crabs

the crab walk sideways and go after the worms to comercelos and going behind the lobster crab for crab comercer

crabWorld-kgilbertson

worms make crab and lizard bigger

when a crab and lizard eat a worm they get bigger. But they both must watch out for the lobsters Crab Movements- A for left D for right W for move Lizard Movements- Left Arrow for Left Right Arrow for Right W for move

Little Crab

Crab Game

The Crab will eat the Worms, but watch out. The Lobsters eat the Crabs

little-crab

Crab

your a crab, there is a lobster. the lobster likes crabs, you like worms. eat the worms before the lobster eats you.

Teleporting Crabs

Example of Little Crab Project

Move the crab with the arrow keys. If you move over one of the two teleporters it will teleport the crab to a different location. If a lobster hits a bomb there is an explosion and the lobster is removed from the world.

Little Crabs

Crabs!

Play as a crab, eat worms and don't get eaten by lobster.

crabs, snakes and lobsters

crab eating game

arrows for crabs WASD for snake

Hungry Crab

Crabster is hungry!

Eat as many worms as possible, as fast as you can. Eat all 25 worms to win! Avoid getting eaten by lobsters. Crabster moves on its own - use arrow keys (Left/Right) to turn left and right. Up to slow down, Down to stop. Press and hold 2 keys and you …

Discussion

how do i make an actor class into an arraylist. by 5mark7

… void prepare() { /*Crab crab = new Crab(); addObject(crab, 357, 118); Crab crab2 = new Crab(); addObject(crab2 …

how do i make an actor class into an arraylist. by 5mark7

… void prepare() { /*Crab crab = new Crab(); addObject(crab, 357, 118); Crab crab2 = new Crab(); addObject(crab2 …

Sending value from actor to world by winzorg

… } } } } /** * Allows user to move the crab using up, down, left, and … ); } } } /** * Switches images as the crab moves. */ public void switchImage() { if …

i need help! by khadeidradlinder

… } 3. Still in the little-crab-5 scenario, the following is … lookForCrab() { if ( canSee(Crab.class) ) { eat(Crab.class); Greenfoot.playSound("au …

Need help please by Saveseals2

… void populateWorld() { addObject(new Crab(), 300, 300); addObject(new Lobster … () { if ( canSee(Crab.class) ) { eat(Crab.class); Greenfoot.playSound("au … .stop(); getWorld().addObject( new Crab(), Greenfoot.getRandomNumber(560), Greenfoot.getRandomNumber …

Turn actor invisible from another actor by Lupical

… 'm working on a crab game for a school … The game consist of crab which walks where you … solution to stop the crab from going any further. … mouse clicks and stop the crab through isTouching(). But the … or how to stop the crab without another actor? [code] …

Another problem! Help! by twistedninja42

… .class).size(); Crab crab = new Crab(); addObject(crab,291,90); Crab crab2 = new Crab(); addObject(crab2 …

I need help creating a end game screen by Mutiplyyou

… addObject(worm14, 148, 205); Crab crab = new Crab(); addObject(crab, 106, 328); Lobsster lobsster … 36); Crab crab2 = new Crab(); addObject(crab2, 377, 507); Crab crab3 = new Crab(); addObject …

Trying to make the Shark chase the Crab & You Win Sign by SkyCodes99

crab = (Actor)getWorld().getObjects(Crab.class).get(0); turnTowards(Crab.getX(),Crab … = getOneObjectAtOffset(0, 0, Crab.class); if(worm != null … private int wormsEaten; public Crab() { wormsEaten = 10; …

Need Help by CosmicCaleb

… prepare() { Crab crab = new Crab(); addObject(crab,470,311); removeObject(crab); Crab crab2 = new Crab(); addObject(crab2 …

Chapter 2 - Little Crab (Differences between the book and the scenarios!!!) by Just_in

… { if ( isTouching(Crab.class) ) { removeTouching(Crab.class); Greenfoot.playSound("au … private void prepare() { Crab crab = new Crab(); addObject(crab, 231, 203); Worm worm …

How can i make a global integer by Gevater_Tod4711

… { Crab crab = null; public void addedToWorld(CrabWorld wrold) { crab = (Crab) CrabWorld.getObjects(Crab.class … private boolean crabInitialised = false; privat Crab crab; public void act() { if (! …

How to change the value of a "Level by oh123

… addObject(two, 550,15); Crab stanley=new Crab(); addObject (stanley, ((int)(Math … void lookForCrab() { if (canSee(Crab.class)) { eat(Crab.class); Greenfoot.playSound ("au …

Adding Music to the background by Peach

… , 393); Crab crab = new Crab(counter); addObject(crab, 346, 415); Crab crab2 = new Crab(counter); addObject … (crab2, 365, 186); Crab

making a method in my crab class, that permits setting of the number of worms in my world. by Miguel.Valdez

… = yDimension/2; // Add my crab populateCrab(crabXPosition, crabYPosition); // Add some … int xPosition, int yPosition) { Crab myCrab = new Crab(numWorms); addObject(myCrab, xPosition …

how do i make an actor class into an arraylist. by 5mark7

… [j].getObjectsInRange(10,Ants.class);//Crab.antcount=Crab.antcount+capTure.size(); for …

non static method cannot be referenced from a static context. by Joey1994

… en potensamen { imagePotenStrekken = new GreenfootImage("crab.png"); // Waarde voor Potenstrekken // Constructor … ") ) { setLocation(getX(), getY() + 5); } } /** * Als Crab een Worm aanraakt zegt hij …

Calling Methods from Different Classes by mrbones

… lookForWorm(); switchImage(); } public Crab() { image1 = new GreenfootImage("crab.png"); image2 = new … void populateWorld() { addObject(new Crab(), 300, 300); addObject(new Lobster …

Problem in compiling... by Rishav_Agarwal

… void prepare() { Crab crab = new Crab(); addObject(crab, 122, 259); Worm … 185, 139); Crab crab2 = new Crab(); addObject(crab2, 212 … .setLocation(202, 117); crab.setLocation(115, 360); …

generating between two number ex: 8 - 10 by Miguel.Valdez

… = yDimension/2; // Add my crab populateCrab(crabXPosition, crabYPosition); // Add … xPosition, int yPosition) { addObject(new Crab(), xPosition, yPosition); } /** * Place …

Comments

Bounce time by scarereeper

… , 302); Crab crab = new Crab(counter); addObject(crab, 102, 310); crab.setLocation(515, 153); crab.setLocation …

Bounce time by scarereeper

… = 0; private Counter counter; public Crab(Counter pointCounter) { counter = pointCounter; // … counter } /** * Act - do whatever the Crab wants to do. This method …

Adventures of Crabby by Sn3aKyGuY

A new version of this scenario was uploaded on Sun Sep 21 07:05:21 UTC 2014 Rock Lobster now eats Crabby and the Worms!! For every worm Crabby eats the player gets 10 points. For every worm Rock Lobster eats the player loses 5 points. And remember, Rock …

Adventures of Crabby by Sn3aKyGuY

A new version of this scenario was uploaded on Sun Sep 21 07:09:04 UTC 2014 Rock Lobster now eats Crabby and the Worms!! For every worm Crabby eats the player gets 10 points. For every worm Rock Lobster eats the player loses 5 points. And remember, Rock …

crab by Royalblue64

nice, but one recommendation is that you make the crab turn properly: when you hit the right arrow key the crab turns left, and when you hit the left arrow key, the crab goes right. nice job though!

little-crab-1.5 by avivdon

… player, everyone has advantages : The crab-speed advantage The lobsters-plural … down the speed of the crab (or whoever you want to … that will help to the crab and as well to the …

Battle of the Desert by luna_26

… losing decision Winning conditions The crab eats all the sandworms to … the game. Failure conditions. The crab is eaten by the lobster … Props. Cactus, crab eating cactus speed +1

Battle of the Desert by luna_26

… losing decision Winning conditions The crab eats all the sandworms to … the game. Failure conditions. The crab is eaten by the lobster … Props. Cactus, crab eating cactus speed +1

Battle of the Desert by luna_26

… losing decision Winning conditions The crab eats all the sandworms to … the game. Failure conditions. The crab is eaten by the lobster … Props. Cactus, crab eating cactus speed +1

Battle of the Desert by luna_26

… losing decision Winning conditions The crab eats all the sandworms to … the game. Failure conditions. The crab is eaten by the lobster … Props. Cactus, crab eating cactus speed +1

Battle of the Desert by luna_26

… losing decision Winning conditions The crab eats all the sandworms to … the game. Failure conditions. The crab is eaten by the lobster … Props. Cactus, crab eating cactus speed +1

Little Crab by vergol25

A new version of this scenario was uploaded on 2023-11-20 17:48:28 UTC In this game, the crabs eat the worms and the lobsters eat the crabs. The left side button moves the crabs, and the right side button moves the lobsters.

Little Crab by vergol25

A new version of this scenario was uploaded on 2023-11-20 17:49:22 UTC In this game, the crabs eat the worms and the lobsters eat the crabs. The left side button moves the crabs, and the right side button moves the lobsters.

Lobster by mjrb4

… .playSound(Greenfoot.java:141) at Crab.act(Crab.java:74) at greenfoot …

Zombi! by Abydoz

… a game similar to the crab game for the week's …

little-crab by minime

… lobster right next to the crab. So they can't actually … position random except for the crab. If they die right at …

GrowingCrab by indrawaspada

A new version of this scenario was uploaded on Mon Dec 12 00:29:32 UTC 2011 Crab should eat worms to grow up. After digest the 10th worm, Crab desire to eat the Lobster. Eat 5 Lobster to Win the game.

Crab by b321234

Do you SAVE the pink crab or EAT the pink crab lol (no offense), good job anyways ;)

Crab by b321234

Do you SAVE the pink crab or EAT the pink crab lol (no offense), good job anyways ;)

little-crab by imacat

… so cool! It moves the crab 150 steps forward. 蘑菇好酷!吃了蘑菇,螃蟹會瞬間往前走150步。 Maybe … we could directly put the crab randomly when it eats a …