(pos: Pos)
| 116 | } |
| 117 | |
| 118 | public addSmallestFish(pos: Pos): SmallestFish{ |
| 119 | var smallestFish: SmallestFish = new SmallestFish(this, pos); |
| 120 | smallestFish.setHealthBar(new QuestEntityHealthBar(smallestFish, new Pos(3, 1))); |
| 121 | if(this.addEntity(smallestFish)) // If we manage to add the entity |
| 122 | return smallestFish; // We return it |
| 123 | return null; // Else, we return null |
| 124 | } |
| 125 | |
| 126 | public castJump(){} // We can't jump in the sea ! |
| 127 |