* Fixed NIDORANFemaleSymbol's natural moves
Fixes#221
* Fixed cycling going through walls
Flying through the air at hundreds of miles an hour, with an altitude
of 37,005 feet, it is finally fixed.
Borders needed to be accounted for more accurately. Lower speeds were
fine because the player would still be found as within the region after
overlapping, but higher speeds let the player just blow past the guards.
Fixes#178
* Fix for accessible mountaintop below Route 22
Also added a negative tolBottom to the MountainTop Solid so it doesn't
get all weird walking below it.
Fixes#220
* Stopped bagActivate methods while player is walking
* Standardized default AudioPlayr volume to 1
When localStorage is cleared on a New Game, it makes sense to keep the
volume the same as the constructor's default of 1.
Fixes#219
* Fixed overlap detection for collision detectors
Fixes#202
* Added walking forward step back to surfing
It was missing as a result of the new bordering checks.
* Prevented cycling while surfing
* Fixed error thrown in openPokedexListing
Fixes#203
* Moved statistics.js to items.ts
It was storing settings.statistics (old behavior) instead of
settings.items. Changing to TS required fixing the IItemsHoldrCustoms
interface to be more optional.
* Stopped ItemsHoldr from resetting default values
Fixes#206.
* Fixed improperly named function in math.ts
* Fixed undefined size for level up stats menu
Fixes#207
* Fixed crashes from opponent switching Pokemon
Fixes#212.
* Fixed too-tall dirt between Viridian and Route 22
Fixes#211.
* Fixed buildings having too wide bricks
Fixes#213
* Renamed statistics to items in tests.html
* Added MenuGraphr::deleteAllMenus
Used it to fix#210
* Widened the battle title menu
Fixes#209
* Fixed error thrown in openPokedexListing
Fixes#203
* Moved statistics.js to items.ts
It was storing settings.statistics (old behavior) instead of
settings.items. Changing to TS required fixing the IItemsHoldrCustoms
interface to be more optional.
* Stopped ItemsHoldr from resetting default values
Fixes#206.
* Fixed improperly named function in math.ts
Everything except IFullScreenPokemon. This is something like 1.6 lines
added of documentation, what a night.
Added an IListMenuBase interface to MenuGraphr so that FSP's IListMenu
can inherit the same grid members but not have a conflicting position
property.