()
| 276 | } |
| 277 | |
| 278 | public castPlayerHealthPotion(): void{ |
| 279 | this.getGame().getPlayer().heal((this.getGame().isEquipped("hat", "eqItemHatSorceressHat")? 200 : 100)); |
| 280 | this.getGame().getQuestLog().addMessage(new QuestLogMessage("You drink a health potion!")); |
| 281 | } |
| 282 | |
| 283 | public castPlayerJump(): void{ |
| 284 | // If we don't have the feather |
nothing calls this directly
no test coverage detected