swsh-overworld-rng-gui
swsh-overworld-rng-gui copied to clipboard
I documented the various spawn rate modifying conditions in SWSH, such as type-pulling abilities, Pokédex recommendations, and KO to respawn a Pokémon. I noted the method used by the game...
Menu Close: ```python npc_count = ... for _ in range(npc_count): rand(91) if not direction_held: # assuming direction held seems to make things a lot easier if ...: # (weather related,...
I noticed that Spritzee has a symbol encounter in the Glimwood Tangle, but I'm not sure it actually exists.
`encounterData.json`から元のマップごとのテーブルを復元している最中に、いくつかのテーブルが完全に復元されないことに気が付きました。たとえばRoute 2 (High Level), Fishingのデータは、Slot 50-89のカムカメ、90-98のコイキング、99-99のヒンバスしかなく、0-49のコイキングのデータが失われています。 データを変換する際に、1つのテーブルに同じポケモンが複数回現れることを考慮していなかったために上書きしてしまったのではないかと思います。 While restoring the original per-map tables from `encounterData.json`, I noticed that some tables were not fully restored. For example, Route 2 (High Level)...