All Projects → JimB16 → Pokeplat

JimB16 / Pokeplat

Disassembly of Pokemon Platinum

Programming Languages

assembly
5116 projects

PokePlat

This project is disassembling the code and data of Pokemon Platinum.

The baserom that is disassembled and that is needed to compile a playable rom is the following:

  • 4997 - Pokemon - Platinum Version (USA) (Rev 1)
    • md5: ab828b0d13f09469a71460a34d0de51b
    • sha1: 0862ec35b24de5c7e2dcb88c9eea0873110d755c

Code of the other Revision is part of the repo, but not part of the compiling process right now.

To work with this repository you need DevKitARM, Python and the baserom. Instructions to set up the repository are described in INSTALL.md.

Following things work:

  • Extract the different parts and files of the rom
  • Build a playable rom out of the extracted/compiled files
  • disassembled all code, rest of incbins at the end of the overlays is data. The code can be compiled and, if you're careful, be modified 2 instructions "add/sub rn, rn, 0/1" can be decoded in 2 different ways, and gas and the nintendo compiler don't use the same, so I had to use ".hword" for them
  • data files (list below) can be modified and compiled (scripts, text, trainer-, item-, encounter-, move-, pokemon-, battletower-, event-data)
  • pokemon-pics can be modified (except the pics for the alternate forms, because they have a strange order and that makes working with the palettes more complicated)

Overview of the source-files:

Overview of the data-files:

  • Compilable game-scripts
  • Compilable trainer-data
  • Compilable item-data
  • Compilable encounter-data
  • Changeable text
    • [data/msgdata/] (data/msgdata/)
  • Compilable event-data (overworld sprites (signs, npcs, trainers), furnitures and warps)
    • [data/fielddata/eventdata/zone_event/] (data/fielddata/eventdata/zone_event/)
  • Compilable move-data
    • [data/poketool/waza/waza_tbl/] (data/poketool/waza/waza_tbl/)
    • [data/poketool/waza/pl_waza_tbl/] (data/poketool/waza/pl_waza_tbl/)
  • Pokemon sprites (front- and back-pics)
    • [data/poketool/pokegra/pl_pokegra/] (data/poketool/pokegra/pl_pokegra/)
    • [data/poketool/pokegra/pokegra/] (data/poketool/pokegra/pokegra/)
  • Compilable Pokemon-data
    • [data/poketool/personal/evo/] (data/poketool/personal/evo/)
    • [data/poketool/personal/growtbl/] (data/poketool/personal/growtbl/)
    • [data/poketool/personal/personal/] (data/poketool/personal/personal/)
    • [data/poketool/personal/pl_growtbl/] (data/poketool/personal/pl_growtbl/)
    • [data/poketool/personal/pl_personal/] (data/poketool/personal/pl_personal/)
    • [data/poketool/personal/wotbl/] (data/poketool/personal/wotbl/)
  • Compilable BattleTower-data
    • [data/battle/b_pl_stage/pl_bsdpm/] (data/battle/b_pl_stage/pl_bsdpm/)
    • [data/battle/b_pl_tower/pl_btdpm/] (data/battle/b_pl_tower/pl_btdpm/)
    • [data/battle/b_pl_tower/pl_btdtr/] (data/battle/b_pl_tower/pl_btdtr/)
    • [data/battle/b_tower/pl_btdpm/] (data/battle/b_tower/pl_btdpm/)
    • [data/battle/b_tower/pl_btdtr/] (data/battle/b_tower/pl_btdtr/)

Credits

The interpretation- and converting-scripts of all data-files (graphics, text, scripts, ...) are mainly reimplementations of the following editors:

Chat about this and other Pokemon disassemblies:

  • irc: irc.freenode.net #pret
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].