/pkmn3save

Pokémon Gen 3 Save Editor

Primary LanguagePython

Pokémon Gen 3 Save Editor Reader

Very unfinished but well planned (I think), slightly useful library for reading save data from

  • Pokémon Ruby
  • Pokémon Sapphire
  • Pokémon Leaf Green
  • Pokémon Fire Red
  • Pokémon Emerald

PRs welcome to add missing functionality.

Install

pip install git+https://github.com/pmdevita/pkmn3save

Usage

There are no docs but stuff is typed so your IDE should help you fumble through it.

from pkmn3save import SaveFile

data = SaveFile("emerald.sav")

print(data.game_save_a.trainer_info)

print(data.game_save_a.team_items.team)

Reference

Library built using the Bulbapedia article as a reference Thanks to the authors!