()
| 106 | } |
| 107 | |
| 108 | private addMosquito(): boolean{ |
| 109 | return this.addEntity(new Mosquito(this, new Pos(0, this.groundYPosition-Random.between(3, 7)), this.groundYPosition)); |
| 110 | } |
| 111 | |
| 112 | private addTreeSpirit(xPosition: number = 294): boolean{ // By default the wolf will be added at the end of the forest |
| 113 | var treeSpirit: QuestEntity = new TreeSpirit(this, new Pos(xPosition, this.groundYPosition-4), this.groundYPosition); |
no test coverage detected