()
| 84 | |
| 85 | // willDie() |
| 86 | public willDie(): void{ |
| 87 | this.getQuest().getGame().getQuestLog().addMessage(new QuestLogMessage(this.getDeathMessage() + " (and found " + Algo.pluralFormat(this.getQuest().foundCandies(6000000), " candy", " candies") + ")", this.getQuest().getCandiesFoundMessage())); |
| 88 | this.getQuest().foundGridOrEqItem(new QuestItemFound(this.getQuest(), "gridItemPossessedY", "You found a strange stone.", "You gain a strange stone.")); |
| 89 | } |
| 90 | |
| 91 | // Public methods |
| 92 | public addMagicBall(finalPosition: Pos, damage: number, timeToLive: number, colorType: ColorType): void{ |
nothing calls this directly
no test coverage detected