Skip to content

Commit

Permalink
Added growers/respawn points for banana, grapes, pear, pomegrenate an…
Browse files Browse the repository at this point in the history
…d extended the fruit tile item
  • Loading branch information
Red Queen committed Nov 5, 2011
1 parent a243290 commit e8fc857
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Binary file added data/sprites/items/grower/grapes_grower.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,26 @@ private static PassiveEntityRespawnPoint createFruit(final int type) {
passiveEntityrespawnPoint
.setDescription("You see a watermelon vine.");
break;
case 4:
passiveEntityrespawnPoint = new PassiveEntityRespawnPoint("banana", 1000);
passiveEntityrespawnPoint
.setDescription("You see a place where a banana looks likely to fall.");
break;
case 5:
passiveEntityrespawnPoint = new VegetableGrower("grapes");
passiveEntityrespawnPoint
.setDescription("You see a grape vine.");
break;
case 6:
passiveEntityrespawnPoint = new PassiveEntityRespawnPoint("pear", 500);
passiveEntityrespawnPoint
.setDescription("You see a place where a pear looks likely to fall.");
break;
case 7:
passiveEntityrespawnPoint = new PassiveEntityRespawnPoint("pomegranate", 800);
passiveEntityrespawnPoint
.setDescription("You see a place where a pomegranate looks likely to fall.");
break;
default:
passiveEntityrespawnPoint = null;
break;
Expand Down
Binary file modified tiled/tileset/logic/item/fruits.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e8fc857

Please sign in to comment.