- Laravel
- Larachat
- pokeapi
- veekun/pokedex
- Pokestadium
- Stackoverflow
- Amaretti
- dragonflycave - will come
- bulbagarden - will come
- OpenWeatherMap - will come
- HP
= floor((2 * base) * curLevel / 100 + curLevel + 10)
- ATK
= floor((2 * base) * curLevel / 100 + 5)
- DEF
= floor((2 * base) * curLevel / 100 + 5)
- SPD
= floor((2 * base) * curLevel / 100 + 5)
- Damage
= floor((2 * curLevel + 10) * (ownATK / enemyDEF) + 2) * (Power / 100)
- received EXP
= max(floor(((curLevel / 2) + 5 + (enemyLevel - curLevel), 0)
- Rank
= floor((curEXP + permEXP) * min(max(((kills /deaths), 0.8), 1.2))
- A died Pokemon looses all it's experience.
- Every 10 kills the permanent Trainer-Experience increases by 1.