Advertisement
ChrisIsAwesome

ID2: Droptable Stuff

Dec 9th, 2019 (edited)
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. All enemies that can be killed (even some that can't normally be killed) have droptables. These droptables handle what drops enemy leaves when it dies.
  2. Droptables are consistent, meaning you'll always get the same order, so this can be used to our advantage in runs to get optimal lightnings or buffs.
  3.  
  4. There are 4 tiers of droptables (depending on enemy difficulty). Each tier has a "super tier" which gives better drops. There are 2 ways to get super tier:
  5. 1. Kill 10 enemies of same tier - without taking damage AND without loading other scenes
  6. 2. (if you change scenes) Kill 30 enemies of ANY tier (taking damage doesn't break the chain)
  7. Note that getting super tier by one method will reset the other counter (eg. Killing 10 enemies without changing scenes will reset the other counter (for 30) to 0).
  8. Note that getting a super tier will not skip a drop for normal tier, it just won't count that kill for normal tier.
  9.  
  10. Certain events can change these droptables to make certain items guaranteed or more likely. There are 2 known events that do this:
  11. - Sunshine weather: (random in overworld) For 15-30 seconds, has an 85% chance to replace any heart drop with a lightning
  12. - Hearty status: For 60 seconds, replaces all red heart drops with blue hearts
  13.  
  14. Droptables are saved in save file and each tier is saved separately, so you can have multiple tiers going at once.
  15.  
  16. The items you can get from droptables are:
  17. - Hearts (red, blue, and yellow)
  18. - Fruits for status buffs (tough, dire hit, mighty, hearty)
  19. - Lightnings
  20.  
  21. Normal drop tables always have 16 elements while super tables have 2. Let's look at how the droptables are organized for each tier:
  22.  
  23. [ START DROP TABLE LIST ]
  24.  
  25. Tier 1:
  26. Element 0: Heart (red)
  27. Element 1: N/A
  28. Element 2: N/A
  29. Element 3: N/A
  30. Element 4: Heart (red)
  31. Element 5: N/A
  32. Element 6: N/A
  33. Element 7: N/A
  34. Element 8: N/A
  35. Element 9: Heart (red)
  36. Element 10: N/A
  37. Element 11: N/A
  38. Element 12: N/A
  39. Element 13: Heart (red)
  40. Element 14: N/A
  41. Element 15: Apple (Tough)
  42.  
  43. Tier 1 (super):
  44. Element 1: Lightning
  45. Element 2: Grapes (Dire Hit)
  46.  
  47. Tier 2:
  48. Element 0: Heart (red)
  49. Element 1: N/A
  50. Element 2: N/A
  51. Element 3: Heart (red)
  52. Element 4: N/A
  53. Element 5: N/A
  54. Element 6: Heart (red)
  55. Element 7: Lightning
  56. Element 8: N/A
  57. Element 9: Heart (red)
  58. Element 10: Heart (red)
  59. Element 11: N/A
  60. Element 12: N/A
  61. Element 13: Heart (red)
  62. Element 14: N/A
  63. Element 15: Banana (Mighty)
  64.  
  65. Tier 2 (super):
  66. Element 1: Heart (blue)
  67. Element 2: Strawberry (Hearty)
  68.  
  69. Tier 3:
  70. Element 0: Heart (red)
  71. Element 1: N/A
  72. Element 2: Heart (blue)
  73. Element 3: N/A
  74. Element 4: Heart (red)
  75. Element 5: Heart (red)
  76. Element 6: Lightning
  77. Element 7: Heart (red)
  78. Element 8: N/A
  79. Element 9: Heart (blue)
  80. Element 10: N/A
  81. Element 11: N/A
  82. Element 12: Heart (red)
  83. Element 13: N/A
  84. Element 14: Heart (red)
  85. Element 15: Grapes (Dire Hit)
  86.  
  87. Tier 3 (super):
  88. Element 1: Heart (yellow)
  89. Element 2: Apple (Tough)
  90.  
  91. Tier 4:
  92. Element 0: Heart (blue)
  93. Element 1: Heart (red)
  94. Element 2: Heart (blue)
  95. Element 3: Heart (red)
  96. Element 4: Lightning
  97. Element 5: Heart (red)
  98. Element 6: Heart (blue)
  99. Element 7: Heart (red)
  100. Element 8: N/A
  101. Element 9: Heart (blue)
  102. Element 10: Heart (red)
  103. Element 11: N/A
  104. Element 12: Heart (blue)
  105. Element 13: Heart (red)
  106. Element 14: Heart (blue)
  107. Element 15: Strawberry (Hearty)
  108.  
  109. Tier 4 (super):
  110. Element 1: Heart (yellow)
  111. Element 2: Banana (Mighty)
  112.  
  113. [ END DROP TABLE LIST ]
  114.  
  115. Each enemy has a drop table tier assigned, here's the list of enemies and their respective DTs:
  116.  
  117. [ START ENEMY LIST ]
  118.  
  119. Tier 1:
  120. Fishbun
  121. Safety Jenny
  122. Shellbun
  123. Cowbun
  124. Stupid Bee
  125. Candy Snake (coast)
  126. Mimic
  127. Hyperdusa (green)
  128. Gate (grey)
  129.  
  130. Tier 2:
  131. Hatless Ogler
  132. Ogler
  133. Spikebun (small)
  134. All Turnips with weapons
  135. Volcano (stationary)
  136. Rotnips
  137. Rest of the Mimics
  138. Hyperdusa (blue)
  139.  
  140. Tier 3:
  141. Shark Jenny (out of water)
  142. Volcano (cart)
  143. Spikebun (gold)
  144. Bunboy
  145. Angry Bee
  146. Dark Ogler (+2 to DT count)
  147. Jello (red)
  148. Brutus
  149. Skullnip
  150. Skullnip (snow)
  151. Jello (green)
  152. Candy Snake (lonely)
  153. Big Ogler
  154. Gate (red)
  155.  
  156. Tier 4:
  157. Coldnip
  158. Constructs (all)
  159. Flower Jenny
  160. Slayer Jenny
  161. Lemon Jenny
  162. Hexrot (ice)
  163. Hexrot (fire)
  164. Chilly Roger
  165. Arch Triangle
  166. Mercury Jello (can't be killed tho)
  167.  
  168. [ END ENEMY LIST ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement