()
| 423 | } |
| 424 | |
| 425 | private update(): void{ |
| 426 | // Reset |
| 427 | this.renderArea.resetAllButSize(); |
| 428 | |
| 429 | // Draw the farm |
| 430 | this.renderArea.drawArray(Database.getAscii("places/lollipopFarm/lollipopFarm"), 0, 5); |
| 431 | |
| 432 | // Draw the field stuff |
| 433 | this.drawFieldStuff(1, 34); |
| 434 | |
| 435 | // Draw the mill stuff |
| 436 | this.drawMillStuff(7, 0); |
| 437 | |
| 438 | // Draw the pond stuff |
| 439 | this.drawPondStuff(50, 14); |
| 440 | } |
| 441 | |
| 442 | private updatePondConversionRate(): void{ |
| 443 | Saving.saveNumber("lollipopFarmPondConversionRate", Math.ceil(Saving.loadNumber("lollipopFarmPondHowManyLolligators") * 3 + Math.pow(1.3, Saving.loadNumber("lollipopFarmPondHowManyLolligators")))); |
no test coverage detected