Guess what...
I finally found the data! Conveniently, the mod (reform) and experimental (test) evolutions are in the same place. Here is where it is and how it's formatted:
The data is located from 0AA0B1-0AA368.
Code: Select all
Format of data is 4 bytes for each Denjuu and is as follows:
aa bb cc dd
aa = Item 1 used to mod evolve/experimentally evolve
If a value from 00-39 is used, the evolution will be a mod evolution. If
a value from 40-42 is used, the evolution will be a experimental evolution.
No other value will cause a Denjuu to evolve either of these two ways.
However, the value FF is used if a Denjuu doesn't evolve these two ways.
(Note: This list currently uses the badly translated names from the
bootleg Pokémon Diamond/Jade)
Mod items:
00 = A-gun
01 = Gun
02 = Revolver
03 = R-gun
04 = Mo-gun
05 = Missile
06 = Bomb
07 = Ma-gun
08 = Sabre
09 = Drill
0A = Jet
0B = Propelle
0C = Dart
0D = Battery
0E = Shooter
0F = Range
10 = Flatiron
11 = Blender
12 = Phone
13 = Antenna
14 = Spanner
15 = Saw
16 = ChainSaw
17 = L-gun
18 = Axe
19 = Screwdri
1A = Screw
1B = Spring
1C = Gear
1D = P-card
1E = Spear
1F = Crane
20 = Dagger
21 = Sickle
22 = Computer
23 = Moving
24 = Hammer
25 = Injector
26 = Camera
27 = Video
28 = Flying
29 = Pencil
2A = Tire
2B = O-bottle
2C = Tap
2D = Bucket
2E = Cleaner
2F = Mouse
30 = Key
31 = Game
32 = Toy
33 = Pengpeng
34 = Racket
35 = Tsita
36 = Luna
37 = Diamond
38 = L-medal
39 = Tayta
Experimental items:
40 = Baolan
41 = Gulap
42 = Jigay
bb = Item 2 used to mod evolve/experimentally evolve
If a value from 00-39 is used, the evolution will be a mod evolution. If
a value from 40-42 is used, the evolution will be a experimental evolution.
No other value will cause a Denjuu to evolve either of these two ways.
However, the value FF is used if a Denjuu doesn't evolve these two ways.
The same item list for above also applies here.
cc = Denjuu 1 it mod/experimentally evolves into
This is the Denjuu that the current Denjuu will evolve into if Item 1 is
used. If Item 1 is FF (unused), this value will be 00.
dd = Denjuu 2 it mod/experimentally evolves into
This is the Denjuu that the current Denjuu will evolve into if Item 2 is
used. If Item 1 is FF (unused), this value will be 00.
First, I'll use #21 Angios as an example. Its data is located from 0xAA101-0xAA104. Its data is:
And here's what it means:
40 = Angios experimentally evolves with the "Baolan" item.
FF = Angios does not have a second non-natural way of evolving.
4C = With the first item, Angios evolves into #76 Angioon.
00 = Since Angios does not evolve a second way, this "Denjuu" is 00.
Next, I'll use #60 Cryptoride as an example. Its data is located from 0xAA19D-0xAA1A0. Its data is:
Here's what it means:
03 = Cryptoride mod evolves with R-Gun (Item #03).
FF = Cryptoride does not have a second non-natural way of evolving.
28 = With the first item, Cryptoride evolves into #40 Cryptoarm.
00 = Since Cryptoride does not evolve a second way, this "Denjuu" is 00.
And finally, let's use #84 Gust as an example, since it evolves both ways. Its data is located from 0xAA1FD-0xAA200. Its data is:
Here's what it means:
1A = Gust mod evolves with a Screw (Item #26).
41 = Gust experimentally evolves with a Gulap (weird name, I know).
63 = With the first item, Screw, Gust evolves into #99 Tempest.
90 = With the second item, Gulap, Gust evolves into #144 Storm.
Worth noting is that it is possible to make a Denjuu evolve with two Mod items or two Experimental items, even though no Denjuu currently evolve this way (at least in Telefang 1, anyway). There doesn't seem to be any limitation other than the fact that Baolan, Gulap, and Jigay will always be experimental, and the other items will always be mod. Happy hacking!
Wow -- this was a long post!
And here are some screenshots!
EDIT: Made the information more accurate.
EDIT 2: Added a little note at the bottom.