Kaphotics

[ZA] Permitted Moves

Oct 9th, 2025 (edited)
29,492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.60 KB | None | 0 0
  1. Moves that are probably available to use in-game. Similar to previous games, some moves get removed/unusable.
  2.  
  3. Dumped with PKHeX.Core via the 1.0.1 ExeFS (decompressed).
  4.  
  5. ```cs
  6. var data = File.ReadAllBytes(path).AsSpan();
  7. var start = 0x31570D8;
  8.  
  9. var names = GameInfo.Strings.movelist;
  10. for (int i = start; i <= start + 246*2; i+=2) // updated: Agility is after the new move???
  11. {
  12.     var x = System.Buffers.Binary.BinaryPrimitives.ReadUInt16LittleEndian(data[i..]);
  13.     var move = GetName(x);
  14.     $"{(i-start)/2:000} {(int)x:0000} {move}".Dump();
  15. }
  16.  
  17. string GetName(ushort move) => move >= names.Length ? move.ToString() : names[move];
  18. ```
  19.  
  20. 000 0007 Fire Punch
  21. 001 0008 Ice Punch
  22. 002 0009 Thunder Punch
  23. 003 0014 Swords Dance
  24. 004 0016 Gust
  25. 005 0017 Wing Attack
  26. 006 0018 Whirlwind
  27. 007 0019 Fly
  28. 008 0022 Vine Whip
  29. 009 0029 Headbutt
  30. 010 0033 Tackle
  31. 011 0034 Body Slam
  32. 012 0036 Take Down
  33. 013 0038 Double-Edge
  34. 014 0039 Tail Whip
  35. 015 0040 Poison Sting
  36. 016 0042 Pin Missile
  37. 017 0043 Leer
  38. 018 0044 Bite
  39. 019 0045 Growl
  40. 020 0046 Roar
  41. 021 0048 Supersonic
  42. 022 0052 Ember
  43. 023 0053 Flamethrower
  44. 024 0054 Mist
  45. 025 0055 Water Gun
  46. 026 0056 Hydro Pump
  47. 027 0057 Surf
  48. 028 0058 Ice Beam
  49. 029 0059 Blizzard
  50. 030 0060 Psybeam
  51. 031 0061 Bubble Beam
  52. 032 0063 Hyper Beam
  53. 033 0064 Peck
  54. 034 0071 Absorb
  55. 035 0073 Leech Seed
  56. 036 0074 Growth
  57. 037 0075 Razor Leaf
  58. 038 0076 Solar Beam
  59. 039 0077 Poison Powder
  60. 040 0078 Stun Spore
  61. 041 0079 Sleep Powder
  62. 042 0081 String Shot
  63. 043 0083 Fire Spin
  64. 044 0084 Thunder Shock
  65. 045 0085 Thunderbolt
  66. 046 0086 Thunder Wave
  67. 047 0087 Thunder
  68. 048 0088 Rock Throw
  69. 049 0089 Earthquake
  70. 050 0091 Dig
  71. 051 0092 Toxic
  72. 052 0093 Confusion
  73. 053 0094 Psychic
  74. 054 0095 Hypnosis
  75. 055 0098 Quick Attack
  76. 056 0100 Teleport
  77. 057 0103 Screech
  78. 058 0104 Double Team
  79. 059 0105 Recover
  80. 060 0106 Harden
  81. 061 0108 Smokescreen
  82. 062 0109 Confuse Ray
  83. 063 0113 Light Screen
  84. 064 0114 Haze
  85. 065 0115 Reflect
  86. 066 0116 Focus Energy
  87. 067 0118 Metronome
  88. 068 0120 Self-Destruct
  89. 069 0122 Lick
  90. 070 0126 Fire Blast
  91. 071 0127 Waterfall
  92. 072 0129 Swift
  93. 073 0133 Amnesia
  94. 074 0137 Glare
  95. 075 0141 Leech Life
  96. 076 0150 Splash
  97. 077 0151 Acid Armor
  98. 078 0153 Explosion
  99. 079 0157 Rock Slide
  100. 080 0162 Super Fang
  101. 081 0163 Slash
  102. 082 0164 Substitute
  103. 083 0172 Flame Wheel
  104. 084 0174 Curse
  105. 085 0182 Protect
  106. 086 0183 Mach Punch
  107. 087 0188 Sludge Bomb
  108. 088 0191 Spikes
  109. 089 0192 Zap Cannon
  110. 090 0195 Perish Song
  111. 091 0196 Icy Wind
  112. 092 0197 Detect
  113. 093 0200 Outrage
  114. 094 0202 Giga Drain
  115. 095 0203 Endure
  116. 096 0204 Charm
  117. 097 0205 Rollout
  118. 098 0209 Spark
  119. 099 0211 Steel Wing
  120. 100 0219 Safeguard
  121. 101 0223 Dynamic Punch
  122. 102 0224 Megahorn
  123. 103 0225 Dragon Breath
  124. 104 0231 Iron Tail
  125. 105 0232 Metal Claw
  126. 106 0234 Morning Sun
  127. 107 0235 Synthesis
  128. 108 0236 Moonlight
  129. 109 0239 Twister
  130. 110 0242 Crunch
  131. 111 0245 Extreme Speed
  132. 112 0247 Shadow Ball
  133. 113 0248 Future Sight
  134. 114 0249 Rock Smash
  135. 115 0250 Whirlpool
  136. 116 0257 Heat Wave
  137. 117 0261 Will-O-Wisp
  138. 118 0268 Charge
  139. 119 0269 Taunt
  140. 120 0273 Wish
  141. 121 0280 Brick Break
  142. 122 0282 Knock Off
  143. 123 0297 Feather Dance
  144. 124 0304 Hyper Voice
  145. 125 0313 Fake Tears
  146. 126 0315 Overheat
  147. 127 0317 Rock Tomb
  148. 128 0319 Metal Sound
  149. 129 0328 Sand Tomb
  150. 130 0331 Bullet Seed
  151. 131 0332 Aerial Ace
  152. 132 0334 Iron Defense
  153. 133 0337 Dragon Claw
  154. 134 0339 Bulk Up
  155. 135 0340 Bounce
  156. 136 0341 Mud Shot
  157. 137 0344 Volt Tackle
  158. 138 0345 Magical Leaf
  159. 139 0347 Calm Mind
  160. 140 0348 Leaf Blade
  161. 141 0350 Rock Blast
  162. 142 0352 Water Pulse
  163. 143 0369 U-turn
  164. 144 0370 Close Combat
  165. 145 0377 Heal Block
  166. 146 0390 Toxic Spikes
  167. 147 0392 Aqua Ring
  168. 148 0394 Flare Blitz
  169. 149 0396 Aura Sphere
  170. 150 0398 Poison Jab
  171. 151 0399 Dark Pulse
  172. 152 0400 Night Slash
  173. 153 0403 Air Slash
  174. 154 0404 X-Scissor
  175. 155 0405 Bug Buzz
  176. 156 0406 Dragon Pulse
  177. 157 0407 Dragon Rush
  178. 158 0408 Power Gem
  179. 159 0411 Focus Blast
  180. 160 0412 Energy Ball
  181. 161 0413 Brave Bird
  182. 162 0414 Earth Power
  183. 163 0416 Giga Impact
  184. 164 0417 Nasty Plot
  185. 165 0418 Bullet Punch
  186. 166 0420 Ice Shard
  187. 167 0421 Shadow Claw
  188. 168 0422 Thunder Fang
  189. 169 0423 Ice Fang
  190. 170 0424 Fire Fang
  191. 171 0425 Shadow Sneak
  192. 172 0427 Psycho Cut
  193. 173 0428 Zen Headbutt
  194. 174 0430 Flash Cannon
  195. 175 0434 Draco Meteor
  196. 176 0435 Discharge
  197. 177 0436 Lava Plume
  198. 178 0437 Leaf Storm
  199. 179 0438 Power Whip
  200. 180 0441 Gunk Shot
  201. 181 0442 Iron Head
  202. 182 0444 Stone Edge
  203. 183 0446 Stealth Rock
  204. 184 0452 Wood Hammer
  205. 185 0453 Aqua Jet
  206. 186 0457 Head Smash
  207. 187 0473 Psyshock
  208. 188 0482 Sludge Wave
  209. 189 0484 Heavy Slam
  210. 190 0521 Volt Switch
  211. 191 0523 Bulldoze
  212. 192 0526 Work Up
  213. 193 0527 Electroweb
  214. 194 0528 Wild Charge
  215. 195 0529 Drill Run
  216. 196 0532 Horn Leech
  217. 197 0535 Heat Crash
  218. 198 0538 Cotton Guard
  219. 199 0540 Psystrike
  220. 200 0542 Hurricane
  221. 201 0555 Snarl
  222. 202 0556 Icicle Crash
  223. 203 0560 Flying Press
  224. 204 0564 Sticky Web
  225. 205 0566 Phantom Force
  226. 206 0567 Trick-or-Treat
  227. 207 0570 Parabolic Charge
  228. 208 0571 Forest’s Curse
  229. 209 0573 Freeze-Dry
  230. 210 0574 Disarming Voice
  231. 211 0575 Parting Shot
  232. 212 0576 Topsy-Turvy
  233. 213 0577 Draining Kiss
  234. 214 0583 Play Rough
  235. 215 0584 Fairy Wind
  236. 216 0585 Moonblast
  237. 217 0586 Boomburst
  238. 218 0588 King’s Shield
  239. 219 0591 Diamond Storm
  240. 220 0592 Steam Eruption
  241. 221 0593 Hyperspace Hole
  242. 222 0594 Water Shuriken
  243. 223 0595 Mystical Fire
  244. 224 0596 Spiky Shield
  245. 225 0598 Eerie Impulse
  246. 226 0601 Geomancy
  247. 227 0605 Dazzling Gleam
  248. 228 0609 Nuzzle
  249. 229 0611 Infestation
  250. 230 0612 Power-Up Punch
  251. 231 0613 Oblivion Wing
  252. 232 0614 Thousand Arrows
  253. 233 0615 Thousand Waves
  254. 234 0616 Land’s Wrath
  255. 235 0617 Light of Ruin
  256. 236 0621 Hyperspace Fury
  257. 237 0670 Leafage
  258. 238 0679 Lunge
  259. 239 0687 Core Enforcer
  260. 240 0693 Brutal Swing
  261. 241 0710 Liquidation
  262. 242 0748 No Retreat
  263. 243 0784 Breaking Swipe
  264. 244 0812 Flip Turn
  265. 245 0920 920
  266. 246 0097 Agility
Advertisement
Add Comment
Please, Sign In to add comment