()
| 196 | } |
| 197 | |
| 198 | private drawLose(): void{ |
| 199 | this.getRenderArea().drawArray(Database.getAscii("places/village/thirdHouseGames/SuperRPG/youLose"), 8, 1); |
| 200 | if(this.reward == 0) this.getRenderArea().drawString("At floor " + this.floor + ". And got no candies.", 8, 7); |
| 201 | else this.getRenderArea().drawString("At floor " + this.floor + ". And got " + this.reward + " candies.", 8, 7); |
| 202 | } |
| 203 | |
| 204 | private drawSplashScreen(): void{ |
| 205 | this.getRenderArea().drawArray(Database.getAscii("places/village/thirdHouseGames/SuperRPG/splashScreen"), -67 + this.splashScreenTimer*3, 2); |
no test coverage detected