Pokemon Prism 0.93 Patch Download

Posted byFloofy Dev2 months ago
Stickied post
Prism

Download Version 0.93 Build 0152 (CIA)(3DS) Mega (Debug) Mega (Standard) Download Patch File (v0.94 b0200) bsp Patch File Download Older Versions (MediaFire) v0.93 b0198 Debug v0.93 b0198 Standard v0.92 b0144 v0.91 b0144 Help Walkthrough Data Sheet (Item & Pokemon Locations, Tips, FAQ) Type Chart Detailed Changelogs Online Patcher Information. Oct 04, 2017  Download Pokemon Prism, GBC Rom Hack, Latest Version 0.94 Build 0229 Final Version for free, pre-patched and ready to play. Updated on 1st June, 2018. Download Version 0.93 Build 0152 (CIA)(3DS) Mega (Debug) Mega (Standard). Ok so i was searching through the files to patch pokemon prism to the current version and for some.

Well, it's officially been a whole year since our last release, I'm so pleased to announce that after 12 months of hard work, we have a new build for you ready to go! We've included a huge amount of fixes and enhancements, plus a whole new Naljo trainer theme.

Yes! Naljo is finally ridding itself of the run-of-the-mill Johto music in favour of a new, bespoke and kickass track composed by the amazingly talented ShinkoNetCavy! Check out the battle music on his channel!

As always, a big shoutout to our developers who have worked tirelessly over the past 12 months on improving the game. There are a whole bunch of code optimisations that aren't listed here, but will make future development a lot easier.

Pokemon Prism 0.94 Patch

Use our online patcher tool to patch your ROM and update your save files.

You must save your game in a Pokémon Center BEFORE you update. Always ensure you back up your game and save files before patching. One you patch, walk straight out of the Pokémon Center without talking to anyone and save again.

0.93Download

Version 0.94, build 0235 (1 June 2019)

Pokemon Prism Patch

  • Added GBS file generation for music players (and added it to the patch)

  • Fixed old patch bug breaking the bag data for builds before 0223

  • Fixed tearing in stats screen

  • Added new song for trainer battles in Naljo

  • Battles in Pokemon-only mode now show the proper coloring for the player's Pokemon when it is sent out if it is shiny

  • Illumise and Volbeat can now generate each other's eggs when breeding

Pokemon Prism Patch File

58 comments

Download Pokemon Prism

  1. ; NOTE: this is outdated! This was the version in use on 2016-12-25.
  2. define zero, 0
  3. define target, 250
  4. define address, 251
  5. define length, 253
  6. define result, 255
  7. define BANK_SIZE, 0x4000
  8. define ROM_SIZE, 0x200000
  9. call PrintInitialMessage
  10. call SelectTarget
  11. call ApplyPrismPatch
  12. length #length
  13. multiply #temp, #target, HASH_SIZE
  14. checksha1 #result, #temp
  15. print .completed
  16. .patching_error
  17. exit 1
  18. .completed
  19. .error
  20. string 'An error occurred while applying the patch. Please ensure that the base ROM and the patch are correct and try again.'
  21. PrintInitialMessage:
  22. add #address, VersionInfo, 2
  23. bufnumber #temp
  24. getbytedec #temp, #address
  25. decrement #address
  26. ; build number is big endian
  27. getbyte #result, #address
  28. add #1, #result, #temp
  29. call PrintWithLeadingZeros
  30. printbuf
  31. string '*** Pokémon Prism patch (version '
  32. string ', build '
  33. string ') ***'
  34. DetectBase:
  35. ifne #result, ROM_SIZE, .error
  36. set #source, 1
  37. jumpz #result, .done
  38. decrement #source
  39. jumpz #result, .done
  40. print .error_message
  41. .done
  42. return
  43. .crystal10_message
  44. .crystal11_message
  45. .error_message
  46. string 'Invalid base ROM. Please use a US version of Pokémon Crystal v1.0 or v1.1.'
  47. .crystal10
  48. .crystal11
  49. print .select_target
  50. retz #target
  51. print .confirm_debug_2
  52. retz #result
  53. string 'Select the ROM you want to build:'
  54. .target_menu
  55. dw .debug_target
  56. .release_target
  57. .debug_target
  58. string 'The debug version contains no additional game features, other than debug options intended to aid the development of the game.'
  59. string 'Are you sure you want to build the debug version?'
  60. .confirm_menu
  61. dw .no
  62. .yes
  63. .no
  64. set #address, CrystalPatch
  65. set #address, DebugPatch
  66. seek #zero
  67. return
  68. ApplyPrismPatch:
  69. set #address, PrismPatch
  70. .loop
  71. xordata #address, #length
  72. subtract #length, BANK_SIZE, #length
  73. decrement #banks
  74. truncatepos
  75. ; prints number #1 in #2 digits, with leading zeros
  76. push -0x30 ;so it will become 0 when 0x30 is added to it
  77. jump .handle_loop
  78. remainder #temp, #1, 10
  79. push #temp
  80. decrement #2
  81. .pop_loop
  82. add #temp, 0x30 ;0x30 is ASCII for '0'
  83. bufchar #temp
  84. DebugPatch: incbin 'debug.ips'