Advertisement
ProClifo

Guy gives you Kanto Pokémon after buying dolls

Jun 26th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. #include stdpoke.rbh
  2. #freespace 0xFF
  3. #dynamic 0xF00000
  4.  
  5. #org @start
  6. checkflag 0x270
  7. if 0x0 call @lapras_check
  8. checkflag 0x271
  9. if 0x0 call @snorlax_check
  10. checkflag 0x272
  11. if 0x0 call @venusaur_check
  12. checkflag 0x273
  13. if 0x0 call @charizard_check
  14. checkflag 0x274
  15. if 0x0 call @blastoise_check
  16. checkflag 0x280
  17. if 0x0 goto @normal
  18. msgbox @cozy_msg MSG_FACE
  19. end
  20.  
  21. #org @normal
  22. msgbox 0x8260099 MSG_FACE
  23. end
  24.  
  25. #org @lapras_check
  26. checkflag 0x240
  27. if 0x1 goto @lapras
  28. return
  29.  
  30. #org @lapras
  31. setflag 0x270
  32. setvar 0x4001 PKMN_LAPRAS
  33. goto @givepokemon
  34.  
  35. #org @SNORLAX_check
  36. checkflag 0x241
  37. if 0x1 goto @SNORLAX
  38. return
  39.  
  40. #org @SNORLAX
  41. setflag 0x271
  42. setvar 0x4001 PKMN_SNORLAX
  43. goto @givepokemon
  44.  
  45. #org @VENUSAUR_check
  46. checkflag 0x242
  47. if 0x1 goto @VENUSAUR
  48. return
  49.  
  50. #org @VENUSAUR
  51. setflag 0x272
  52. setvar 0x4001 PKMN_VENUSAUR
  53. goto @givepokemon
  54.  
  55. #org @CHARIZARD_check
  56. checkflag 0x243
  57. if 0x1 goto @CHARIZARD
  58. return
  59.  
  60. #org @CHARIZARD
  61. setflag 0x273
  62. setvar 0x4001 PKMN_CHARIZARD
  63. goto @givepokemon
  64.  
  65. #org @BLASTOISE_check
  66. checkflag 0x244
  67. if 0x1 goto @BLASTOISE
  68. return
  69.  
  70. #org @BLASTOISE
  71. setflag 0x274
  72. setvar 0x4001 PKMN_BLASTOISE
  73. goto @givepokemon
  74.  
  75. #org @givepokemon
  76. lock
  77. faceplayer
  78. setflag 0x280
  79. bufferpokemon 0x0 0x4001
  80. msgbox @seen_msg MSG_KEEPOPEN
  81. givepokemon 0x4001 40 0x0 0x0 0x0 0x0
  82. goto 0x8F00465
  83.  
  84. #org @seen_msg
  85. = I saw that!\nYou bought a [buffer1] DOLL!\pTo invest so much for a DOLL like\nthat[.]\pYou must have quite an interest in\nPOKéMON from the KANTO region.\lHere, I want you to have this.
  86.  
  87. #org @cozy_msg
  88. = DOLLS are cozy, aren't they?
  89.  
  90. #org @obtained_msg
  91. = [player] obtained a [buffer1]!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement