-
Notifications
You must be signed in to change notification settings - Fork 0
/
pokemonemerald.toml
4795 lines (4372 loc) · 131 KB
/
pokemonemerald.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[General]
ApplicationVersion = '''0.5.0'''
FreeSpaceSearch = '''000200'''
FreeSpaceBuffer = '''040'''
NextExportID = '''0'''
ShowRawIVByteForTrainer = False
#################################
[[NamedAnchors]]
Name = '''data.header.title'''
Address = 0x0000A0
Format = '''`asc`12'''
DefaultHash = ''''''
[[NamedAnchors]]
Name = '''data.header.gamecode'''
Address = 0x0000AC
Format = '''`asc`4'''
DefaultHash = ''''''
[[NamedAnchors]]
Name = '''data.header.makercode'''
Address = 0x0000B0
Format = '''`asc`2'''
DefaultHash = ''''''
[[NamedAnchors]]
Name = '''data.header.romname'''
Address = 0x000108
Format = '''`asc`32'''
DefaultHash = ''''''
[[NamedAnchors]]
Name = '''sound.newgame.titlescreen.song'''
Address = 0x0AAAE8
Format = '''[track::songnames]1'''
DefaultHash = ''''''
[[NamedAnchors]]
Name = '''data.pokemon.names'''
Address = 0x3185C8
Format = '''[name""11]412'''
DefaultHash = '''747F95CC'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.names'''
Address = 0x31977C
Format = '''^[name""13]355'''
DefaultHash = '''C4BD7B07'''
[[NamedAnchors]]
Name = '''data.abilities.names'''
Address = 0x31B6DB
Format = '''[name""13]78'''
DefaultHash = '''691941BB'''
[[NamedAnchors]]
Name = '''data.trainers.classes.names'''
Address = 0x30FCD4
Format = '''[name""13]66'''
DefaultHash = '''691941BB'''
[[NamedAnchors]]
Name = '''data.pokemon.type.names'''
Address = 0x31AE38
Format = '''^[name""7]data.pokemon.type.length'''
DefaultHash = '''0E9784EA'''
[[NamedAnchors]]
Name = '''data.items.stats'''
Address = 0x5839A0
Format = '''[name""13 unused. index: price: holdeffect.holdeffects param. description<""> keyitemvalue. bagkeyitem. pocket.pocketid type.|s=pocket(0=itemtype|1=itemtype|3=itemtype|4=itemtype|5=itemtype) fieldeffect<> battleusage:: battleeffect<> battleextra::]377'''
DefaultHash = '''9D61A0EB'''
[[NamedAnchors]]
Name = '''data.pokemon.type.contest.names'''
Address = 0x58BAF0
Format = '''[name<"">]5'''
DefaultHash = '''887BD14E'''
[[NamedAnchors]]
Name = '''data.abilities.descriptions'''
Address = 0x31BAD4
Format = '''[description<"">]data.abilities.names'''
DefaultHash = '''F80AF0FF'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.descriptions'''
Address = 0x61C524
Format = '''[description<"">]data.pokemon.moves.names-1'''
DefaultHash = '''BD0C8971'''
[[NamedAnchors]]
Name = '''scripts.text.multichoice'''
Address = 0x58B760
Format = '''[options<[text<""> unused::]/count> count::]114'''
DefaultHash = '''4374F5BC'''
[[NamedAnchors]]
Name = '''scripts.text.scrolling.multichoice'''
Address = 0x5B2CF0
Format = '''[text0<""> text1<""> text2<""> text3<""> text4<""> text5<""> text6<""> text7<""> text8<""> text9<""> textA<""> textB<""> textC<""> textD<""> textE<""> textF<"">]13'''
DefaultHash = '''9BAB4D5D'''
[[NamedAnchors]]
Name = '''data.pokemon.natures.names'''
Address = 0x61CB50
Format = '''[name<"">]25'''
DefaultHash = '''60523DF3'''
[[NamedAnchors]]
Name = '''data.menus.text.pc'''
Address = 0x57276C
Format = '''[text<""> data::]31'''
DefaultHash = '''9439D8EA'''
[[NamedAnchors]]
Name = '''scripts.newgame.names.male'''
Address = 0x2FF128
Format = '''[name<"">]20'''
DefaultHash = '''D5755A3A'''
[[NamedAnchors]]
Name = '''scripts.newgame.names.female'''
Address = 0x2FF178
Format = '''[name<"">]20'''
DefaultHash = '''D5755A3A'''
[[NamedAnchors]]
Name = '''scripts.newgame.starters.pokemon'''
Address = 0x5B1DF8
Format = '''[option:data.pokemon.names]scripts.newgame.starters.count'''
DefaultHash = '''0B1A0708'''
[[NamedAnchors]]
Name = '''scripts.newgame.starters.labels'''
Address = 0x5B1DF2
Format = '''[x. y.]scripts.newgame.starters.count'''
DefaultHash = '''27369F4E'''
[[NamedAnchors]]
Name = '''scripts.newgame.starters.pokeballs'''
Address = 0x5B1DEC
Format = '''[x. y.]scripts.newgame.starters.count'''
DefaultHash = '''27369F4E'''
[[NamedAnchors]]
Name = '''scripts.newgame.starters.pointer'''
Address = 0x5B1E28
Format = '''[x. y.]scripts.newgame.starters.count'''
DefaultHash = '''27369F4E'''
[[NamedAnchors]]
Name = '''data.maps.names'''
Address = 0x5A147C
Format = '''[x. y. width. height. name<"">]213'''
DefaultHash = '''52B7E597'''
[[NamedAnchors]]
Name = '''data.maps.theme.popup'''
Address = 0x57F464
Format = '''[theme.mapnamepopuptheme]data.maps.names+0-109'''
DefaultHash = '''1A810E69'''
[[NamedAnchors]]
Name = '''graphics.maps.names.popup.palettes'''
Address = 0x57F384
Format = '''`ucp4:012345`'''
DefaultHash = '''985E9B5C'''
[[NamedAnchors]]
Name = '''graphics.maps.names.popup.background'''
Address = 0x57C684
Format = '''`ucs4x10x18|graphics.maps.names.popup.palettes`'''
DefaultHash = '''6477FC67'''
[[NamedAnchors]]
Name = '''graphics.maps.names.popup.outline'''
Address = 0x57DD04
Format = '''`ucs4x6x30|graphics.maps.names.popup.palettes`'''
DefaultHash = '''FB0F1C4A'''
[[NamedAnchors]]
Name = '''data.maps.banks'''
Address = 0x486578
Format = '''[maps<[map<[layout<[width:: height:: borderblock<[border:|h]4> blockmap<`blm`> blockdata1<[isCompressed. isSecondary. padding: tileset<> pal<`ucp4:0123456789ABCDEF`> blockset<> attributes<> animation<>]1> blockdata2<[isCompressed. isSecondary. padding: tileset<> pal<`ucp4:0123456789ABCDEF`> blockset<> attributes<> animation<>]1>]1> events<[objectCount.100 warpCount.100 scriptCount.100 signpostCount.100 objects<[id. graphics. unused:1 x:|z y:|z elevation.10 moveType. range:|t|x::|y:: trainerType: trainerRangeOrBerryID: script<`xse`> flag: unused:]/objectCount> warps<[x:|z y:|z elevation.10 warpID. map. bank.]/warpCount> scripts<[x:|z y:|z elevation:10 trigger: index:: script<`xse`>]/scriptCount> signposts<[x:|z y:|z elevation.10 kind. unused:1 arg::|h]/signpostCount>]1> mapscripts<[type. pointer<>]!00> connections<[count:: connections<[direction:: offset:: mapGroup. mapNum. unused:]/count>]1> music:songnames layoutID:data.maps.layouts+1 regionSectionID.data.maps.names cave. weather. mapType. unused: flags.|t|allowBiking.|allowEscaping.|allowRunning.|showMapName. battleType.]1>]?>]34'''
DefaultHash = '''9892BF66'''
[[NamedAnchors]]
Name = '''data.maps.layouts'''
Address = 0x481DD4
Format = '''[layout<>]441'''
DefaultHash = '''B9FB1FCC'''
[[NamedAnchors]]
Name = '''data.maps.fly.spawn'''
Address = 0x59F53C
Format = '''[bank. map. x: y: unused:]22'''
DefaultHash = '''DF7BBF82'''
[[NamedAnchors]]
Name = '''data.maps.fly.connections'''
Address = 0x5A1E3C
Format = '''[bank. map. flight.]data.maps.names-0-163'''
DefaultHash = '''E8BB5031'''
[[NamedAnchors]]
Name = '''graphics.pokemon.sprites.front'''
Address = 0x30A18C
Format = '''^[sprite<`lzs4x8x8`> uncompressedLength: index:]data.pokemon.names+28'''
DefaultHash = '''F83847D4'''
[[NamedAnchors]]
Name = '''graphics.pokemon.sprites.back'''
Address = 0x3028B8
Format = '''[sprite<`lzs4x8x8`> uncompressedLength: index:]data.pokemon.names+28'''
DefaultHash = '''8DF98E0A'''
[[NamedAnchors]]
Name = '''graphics.pokemon.sprites.elevation'''
Address = 0x305DCC
Format = '''[elevation.]data.pokemon.names'''
DefaultHash = '''052A8530'''
[[NamedAnchors]]
Name = '''graphics.pokemon.sprites.footprint'''
Address = 0x56E694
Format = '''[footprint<`ucs1x2x2`>]data.pokemon.names+1'''
DefaultHash = '''21D7E9E7'''
[[NamedAnchors]]
Name = '''graphics.pokemon.sprites.coordinates.front'''
Address = 0x300D38
Format = '''[size.|t|width::|height:: yOffset. render|render=graphics.battle.background.sprites/0/battlemap/|0|0|240|112|graphics.pokemon.sprites.front|144|8||yOffset-graphics.pokemon.sprites.elevation/elevation unused:]data.pokemon.names+28'''
DefaultHash = '''7FDD7071'''
[[NamedAnchors]]
Name = '''graphics.pokemon.sprites.coordinates.back'''
Address = 0x3021D8
Format = '''[size.|t|width::|height:: yOffset. render|render=graphics.battle.background.sprites/0/battlemap/|0|0|240|112|graphics.pokemon.sprites.back|40|48||yOffset unused:]data.pokemon.names+28'''
DefaultHash = '''D4789932'''
[[NamedAnchors]]
Name = '''graphics.pokemon.palettes.normal'''
Address = 0x303678
Format = '''^[palette<`lzp4`> index: unused:]data.pokemon.names+28'''
DefaultHash = '''60567F56'''
[[NamedAnchors]]
Name = '''graphics.pokemon.palettes.shiny'''
Address = 0x304438
Format = '''[palette<`lzp4`> index: unused:]data.pokemon.names+28'''
DefaultHash = '''765677D6'''
[[NamedAnchors]]
Name = '''graphics.pokemon.icons.sprites'''
Address = 0x57BCA8
Format = '''[icon<`ucs4x4x8|graphics.pokemon.icons.index`>]data.pokemon.names+28'''
DefaultHash = '''D2DEB9B6'''
[[NamedAnchors]]
Name = '''graphics.pokemon.icons.index'''
Address = 0x57C388
Format = '''[index.graphics.pokemon.icons.palettes]data.pokemon.names+28'''
DefaultHash = '''87C57C4B'''
[[NamedAnchors]]
Name = '''graphics.pokemon.icons.palettes'''
Address = 0x57C540
Format = '''[palette<`ucp4`> id::]3'''
DefaultHash = '''E3068BEC'''
[[NamedAnchors]]
Name = '''graphics.pokemon.icons.deoxys'''
Address = 0xD3B7F8
Format = '''`ucs4x4x16|graphics.pokemon.icons.index`'''
DefaultHash = '''B62FF03E'''
[[NamedAnchors]]
Name = '''graphics.trainers.sprites.front'''
Address = 0x305654
Format = '''[sprite<`lzs4x8x8|graphics.trainers.palettes.front`> uncompressedLength: index:]93'''
DefaultHash = '''03CEF99E'''
[[NamedAnchors]]
Name = '''graphics.trainers.sprites.back.enter'''
Address = 0x305D4C
Format = '''[sprite<`ucs4x8x8|graphics.trainers.palettes.back`> a. b. c:]8'''
DefaultHash = '''23CC3A98'''
[[NamedAnchors]]
Name = '''graphics.trainers.animations.back'''
Address = 0x305D0C
Format = '''[animationPointer<[animation<[frame: time:]!FFFF0000>]2>]graphics.trainers.sprites.back.enter'''
DefaultHash = '''E2699D55'''
[[NamedAnchors]]
Name = '''graphics.trainers.animations.frames'''
Address = 0x30536C
Format = '''[animationPointer<[animation<>]1>]graphics.trainers.sprites.front'''
DefaultHash = '''A2403076'''
[[NamedAnchors]]
Name = '''graphics.trainers.coordinates.front'''
Address = 0x3054E0
Format = '''[x. y. unused:]graphics.trainers.sprites.front'''
DefaultHash = '''BF50BB8D'''
[[NamedAnchors]]
Name = '''graphics.trainers.palettes.front'''
Address = 0x30593C
Format = '''[palette<`lzp4`> index: unused:]graphics.trainers.sprites.front'''
DefaultHash = '''C6C97AF8'''
[[NamedAnchors]]
Name = '''graphics.trainers.sprites.back.throw'''
Address = 0x329DF8
Format = '''[titleTag:|h paletteTag:|h oam<> anims<> sprites<`osl|graphics.trainers.palettes.back:sprite`> affineAnimations<> callback<>]graphics.trainers.sprites.back.enter'''
DefaultHash = '''7DB38EA7'''
[[NamedAnchors]]
Name = '''graphics.trainers.palettes.back'''
Address = 0x305D8C
Format = '''[pal<`lzp4`> sprite::]graphics.trainers.sprites.back.enter'''
DefaultHash = '''31B64AF3'''
[[NamedAnchors]]
Name = '''graphics.pokemon.animations.options'''
Address = 0x60AA88
Format = '''[thumb<>]151'''
DefaultHash = '''763B205E'''
[[NamedAnchors]]
Name = '''graphics.pokemon.animations.front'''
Address = 0x3299EC
Format = '''[index.graphics.pokemon.animations.options]data.pokemon.names-1'''
DefaultHash = '''760F38B9'''
[[NamedAnchors]]
Name = '''graphics.pokemon.animations.back'''
Address = 0x60A8C8
Format = '''[index.]data.pokemon.names'''
DefaultHash = '''FCE8C6AB'''
[[NamedAnchors]]
Name = '''graphics.pokemon.animations.frames'''
Address = 0x309AAC
Format = '''[data<[frames<[frame: time:]!FFFF0000>]1>]data.pokemon.names'''
DefaultHash = '''A4298DB1'''
[[NamedAnchors]]
Name = '''graphics.pokedex.menu.tileset'''
Address = 0xDC1934
Format = '''`lzs4x16x16|graphics.pokedex.menu.palette`'''
DefaultHash = '''20748AB5'''
[[NamedAnchors]]
Name = '''graphics.pokedex.menu.tilemap.foreground'''
Address = 0xDC2C5C
Format = '''`lzm4x32x20|graphics.pokedex.menu.tileset`'''
DefaultHash = '''808D3F78'''
[[NamedAnchors]]
Name = '''graphics.pokedex.menu.tilemap.background'''
Address = 0xDC2DAC
Format = '''`lzm4x32x20|graphics.pokedex.menu.tileset`'''
DefaultHash = '''808D3F78'''
[[NamedAnchors]]
Name = '''graphics.pokedex.menu.tilemap.menu1'''
Address = 0xDC2A08
Format = '''`lzm4x32x12|graphics.pokedex.menu.tileset`'''
DefaultHash = '''05999FF6'''
[[NamedAnchors]]
Name = '''graphics.pokedex.menu.tilemap.menu2'''
Address = 0xDC2B1C
Format = '''`lzm4x32x12|graphics.pokedex.menu.tileset`'''
DefaultHash = '''05999FF6'''
[[NamedAnchors]]
Name = '''graphics.pokedex.menu.palette'''
Address = 0xDC16F4
Format = '''`ucp4:0123456789ABCDEF`'''
DefaultHash = '''ED942E20'''
[[NamedAnchors]]
Name = '''graphics.pokemon.moves.animations'''
Address = 0x2C8D6C
Format = '''[animation<`ase`>]data.pokemon.moves.names'''
DefaultHash = '''7BD265EA'''
[[NamedAnchors]]
Name = '''graphics.moves.particles.sprites'''
Address = 0x524B44
Format = '''[ptr<`lzt4`> size: index:]289'''
DefaultHash = '''05D5BED6'''
[[NamedAnchors]]
Name = '''graphics.moves.particles.palettes'''
Address = 0x52544C
Format = '''[ptr<`lzp4`> index: unused:]graphics.moves.particles.sprites'''
DefaultHash = '''25E33879'''
[[NamedAnchors]]
Name = '''graphics.items.ball.sprites'''
Address = 0x32C400
Format = '''[sprite<`lzs4x2x6|graphics.items.ball.palettes`> uncompressedLength: a b]12'''
DefaultHash = '''9CF98BCD'''
[[NamedAnchors]]
Name = '''graphics.items.ball.palettes'''
Address = 0x32C460
Format = '''[palette<`lzp4`> a b unused:]graphics.items.ball.sprites'''
DefaultHash = '''F8F2B863'''
[[NamedAnchors]]
Name = '''graphics.items.sprites'''
Address = 0x614410
Format = '''[sprite<`lzs4x3x3`> palette<`lzp4`>]data.items.stats+1'''
DefaultHash = '''A0AF2FB0'''
[[NamedAnchors]]
Name = '''data.pokemon.stats'''
Address = 0x3203CC
Format = '''[hp. attack. def. speed. spatk. spdef. type1.data.pokemon.type.names type2.data.pokemon.type.names catchRate. baseExp. evs:|t|hp:|atk:|def:|spd:|spatk:|spdef: item1:data.items.stats item2:data.items.stats genderratio.genderratiovalues steps2hatch. basehappiness. growthrate.growthrates egg1.egggroups egg2.egggroups ability1.data.abilities.names ability2.data.abilities.names runrate. dex.|t|color:::.bodycolors|noFlip. padding:]data.pokemon.names'''
DefaultHash = '''B7CB43C9'''
[[NamedAnchors]]
Name = '''data.pokemon.deoxys.stats'''
Address = 0x329D48
Format = '''[hp: atk: def: spd: spatk: spdef:]1'''
DefaultHash = '''B4DDE1FD'''
[[NamedAnchors]]
Name = '''data.pokemon.evolutions'''
Address = 0x32531C
Format = '''[method1:evolutionmethods arg1:|s=method1(6=data.items.stats|7=data.items.stats) species1:data.pokemon.names unused1: method2:evolutionmethods arg2:|s=method2(6=data.items.stats|7=data.items.stats) species2:data.pokemon.names unused2: method3:evolutionmethods arg3:|s=method3(6=data.items.stats|7=data.items.stats) species3:data.pokemon.names unused3: method4:evolutionmethods arg4:|s=method4(6=data.items.stats|7=data.items.stats) species4:data.pokemon.names unused4: method5:evolutionmethods arg5:|s=method5(6=data.items.stats|7=data.items.stats) species5:data.pokemon.names unused5:]data.pokemon.names'''
DefaultHash = '''6D76E2E4'''
[[NamedAnchors]]
Name = '''data.items.pokeball.catchrates'''
Address = 0x31C48D
Format = '''[catchrate.]4'''
DefaultHash = '''ED9BD5FC'''
[[NamedAnchors]]
Name = '''data.items.effects'''
Address = 0x31E58C
Format = '''[data<`pie`>]data.items.stats-13-201'''
DefaultHash = '''8FA95394'''
[[NamedAnchors]]
Name = '''data.items.berry.stats'''
Address = 0x58A670
Format = '''[name""7 firmness. size: maxYield. minYield. description1<""> description2<""> stageDuration. spicy. dry. sweet. bitter. sour. smoothness:]43'''
DefaultHash = '''5AA81E7B'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.stats.battle'''
Address = 0x31C898
Format = '''[effect.moveeffectoptions power. type.data.pokemon.type.names accuracy. pp. effectAccuracy. target|b[]movetarget priority.|z info|b[]moveinfo unused. unused:]data.pokemon.moves.names'''
DefaultHash = '''2136B223'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.stats.contest'''
Address = 0x58C2B4
Format = '''[effect.data.pokemon.contest.effects type.data.pokemon.type.contest.names combo_key.contestcombostarter combo_a.contestcombostarter combo_b.contestcombostarter combo_c.contestcombostarter padding:]data.pokemon.moves.names'''
DefaultHash = '''14C76745'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.levelup'''
Address = 0x32937C
Format = '''[movesFromLevel<[pair:|t|move::::.data.pokemon.moves.names|level:::.]!FFFF>]data.pokemon.names'''
DefaultHash = '''BBF82701'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.tutors'''
Address = 0x61500C
Format = '''[move:data.pokemon.moves.names]30'''
DefaultHash = '''0B22E934'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.tutorcompatibility'''
Address = 0x615048
Format = '''[moves|b[]data.pokemon.moves.tutors]data.pokemon.names'''
DefaultHash = '''CDD25BE9'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.tms'''
Address = 0x616040
Format = '''[move:data.pokemon.moves.names]58'''
DefaultHash = '''5A50104C'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.tmcompatibility'''
Address = 0x31E898
Format = '''[moves|b[]data.pokemon.moves.tms]data.pokemon.names'''
DefaultHash = '''A122972F'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.hms'''
Address = 0x329EEA
Format = '''[move:data.pokemon.moves.names]8'''
DefaultHash = '''CD4CF625'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.flash.radius'''
Address = 0x54FE64
Format = '''[max: current:]1'''
DefaultHash = '''967505D3'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.fallback.names'''
Address = 0x5CCBBC
Format = '''[name""17]data.pokemon.type.names'''
DefaultHash = '''3342CB81'''
[[NamedAnchors]]
Name = '''data.trainers.stats'''
Address = 0x310030
Format = '''[structType.trainerStructType class.data.trainers.classes.names introMusicAndGender.|t|music:::.|female. sprite.graphics.trainers.sprites.front name""12 prizeMoney|=4*(data.trainers.money/class=class)/moneyrate*pokemon/last/level item1:data.items.stats item2:data.items.stats item3:data.items.stats item4:data.items.stats doubleBattle::doublebattleflag ai|b[]traineraibits | pokemonCount:: pokemon<`tpt`>]855'''
DefaultHash = '''09C51463'''
[[NamedAnchors]]
Name = '''data.trainers.money'''
Address = 0x31AEB8
Format = '''[class.data.trainers.classes.names moneyrate. unused:]56'''
DefaultHash = '''672D068B'''
[[NamedAnchors]]
Name = '''data.trainers.multibattle.steven.team'''
Address = 0x5DD6D0
Format = '''[species:data.pokemon.names iv. level. nature.data.pokemon.natures.names hpEV. atkEV. defEV. speedEV. spAtkEV. spDefEV. unused. [move:data.pokemon.moves.names]4]3'''
DefaultHash = '''CCE4E951'''
[[NamedAnchors]]
Name = '''data.decorations.stats'''
Address = 0x5A5C08
Format = '''[id. name""16 permission.decorpermissions shape.decorshape category.decorcategory price:: description<""> graphics<>]121'''
DefaultHash = '''E7BFBD0E'''
[[NamedAnchors]]
Name = '''data.pokemon.wild'''
Address = 0x552D48
Format = '''[bank. map. unused: grass<[rate:: list<[lowLevel. highLevel. species:data.pokemon.names]12>]1> surf<[rate:: list<[lowLevel. highLevel. species:data.pokemon.names]5>]1> tree<[rate:: list<[lowLevel. highLevel. species:data.pokemon.names]5>]1> fish<[rate:: list<[lowLevel. highLevel. species:data.pokemon.names]10>]1>]!FFFF'''
DefaultHash = '''ADE4E5BA'''
[[NamedAnchors]]
Name = '''data.pokemon.trades'''
Address = 0x338ED0
Format = '''[nickname""12 receive:data.pokemon.names hp. attack. defense. speed. spatk. spdef. abilitynum:: trainerid:: cool. tough. beauty. smart. cute. unused. unused: personality:: helditem:data.items.stats mailnum. trainername""11 trainergender.trainergender sheen. give::data.pokemon.names]4'''
DefaultHash = '''B903EAAF'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.mimic.metronome.forbidden'''
Address = 0x31C3E0
Format = '''[move:data.pokemon.moves.names]!FFFF'''
DefaultHash = '''A07F40B9'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.protect.successrate'''
Address = 0x31C3D8
Format = '''[rate:]4'''
DefaultHash = '''8D47C9EE'''
[[NamedAnchors]]
Name = '''data.pokemon.frontier.banned'''
Address = 0x611C9A
Format = '''[species:data.pokemon.names]!FFFF'''
DefaultHash = '''C35563E2'''
[[NamedAnchors]]
Name = '''data.abilities.pickup.items'''
Address = 0x31C440
Format = '''[item:data.items.stats]18'''
DefaultHash = '''9B742916'''
[[NamedAnchors]]
Name = '''data.abilities.pickup.rareitems'''
Address = 0x31C464
Format = '''[item:data.items.stats]11'''
DefaultHash = '''BF3F2ED0'''
[[NamedAnchors]]
Name = '''data.abilities.soundproof.moves'''
Address = 0x31BCF8
Format = '''[move:data.pokemon.moves.names]!FFFF'''
DefaultHash = '''A07F40B9'''
[[NamedAnchors]]
Name = '''data.pokemon.moves.egg'''
Address = 0x32ADD8
Format = '''`egg`'''
DefaultHash = '''BB140A91'''
[[NamedAnchors]]
Name = '''data.pokemon.type.chart'''
Address = 0x31ACE8
Format = '''[attack.data.pokemon.type.names defend.data.pokemon.type.names strength.effectiveness]!FFFF00'''
DefaultHash = '''A2C691C6'''
[[NamedAnchors]]
Name = '''data.pokemon.type.holdEffects'''
Address = 0x329D74
Format = '''[effect. type.data.pokemon.type.names]data.pokemon.type.holdEffect.length'''
DefaultHash = '''CCD2BDF9'''
[[NamedAnchors]]
Name = '''data.pokemon.swarm'''
Address = 0x58D094
Format = '''[pokemon:data.pokemon.names move1:data.pokemon.moves.names move2:data.pokemon.moves.names move3:data.pokemon.moves.names move4:data.pokemon.moves.names level. location.]5'''
DefaultHash = '''ED05A05A'''
[[NamedAnchors]]
Name = '''scripts.moves.effects'''
Address = 0x2D86A8
Format = '''[effect<`bse`>]moveeffectoptions'''
DefaultHash = '''4A4FDAD8'''
[[NamedAnchors]]
Name = '''scripts.moves.setupeffects'''
Address = 0x2DDE90
Format = '''[effects.moveeffectoptions]!FF'''
DefaultHash = '''8D3B7933'''
[[NamedAnchors]]
Name = '''scripts.specials.thumb'''
Address = 0x1DBA64
Format = '''[code<>]527'''
DefaultHash = '''016BBBDB'''
[[NamedAnchors]]
Name = '''scripts.battle.thumb'''
Address = 0x31BD10
Format = '''[code<>]249'''
DefaultHash = '''35533E75'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.thumb'''
Address = 0x5B083C
Format = '''[command<>]99'''
DefaultHash = '''2DD2210B'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.hpaware.discourage.when.self.high'''
Address = 0x2DE21F
Format = '''[effect.moveeffectoptions]!FF'''
DefaultHash = '''6856AB34'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.hpaware.discourage.when.self.medium'''
Address = 0x2DE22D
Format = '''[effect.moveeffectoptions]!FF'''
DefaultHash = '''6856AB34'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.hpaware.discourage.when.self.low'''
Address = 0x2DE258
Format = '''[effect.moveeffectoptions]!FF'''
DefaultHash = '''6856AB34'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.hpaware.discourage.when.target.high'''
Address = 0x2DE288
Format = '''[effect.moveeffectoptions]!FF'''
DefaultHash = '''6856AB34'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.hpaware.discourage.when.target.medium'''
Address = 0x2DE289
Format = '''[effect.moveeffectoptions]!FF'''
DefaultHash = '''6856AB34'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.hpaware.discourage.when.target.low'''
Address = 0x2DE2B1
Format = '''[effect.moveeffectoptions]!FF'''
DefaultHash = '''6856AB34'''
[[NamedAnchors]]
Name = '''scripts.battle.ai.trainer'''
Address = 0x2DBEF8
Format = '''[ai<`tse`>]traineraibits'''
DefaultHash = '''30272D09'''
[[NamedAnchors]]
Name = '''scripts.newgame.setflags'''
Address = 0x2715DE
Format = '''`xse`'''
DefaultHash = '''919E3ECB'''
[[NamedAnchors]]
Name = '''scripts.newgame.pc.item'''
Address = 0x5DFEFC
Format = '''[item:data.items.stats count:]!00000000'''
DefaultHash = '''B3B42D75'''
[[NamedAnchors]]
Name = '''scripts.evolution.routines'''
Address = 0x06D198
Format = '''[thumb<>]scripts.evolution.count'''
DefaultHash = '''B16F7B48'''
[[NamedAnchors]]
Name = '''scripts.callstd'''
Address = 0x1DC2A0
Format = '''[script<`xse`>]11'''
DefaultHash = '''95625D62'''
[[NamedAnchors]]
Name = '''graphics.pokemon.castform.sprite.coordinates.front'''
Address = 0x525F78
Format = '''[size. yOffset. unused:]4'''
DefaultHash = '''66199F88'''
[[NamedAnchors]]
Name = '''graphics.pokemon.castform.sprite.elevations'''
Address = 0x525F88
Format = '''[elevation.]graphics.pokemon.castform.sprite.coordinates.front'''
DefaultHash = '''36662ECE'''
[[NamedAnchors]]
Name = '''graphics.pokemon.castform.sprite.coordinates.back'''
Address = 0x525F8C
Format = '''[yOffset.]graphics.pokemon.castform.sprite.coordinates.front'''
DefaultHash = '''EFF73D06'''
[[NamedAnchors]]
Name = '''data.battle.text'''
Address = 0x5CC270
Format = '''[text<"">]369'''
DefaultHash = '''73B72D0A'''
[[NamedAnchors]]
Name = '''data.pokemon.contest.stats'''
Address = 0x5880A4
Format = '''[species:data.pokemon.names nickname""11 trainerName""8 trainerGfxId. unused: aiChecks::|h flags|b[]contestPokemonFlags unused. move1:data.pokemon.moves.names move2:data.pokemon.moves.names move3:data.pokemon.moves.names move4:data.pokemon.moves.names cool. beauty. cute. smart. tough. sheen. highestRank. gameCleared. unused""10 personality::|h otId:|h unused:]96'''
DefaultHash = '''9145321F'''
[[NamedAnchors]]
Name = '''data.pokemon.contest.effects'''
Address = 0x58CDCC
Format = '''[type.contesteffects appeal. jam. unused.]contesteffectnames'''
DefaultHash = '''A2C94B19'''
[[NamedAnchors]]
Name = '''data.pokemon.contest.descriptions'''
Address = 0x587C50
Format = '''[description<"">]contesteffectnames'''
DefaultHash = '''980856E9'''
[[NamedAnchors]]
Name = '''data.pokemon.contest.thumb'''
Address = 0x58CECC
Format = '''[thumb<>]contesteffectnames'''
DefaultHash = '''A85ACD97'''
[[NamedAnchors]]
Name = '''data.pokemon.contest.paintings'''
Address = 0x587FA4
Format = '''[personality:: trainerID::|h species:data.pokemon.names paintmode. nickname""11 trainerName""8 rank:]8'''
DefaultHash = '''A88CF2B3'''
[[NamedAnchors]]
Name = '''data.pokedex.regional'''
Address = 0x31D94C
Format = '''[index:]data.pokemon.names-1'''
DefaultHash = '''9A7B740C'''
[[NamedAnchors]]
Name = '''data.pokedex.national'''
Address = 0x31DC82
Format = '''[index:]data.pokemon.names-1'''
DefaultHash = '''9A7B740C'''
[[NamedAnchors]]
Name = '''data.pokedex.hoennToNational'''
Address = 0x31DFB8
Format = '''[index:]data.pokemon.names-1'''
DefaultHash = '''9A7B740C'''
[[NamedAnchors]]
Name = '''data.pokedex.stats'''
Address = 0x56B5B0
Format = '''[species""12 height: weight: description<""> unused: pokemonScale: pokemonOffset: trainerScale: trainerOffset: unused:]387'''
DefaultHash = '''46847C47'''
[[NamedAnchors]]
Name = '''data.pokedex.search.alpha'''
Address = 0x55C6A4
Format = '''[species:data.pokedex.national]data.pokedex.national'''
DefaultHash = '''742C6C04'''
[[NamedAnchors]]
Name = '''data.pokedex.search.weight'''
Address = 0x55C9DA
Format = '''[species:data.pokedex.national]data.pokedex.national-25'''
DefaultHash = '''372DB1AA'''
[[NamedAnchors]]
Name = '''data.pokedex.search.size'''
Address = 0x55CCDE
Format = '''[species:data.pokedex.national]data.pokedex.national-25'''
DefaultHash = '''372DB1AA'''
[[NamedAnchors]]
Name = '''data.pokedex.filter.type.options'''
Address = 0x56EF14
Format = '''[empty<""> type<>]data.pokemon.type.names+1'''
DefaultHash = '''E0F8A8FC'''
[[NamedAnchors]]
Name = '''data.pokedex.filter.type.ids'''
Address = 0x56EFB4
Format = '''[type.data.pokemon.type.names]data.pokemon.type.names'''
DefaultHash = '''2387D8FF'''
[[NamedAnchors]]
Name = '''data.trainers.trainerhill.prizelist'''
Address = 0x62A5CC
Format = '''[prizelist<[prizeoptions<[prize:data.items.stats]6>]10>]2'''
DefaultHash = '''C5B2D413'''
[[NamedAnchors]]
Name = '''data.battlefrontier.items'''
Address = 0x5CECB0
Format = '''[item:data.items.stats]63'''
DefaultHash = '''C443E82C'''
[[NamedAnchors]]
Name = '''data.battlefrontier.trainerclass'''
Address = 0x31F5CA
Format = '''[class.data.trainers.classes.names]82'''
DefaultHash = '''442A73F3'''
[[NamedAnchors]]
Name = '''data.battlefrontier.pokemon'''
Address = 0x5D97BC
Format = '''[species:data.pokemon.names move1:data.pokemon.moves.names move2:data.pokemon.moves.names move3:data.pokemon.moves.names move4:data.pokemon.moves.names item.data.battlefrontier.items ev|b[]battletowerEvFlags nature::data.pokemon.natures.names]882'''
DefaultHash = '''4E22AB98'''
[[NamedAnchors]]
Name = '''data.battlefrontier.trainers'''
Address = 0x5D5ACC
Format = '''[facilityclass::data.battlefrontier.trainerclass trainername""8 before1:|h before2:|h before3:|h before4:|h before5:|h before6:|h win1:|h win2:|h win3:|h win4:|h win5:|h win6:|h lose1:|h lose2:|h lose3:|h lose4:|h lose5:|h lose6:|h teamoptions<[pokemon:data.battlefrontier.pokemon]!FFFF>]300'''
DefaultHash = '''935C4A31'''
[[NamedAnchors]]
Name = '''data.battlefrontier.tutor.descriptions1'''
Address = 0x5B3228
Format = '''[description<"">]11'''
DefaultHash = '''AA9BBF76'''
[[NamedAnchors]]
Name = '''data.battlefrontier.tutor.descriptions2'''
Address = 0x5B3254
Format = '''[description<"">]11'''
DefaultHash = '''AA9BBF76'''
[[NamedAnchors]]
Name = '''data.battlefrontier.clerks.decor1.icons'''
Address = 0x5B312C
Format = '''[item:data.decorations.stats]!FFFF'''
DefaultHash = '''60B12538'''
[[NamedAnchors]]
Name = '''data.battlefrontier.clerks.decor2.icons'''
Address = 0x5B3142
Format = '''[item:data.decorations.stats]!FFFF'''
DefaultHash = '''60B12538'''
[[NamedAnchors]]
Name = '''data.battlefrontier.clerks.vitamin.icons'''
Address = 0x5B314E
Format = '''[item:data.items.stats]!FFFF'''
DefaultHash = '''A627D4E0'''
[[NamedAnchors]]
Name = '''data.battlefrontier.clerks.helditems.icons'''
Address = 0x5B315C
Format = '''[item:data.items.stats]!FFFF'''
DefaultHash = '''A627D4E0'''
[[NamedAnchors]]
Name = '''graphics.trainercard.frontier.sprite'''
Address = 0xDE2084
Format = '''`lzs8x16x14|graphics.trainercard.frontier.palette`'''
DefaultHash = '''977C2C6B'''
[[NamedAnchors]]
Name = '''graphics.trainercard.frontier.pass.sprite'''
Address = 0xDE08C8
Format = '''`lzs4x16x32|graphics.trainercard.frontier.palette`'''
DefaultHash = '''E2979F3D'''
[[NamedAnchors]]
Name = '''graphics.trainercard.frontier.palette'''
Address = 0xDE07C8
Format = '''`ucp4:01234567`'''
DefaultHash = '''B0E09578'''
[[NamedAnchors]]
Name = '''graphics.pokemon.type.icons'''
Address = 0xD971B0
Format = '''`lzs4x4x46|graphics.pokemon.type.palettes`'''
DefaultHash = '''13FC3765'''
[[NamedAnchors]]
Name = '''graphics.pokemon.type.index'''
Address = 0x61CFDC
Format = '''[palette.]data.pokemon.type.names+5'''
DefaultHash = '''205C3E68'''
[[NamedAnchors]]
Name = '''graphics.pokemon.type.palettes'''
Address = 0xD97B84
Format = '''`lzp4`'''
DefaultHash = '''B8A62814'''
[[NamedAnchors]]
Name = '''graphics.pokemon.type.map'''
Address = 0x61CF60
Format = '''[pointer<[index::|t|:.|i::::::. unknown:|h unused:|h]1>]data.pokemon.type.names+5'''
DefaultHash = '''7041C1BD'''
[[NamedAnchors]]
Name = '''graphics.pokemon.bag.type.icon'''
Address = 0xDC4378
Format = '''`ucs4x16x16|graphics.pokemon.bag.type.palette`'''
DefaultHash = '''C5337E77'''
[[NamedAnchors]]
Name = '''graphics.pokemon.bag.type.palette'''
Address = 0xDC4338
Format = '''`ucp4`'''
DefaultHash = '''37B1CAEE'''
[[NamedAnchors]]
Name = '''graphics.pokemon.bag.type.map'''
Address = 0x60F0D4
Format = '''[width. height. xy:|t|:|x:|.|y::]data.pokemon.type.names+1+5'''
DefaultHash = '''F7C833E7'''
[[NamedAnchors]]
Name = '''graphics.text.boxes'''
Address = 0x51021C
Format = '''[sprite<`ucs4x3x3`> pal<`ucp4`>]20'''
DefaultHash = '''E00A25E8'''
[[NamedAnchors]]
Name = '''graphics.bag.male'''
Address = 0xD98E84
Format = '''`lzs4x8x8|graphics.bag.palette`'''
DefaultHash = '''AA9AF83C'''
[[NamedAnchors]]
Name = '''graphics.bag.female'''
Address = 0xD99A00
Format = '''`lzs4x8x8|graphics.bag.palette`'''
DefaultHash = '''AA9AF83C'''
[[NamedAnchors]]
Name = '''graphics.bag.palette'''
Address = 0xD9A560
Format = '''`lzp4`'''
DefaultHash = '''B8A62814'''
[[NamedAnchors]]
Name = '''graphics.bag.berry.sprites'''
Address = 0x57FC94
Format = '''[sprite<`lzs4x6x6`> pal<`lzp4`>]43'''
DefaultHash = '''FAD48325'''
[[NamedAnchors]]
Name = '''graphics.menu.pokeball.palette'''
Address = 0xD96F6C
Format = '''`lzp4`'''
DefaultHash = '''B8A62814'''
[[NamedAnchors]]
Name = '''graphics.menu.pokeball.large'''
Address = 0xD96CD8
Format = '''`lzs4x4x8|graphics.menu.pokeball.palette`'''
DefaultHash = '''3A524B29'''
[[NamedAnchors]]
Name = '''graphics.menu.pokeball.small'''
Address = 0xD96E58
Format = '''`lzs4x2x4|graphics.menu.pokeball.palette`'''
DefaultHash = '''9B056E98'''
[[NamedAnchors]]
Name = '''graphics.menu.status.palette'''
Address = 0xD97188
Format = '''`lzp4`'''
DefaultHash = '''B8A62814'''
[[NamedAnchors]]
Name = '''graphics.menu.status.sprite'''