()
| 134 | |
| 135 | // willDie() |
| 136 | public willDie(): void{ |
| 137 | // Candies |
| 138 | this.getQuest().getGame().getQuestLog().addMessage(new QuestLogMessage(this.getDeathMessage() + " (and found " + Algo.pluralFormat(this.getQuest().foundCandies(1000), " candy", " candies") + ")", this.getQuest().getCandiesFoundMessage())); |
| 139 | // The monkey wizard staff |
| 140 | this.getQuest().foundGridOrEqItem(new QuestItemFound(this.getQuest(), "eqItemWeaponMonkeyWizardStaff", "You found a staff.", "You gain the monkey wizard staff.")); |
| 141 | } |
| 142 | |
| 143 | // Private methods |
| 144 | private castSpell(stored: boolean): void{ |
nothing calls this directly
no test coverage detected