Difference between revisions of "Difficulty"
Jump to navigation
Jump to search
(Created page with "Since version 0.20, Nilllzz added the option to increase the difficulty of the game. ==Effect== This option can change the difficulty from "0" (Normal), to "1" (Hard) or "2"...") |
|||
| Line 8: | Line 8: | ||
==Formula== | ==Formula== | ||
| | {| class="wikitable" | ||
|- | |- | ||
! Difficulty | ! Difficulty | ||
| Line 28: | Line 28: | ||
Say you are fighting a pokemon that is on normal lvl 15. | Say you are fighting a pokemon that is on normal lvl 15. | ||
On difficulty level 1 this would be 15 + (15 / 10) rounded up | On difficulty level 1 this would be 15 + (15 / 10) rounded up | ||
<nowiki> | |||
15 / 10 = 1.5 but it rounds up (Ceiling) so it is 2 | 15 / 10 = 1.5 but it rounds up (Ceiling) so it is 2 | ||
15 + 2 = 17 | 15 + 2 = 17 </nowiki> | ||
On difficulty level 2 this would be 15 + (15 / 5) rounded up | On difficulty level 2 this would be 15 + (15 / 5) rounded up | ||
<nowiki> | |||
15 / 5 = 3 | 15 / 5 = 3 | ||
15 + 3 = 18 | 15 + 3 = 18 | ||
</nowiki> | |||
Difficulty | Resume: | ||
==Formula== | |||
0 | {| class="wikitable" | ||
|- | |||
1 | ! Difficulty | ||
! Final Level | |||
2 | |- | ||
|0 | |||
|15 | |||
|- | |||
|1 | |||
|17 | |||
|- | |||
|2 | |||
|18 | |||
|} | |||
Revision as of 22:57, 10 January 2013
Since version 0.20, Nilllzz added the option to increase the difficulty of the game.
Effect
This option can change the difficulty from "0" (Normal), to "1" (Hard) or "2" (Very Hard).
The unique diference between theese difficulties are the levels of the Wild Pokémon and the Pokémon from the Trainers.
Formula
| Difficulty | Formula |
|---|---|
| 0 | Level = Level |
| 1 | Level + (int(Ceiling(Level / 10)) = Level |
| 2 | Level + (int(Ceiling(Level / 5)) = Level |
"Int"(erger) tells to the computer to round the number inside the brackets and "ceiling" tells it to round up the number inside the brackets.
Example
Say you are fighting a pokemon that is on normal lvl 15.
On difficulty level 1 this would be 15 + (15 / 10) rounded up
15 / 10 = 1.5 but it rounds up (Ceiling) so it is 2 15 + 2 = 17
On difficulty level 2 this would be 15 + (15 / 5) rounded up
15 / 5 = 3 15 + 3 = 18
Resume:
Formula
| Difficulty | Final Level |
|---|---|
| 0 | 15 |
| 1 | 17 |
| 2 | 18 |