Advertisement
M3rein

YABS Changelog

Sep 7th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 7.78 KB | None | 0 0
  1. #==============================================================================#
  2. #                                 Changelog                                    #
  3. #                         Yet Another Battle System                            #
  4. #                               Version 1.0.0                                  #
  5. #==============================================================================#
  6.  
  7. #==============================================================================#
  8. # TODO List                                                                    #
  9. #  -> Update to Essentials v17.1                                               #
  10. #      -> Position all Pokémon                                                 #
  11. #  -> Add mouse support for battle system                                      #
  12. #  => Implement more abilities                                                 #
  13. #  => Implement more moves                                                     #
  14. #      => Support for battlers with alternate forms                            #
  15. #  -> Mega Evolution (Z-Moves)                                                 #
  16. #  => Catching Pokémon                                                         #
  17. #  => Trainer battles                                                          #
  18. #  -> Double battles                                                           #
  19. #  -> More in-battle evolution methods                                         #
  20. #==============================================================================#
  21.  
  22.  
  23. #==============================================================================#
  24. # 07/09/2017                                                                   #
  25. #  -> Now supporting atlernate formes                                          #
  26. #  -> Added a small check where returning -1 in pbEffect for moves will        #
  27. #     display as "But it failed!"                                              #
  28. #==============================================================================#
  29.  
  30.  
  31. #==============================================================================#
  32. # 06/09/2017                                                                   #
  33. #  -> Positioned Pokémon from generation II - V (all)                          #
  34. #  -> Now keeping a TODO List                                                  #
  35. #==============================================================================#
  36.  
  37.  
  38. #==============================================================================#
  39. # 05/09/2017                                                                   #
  40. #  -> Sprite positioner is now dependent on the Easy Mouse System (which in    #
  41. #     return makes it look better and makes the process faster)                #
  42. #  -> Positioned Pokémon from generation I                                     #
  43. #  -> Finished in-battle evolution upon levelup                                #
  44. #==============================================================================#
  45.  
  46.  
  47. #==============================================================================#
  48. # 04/09/2017                                                                   #
  49. #  -> Rewrote last part of the constants system (buttons)                      #
  50. #  -> Implemented a new PBS file: yabs_pokemon.txt                             #
  51. #  -> Finished a good chunk of a sprite positioner                             #
  52. #==============================================================================#
  53.  
  54.  
  55. #==============================================================================#
  56. # 02/09/2017                                                                   #
  57. #  -> Rewrote constants system                                                 #
  58. #==============================================================================#
  59.  
  60.  
  61. #==============================================================================#
  62. # 01/09/2017                                                                   #
  63. #  -> Added Soundproof and custom messages when telling a move to fail         #
  64. #  -> Implemented pbScheduleMove                                               #
  65. #  -> Implemented Fly                                                          #
  66. #  -> Made major improvements on the move handler                              #
  67. #==============================================================================#
  68.  
  69.  
  70. #==============================================================================#
  71. # 31/08/2017                                                                   #
  72. #  -> Fixed Accuracy calculation bug                                           #
  73. #  -> Now keeping a changelog                                                  #
  74. #  -> System keeps a battle log if there is a console open                     #
  75. #  -> Made pbExecute for moves easier                                          #
  76. #==============================================================================#
  77.  
  78.  
  79. #==============================================================================#
  80. # 30/08/2017                                                                   #
  81. #  -> Added correct EXP calculations (both gen 5 and other)                    #
  82. #  -> EXP is gained upon defeating a Pokémon and battles can now be won        #
  83. #  -> Implemented fainting of battlers                                         #
  84. #  -> Implemented Ability: Sturdy
  85. #==============================================================================#
  86.  
  87.  
  88. #==============================================================================#
  89. # 29/08/2017                                                                   #
  90. #  -> Changed up the speed intervals between messages                          #
  91. #  -> Added status conditions                                                  #
  92. #  -> Added immunities (Type/Ability/Other)                                    #
  93. #==============================================================================#
  94.  
  95.  
  96. #==============================================================================#
  97. # 28/08/2017                                                                   #
  98. #  -> Moves are now executed by priority and speed                             #
  99. #  -> You can now code move animations                                         #
  100. #==============================================================================#
  101.  
  102.  
  103. #==============================================================================#
  104. # 27/08/2017                                                                   #
  105. #  -> Updated to Pokémon Essentials v17                                        #
  106. #  -> Better move processing                                                   #
  107. #  -> Implemented stat raising and lowering                                    #
  108. #  -> Added damage calculations                                                #
  109. #  -> First version of move processing                                         #
  110. #  -> Added "Running" functionality                                            #
  111. #==============================================================================#
  112.  
  113.  
  114. #==============================================================================#
  115. # 26/08/2017                                                                   #
  116. #  -> Implemented HP Mechanics and animations                                  #
  117. #  -> Implemented EXP Mechanics and animations                                 #
  118. #==============================================================================#
  119.  
  120.  
  121. #==============================================================================#
  122. # ??/08/2017                                                                   #
  123. #  -> Base for the battle system                                               #
  124. #==============================================================================#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement