Advertisement
Thundaga

Thundaga Shadow Pokemon Notes

Dec 18th, 2019
1,411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1. Tutorial 61 - Shadow Pokemon
  2. 1. Get the snag machine as key item and also set true
  3. $PokemonGlobal.snagMachine=true
  4.  
  5. you can also edit pokeballs to make them snag balls without needing the machine, Change the 4 at the end of the item definition to a 3
  6.  
  7. 2. add the shadow type and shadow moves
  8. also check out shadowmoves.txt for move assignments
  9. make all other types weak to shadow moves
  10.  
  11. update moves in txt, format is off, get rid of COOL lines
  12. Pokemon_ShadowPokemon defines bonus effects of moves at the bottom
  13.  
  14. if the shadow pokemon doesnt have 4 shadow moves, they'll start learning the moves they would have at their level in the empty slots as they get pure
  15.  
  16. 3. SHADOW POKEMON USE SPECIFIC _SHADOW SPRITES
  17. It would be smarter to just have a purple overlay applied when shadow is true but eh
  18. Use _Shadow sprites when adding new shadow mon, its not a new form
  19. Shadow pokemon cant be shiny, dont bother making a shadow shiny
  20. You do need to make shadow M and F sprites, such as Pikachu
  21.  
  22. 4. add in the perfume items, these are already defined in Pokemon_ShadowPokemon
  23. ADD ANOTHER COMMA AFTER NAME, format was wrong
  24. could add your own perfumes/scents if you want, just be sure to copy the script sections for out of battle and in battle
  25. They cant be used on non-shadow pokemon. Vivid scent is super good
  26.  
  27. 5. Give shadow pokemon to trainers
  28. shadow is the 16th field defined in a trainers pokemon, set as true
  29. Trainers will block balls thrown at shadow pokemon unless you have the snag machine
  30.  
  31. Show $Trainer.shadowcaught for array of caught Pokemon
  32. Ex: if $Trainer.shadowcaught[PBSpecies::ELECTABUZZ] for conditionals
  33.  
  34. 6. Purify chamber
  35. $PokemonGlobal.seenPurifyChamber=true
  36. download that music, throw it in BGM folder
  37.  
  38. line 1109 ---
  39. pbBGMPlay("PurificationChamber")
  40. line 1134 ---
  41. def pbEnd()
  42. pbBGMStop
  43. $game_map.autoplay
  44.  
  45. annoying bug where purify chamber selection has party graphic overlay at start
  46. PScreen_PokemonStorage - Line 1890
  47. @scene.pbStartBox(self,0) change that value from 2 to 0 so it starts on box organize
  48.  
  49. 7. Lugia
  50. lugia can only be purified if the chamber is at Max Tempo, Shadow Lugia sprites by ShadowGate31
  51. update scripts for on step to accomodate LUGIA - line 482
  52. update for daycare also line 491
  53. update items so they dont affect lugia - line 226 - 301
  54.  
  55.  
  56.  
  57. add the shadow type
  58. add shadow moves
  59. add shadow moves to our mon
  60. add shadow related items
  61. add shadow pokemon to trainers
  62. add snag the machine and snag balls to snag existing shadow pokemon
  63. the purification stone
  64. the purify chamber
  65. make our own shadow pokemon (add art)
  66. shadow events, make shadow and reduce heart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement