Kaphotics

[ZA] Form Reversion Table

Oct 9th, 2025 (edited)
31,232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.29 KB | None | 0 0
  1. Notably missing the 3 previously mentioned "new" megas that have mega stones. Implies they may be added at a later date? Or this function is unused? Won't know until the full game is analyzed.
  2.  
  3. Here's S/V's table for comparison:
  4. https://www.smogon.com/forums/threads/scarlet-violet-battle-mechanics-research.3709545/page-42#post-9893285
  5.  
  6. ```cs
  7. var data = File.ReadAllBytes(path).AsSpan();
  8. var start = 0x31568FC;
  9.  
  10. var speciesNames = GameInfo.Strings.specieslist;
  11. const int size = 6;
  12. for (int i = start; i < start + 0x5E*size; i+=size)
  13. {
  14.     var species = System.Buffers.Binary.BinaryPrimitives.ReadUInt16LittleEndian(data[i..]);
  15.     var from = System.Buffers.Binary.BinaryPrimitives.ReadUInt16LittleEndian(data[(i+2)..]);
  16.     var to = System.Buffers.Binary.BinaryPrimitives.ReadUInt16LittleEndian(data[(i+4)..]);
  17.     $"{(i-start)/6:000} {(int)species:0000} {speciesNames[SpeciesConverter.GetNational9(species)]} {from} => {to}".Dump();
  18. }
  19. ```
  20.  
  21. 000 0421 Cherrim 1 => 0
  22. 001 0555 Darmanitan 1 => 0
  23. 002 0555 Darmanitan 3 => 2
  24. 003 0681 Aegislash 1 => 0
  25. 004 0746 Wishiwashi 1 => 0
  26. 005 0778 Mimikyu 1 => 0
  27. 006 0845 Cramorant 1 => 0
  28. 007 0845 Cramorant 2 => 0
  29. 008 0888 Zacian 1 => 0
  30. 009 0889 Zamazenta 1 => 0
  31. 010 0890 Eternatus 1 => 0
  32. 011 0875 Eiscue 1 => 0
  33. 012 0877 Morpeko 1 => 0
  34. 013 0351 Castform 2 => 0
  35. 014 0351 Castform 3 => 0
  36. 015 0351 Castform 1 => 0
  37. 016 0648 Meloetta 1 => 0
  38. 017 0718 Zygarde 4 => 0
  39. 018 0774 Minior 0 => 7
  40. 019 0774 Minior 1 => 8
  41. 020 0774 Minior 2 => 9
  42. 021 0774 Minior 3 => 10
  43. 022 0774 Minior 4 => 11
  44. 023 0774 Minior 5 => 12
  45. 024 0774 Minior 6 => 13
  46. 025 0934 Palafin 1 => 0
  47. 026 0003 Venusaur 1 => 0
  48. 027 0006 Charizard 1 => 0
  49. 028 0006 Charizard 2 => 0
  50. 029 0009 Blastoise 1 => 0
  51. 030 0015 Beedrill 1 => 0
  52. 031 0018 Pidgeot 1 => 0
  53. 032 0036 Clefable 1 => 0
  54. 033 0065 Alakazam 1 => 0
  55. 034 0071 Victreebel 1 => 0
  56. 035 0080 Slowbro 1 => 0
  57. 036 0094 Gengar 1 => 0
  58. 037 0115 Kangaskhan 1 => 0
  59. 038 0121 Starmie 1 => 0
  60. 039 0127 Pinsir 1 => 0
  61. 040 0130 Gyarados 1 => 0
  62. 041 0142 Aerodactyl 1 => 0
  63. 042 0149 Dragonite 1 => 0
  64. 043 0150 Mewtwo 1 => 0
  65. 044 0150 Mewtwo 2 => 0
  66. 045 0154 Meganium 1 => 0
  67. 046 0160 Feraligatr 1 => 0
  68. 047 0181 Ampharos 1 => 0
  69. 048 0208 Steelix 1 => 0
  70. 049 0212 Scizor 1 => 0
  71. 050 0214 Heracross 1 => 0
  72. 051 0227 Skarmory 1 => 0
  73. 052 0229 Houndoom 1 => 0
  74. 053 0248 Tyranitar 1 => 0
  75. 054 0282 Gardevoir 1 => 0
  76. 055 0302 Sableye 1 => 0
  77. 056 0303 Mawile 1 => 0
  78. 057 0306 Aggron 1 => 0
  79. 058 0308 Medicham 1 => 0
  80. 059 0310 Manectric 1 => 0
  81. 060 0319 Sharpedo 1 => 0
  82. 061 0323 Camerupt 1 => 0
  83. 062 0334 Altaria 1 => 0
  84. 063 0354 Banette 1 => 0
  85. 064 0359 Absol 1 => 0
  86. 065 0362 Glalie 1 => 0
  87. 066 0373 Salamence 1 => 0
  88. 067 0376 Metagross 1 => 0
  89. 068 0428 Lopunny 1 => 0
  90. 069 0445 Garchomp 1 => 0
  91. 070 0448 Lucario 1 => 0
  92. 071 0460 Abomasnow 1 => 0
  93. 072 0475 Gallade 1 => 0
  94. 073 0478 Froslass 1 => 0
  95. 074 0500 Emboar 1 => 0
  96. 075 0530 Excadrill 1 => 0
  97. 076 0531 Audino 1 => 0
  98. 077 0545 Scolipede 1 => 0
  99. 078 0560 Scrafty 1 => 0
  100. 079 0604 Eelektross 1 => 0
  101. 080 0609 Chandelure 1 => 0
  102. 081 0668 Pyroar 1 => 0
  103. 082 0670 Floette 6 => 5
  104. 083 0687 Malamar 1 => 0
  105. 084 0689 Barbaracle 1 => 0
  106. 085 0691 Dragalge 1 => 0
  107. 086 0701 Hawlucha 1 => 0
  108. 087 0718 Zygarde 5 => 0
  109. 088 0719 Diancie 1 => 0
  110. 089 0780 Drampa 1 => 0
  111. 090 0870 Falinks 1 => 0
  112. 091 0652 Chesnaught 1 => 0
  113. 092 0655 Delphox 1 => 0
  114. 093 0658 Greninja 3 => 0
Advertisement
Add Comment
Please, Sign In to add comment