-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGALE01r0.map
4195 lines (4195 loc) · 218 KB
/
GALE01r0.map
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
.text
80000000 00000000 80000000 0 __GameCode
800000e4 00000000 800000e4 0 CurrentThread
80003100 00000030 80003100 0 memset
80003130 000000c4 80003130 0 __fill_mem
800031f4 00000050 800031f4 0 memcpy
80003244 00000024 80003244 0 TRK_memcpy
80003268 00000030 80003268 0 SYS_another_stdclibrary_unknown
800051ec 00000040 800051ec 0 __check_pad3
8000522c 00000114 8000522c 0 __start
8000535c 000000c0 8000535c 0 __init_data
8000541c 00000020 8000541c 0 __init_hardware
8000543c 00000034 8000543c 0 __flush_cache
800059dc 00000054 800059dc 0 SubactionEvent_0x0C
80007bcc 0000019c 80007bcc 0 Hitbox_CheckShieldBubbleCollision
80007ecc 00000190 80007ecc 0 Hitbox_Grab_CollisionWithHurtboxCheck
800083c4 00000064 800083c4 0 Hurtbox_Update
80008428 0000000c 80008428 0 Hitbox_Deactivate
80008434 0000000c 80008434 0 Hitbox_Activate
80009f54 000000f0 80009f54 0 CollisionBubbles_DisplayHitboxes
8000a244 0000021c 8000a244 0 CollisionBubbles_DisplayHurtboxes
8000a584 00000208 8000a584 0 CollisionBubbles_DisplayInvincIntang
8000acfc 00000090 8000acfc 0 Hitbox_HurtbubbleCollision_CheckPreviousHitPlayers
8000ae58 00000038 8000ae58 0 IsLanguageJP
8000ae90 00000038 8000ae90 0 IsLanguageUS
8000b1cc 00000330 8000b1cc 0 HSD_JObjTransform
8000b804 000001d4 8000b804 0 DATfile_BoneStructure_Copy
8000c07c 0000006c 8000c07c 0 Ab_HUD_Unknown
8000c160 00000060 8000c160 0 Zero_AreaLength
8000c1c0 00000068 8000c1c0 0 HSD_JObjAddConstraintPos
8000c228 00000068 8000c228 0 HSD_JObjAddConstraintIK
8000c290 00000068 8000c290 0 HSD_JObjAddConstraintRot
8000c2f8 00000098 8000c2f8 0 HSD_JObjAddConstraintPosRot
8000ce50 00000090 8000ce50 0 expf
8000d148 000001a4 8000d148 0 Player_CheckStickDirectionChanged
8000d5bc 00000064 8000d5bc 0 sqrt
8000d5bc 00000064 8000d5bc 0 sqrtf
8000e210 00000320 8000e210 0 HSD_CObjTransform
8000ecd4 00000138 8000ecd4 0 Ab_Unknown_CalledForEachPlayerOnMatchStart+End
8000f194 00000178 8000f194 0 Ab_Unk_Called1pfOnSomeDebugDisplayModes
80011a44 000000b0 80011a44 0 HSD_LObjLoadDescList
80011fcc 000001b0 80011fcc 0 HSD_JObjGetFromTreeByIndices
80013a94 0000009c 80013a94 0 Ab_Menu_TextDraw_General?
80013f94 000000e4 80013f94 0 ColorData_TurnOnColorFlagandCvtRGBtoFloat
800144f4 0000004c 800144f4 0 HSD_PadRumble
8001521c 00000084 8001521c 0 RAM_Allocation_TableUpdate
80015880 000002b8 80015880 0 HSD_ResetScene
80015b50 000000d8 80015b50 0 HSD_MemAllocFromHeap
80015c28 000000c4 80015c28 0 HSD_FreeToHeap
80016358 000000cc 80016358 0 File_GetLength
8001660c 000000d4 8001660c 0 File_Read
80016a70 000000f0 80016a70 0 HSD_ArchiveGetSymbols
80016b60 00000084 80016b60 0 HSD_ArchiveLoad
80016be4 00000158 80016be4 0 HSD_ArchiveLoadAndGetSymbols
80016d3c 00000140 80016d3c 0 HSD_ArchiveLoadAndTryGetSymbols
80016e7c 00000084 80016e7c 0 HSD_ArchiveFree
80017e3c 000002e0 80017e3c 0 Archive_GetPreloaded
8001811c 00000090 8001811c 0 File_GetPreloaded
80019228 000002b4 80019228 0 Ab_uk_RunsMultipleTimesAFrame
8001957c 0000002c 8001957c 0 PadFetchCallback
800195a8 00000258 800195a8 0 UpdatePadFetchRate
80019860 00000020 80019860 0 ButtonPresses_ConvertRawInput_Prefunction
80019c30 00000240 80019c30 0 MemoryCard_SaveData_CopyData?
8001a104 00000220 8001a104 0 SetupMemCard
8001a44c 000000c8 8001a44c 0 MemoryCard_FindFiles?
8001b9c4 00000104 8001b9c4 0 MemoryCard_DeleteGameData
8001bb98 0000011c 8001bb98 0 MemoryCard_CreateData
8001bcb4 000000fc 8001bcb4 0 MemoryCard_LoadData
8001bdb0 000000d4 8001bdb0 0 MemoryCard_SaveGameData
8001c258 0000012c 8001c258 0 Startup_CheckForPikminData?
8001c4d0 00000054 8001c4d0 0 InitCardBuffers
8001ca74 000000b8 8001ca74 0 UpdateMemCardState
8001cb2c 00000010 8001cb2c 0 MemoryCard_SetSavingStateFlag_ArgEqual4ForNO
8001cb3c 00000074 8001cb3c 0 MemoryCard_DoLoadData
8001cbcc 00000038 8001cbcc 0 MemoryCard_DeleteGameData_HandleAllInputs
8001cc04 00000130 8001cc04 0 MemoryCard_CheckToSaveData
8001cd80 00000078 8001cd80 0 MemoryCard_RequestSave
8001cdf8 00000048 8001cdf8 0 GetNextSceneMajorCallback
8001ce40 00000024 8001ce40 0 Ab_Unknown_MenuScene_EveryFrame_2
8001ce64 00000034 8001ce64 0 Ab_Unknown_MenuScene_EveryFrame
8001ce98 0000024c 8001ce98 0 Ab_Unknown_OnLoadScene
8001d0e4 00000090 8001d0e4 0 MemoryCard_LoadBannerIconImagesToRAM
8001d174 00000028 8001d174 0 Ab_Unknown_OnSceneTransition
8001d23c 0000007c 8001d23c 0 Ab_Unknown_EveryFrame
8001deec 000000ec 8001deec 0 CameraMode_ScreenshotSave
8001e184 0000000c 8001e184 0 MemoryCard_0x3E840_LoadConstant
8001e190 00000008 8001e190 0 MemoryCard_0x840_LoadConstant
8001ea94 000000dc 8001ea94 0 MoviePlayer_Load
80021998 000000ec 80021998 0 CreateScreenFlash
80022bb0 000000ec 80022bb0 0 atan2
80022bb0 000000ec 80022bb0 0 atan2f
80022c9c 000000a0 80022c9c 0 acos
80022c9c 000000a0 80022c9c 0 acosf
80022d3c 0000003c 80022d3c 0 asin
80022d3c 0000003c 80022d3c 0 asinf
80022d78 00000070 80022d78 0 nlRecipSqrt
80022de8 000001f4 80022de8 0 atan
80022de8 000001f4 80022de8 0 atanf
80023614 00000024 80023614 0 SFX_StopAll_Return_R3EqualTo1
8002365c 00000034 8002365c 0 Music_StopMusic
80023ea8 00000108 80023ea8 0 PlayBGM
80023fb0 00000084 80023fb0 0 Menu_PlaySFX
80024374 00000100 80024374 0 SFX_PlayAnnouncerSFX
80024fe4 00000034 80024fe4 0 Music&SFX_Toggle_DevelopMode
80026eac 00000100 80026eac 0 wP_Debug_StartMelee?
80028b1c 000003c0 80028b1c 0 CameraInfo_Init
8002950c 00000520 8002950c 0 Camera_GetBounds
8002a1f8 00000014 8002a1f8 0 Camera_0xA4&A8_Store
8002a42c 000002bc 8002a42c 0 CObj_UpdateFromCamera
8002b060 00000118 8002b060 0 Camera_CStickControl
8002c534 00000354 8002c534 0 Pause_Camera_Translation&More_PerFrame
8002ca8c 000002d0 8002ca8c 0 Pause_CameraThink
8002dd44 00000220 8002dd44 0 Camera_WriteValues
8002f3f4 00000014 8002f3f4 0 Camera_SetNormal
8002f454 00000268 8002f454 0 Camera_PauseScreenInitialize
8002f6bc 00000024 8002f6bc 0 Camera_PauseScreenInitializeBegin_R5EqualTo0
8002f6e0 00000024 8002f6e0 0 Camera_PauseScreenInitializeBegin_R5EqualTo1
8002f704 00000028 8002f704 0 Camera_Type_Training
8002f72c 00000148 8002f72c 0 Ab_Camera_BonusPointsZoom
8002f874 00000014 8002f874 0 CameraInfo_TypeFixedStore
8002ffec 00000084 8002ffec 0 DevelopMode_SetCameraType
80030070 0000001c 80030070 0 CameraType_StoreBackRegular_DevelopToggles
8003008c 00000024 8003008c 0 CameraType_CompareTo_0x5
800300b0 00000024 800300b0 0 CameraType_CompareTo_0x6
800300d4 00000024 800300d4 0 CameraType_CompareTo_0x7
800300f8 00000024 800300f8 0 CameraType_CompareTo_0x8
8003011c 00000034 8003011c 0 CameraType_0x7_P1CameraDataOffset_Load
800306c0 00000018 800306c0 0 CameraInfo_BGColorStore
800306d8 00000030 800306d8 0 CameraInfo_BGLoad_StoreToStack
80030708 00000024 80030708 0 CameraInfo_Tilt&Pan_idk
8003072c 00000024 8003072c 0 CameraInfo_Tilt&Pan_idk2
800309d0 00000010 800309d0 0 Camera_LoadCameraEntity
80030b3c 0000011c 80030b3c 0 WorldToScreen
80030c58 00000024 80030c58 0 CmSubject_WorldToScreen
80030d64 00000014 80030d64 0 Camera_X&YTranslation_Store
80030d78 00000018 80030d78 0 Camera_X&YTranslation_Store0
80030db4 00000010 80030db4 0 CameraInfo_0xAC_StoreF1
80030dc4 00000200 80030dc4 0 CameraInfo_ExecuteScreenRumble
800310c4 00000010 800310c4 0 CameraInfo_0x2BC_Load
8003114c 00000010 8003114c 0 Camera_StoreDistToBG
8003115c 00000010 8003115c 0 Camera_StoreZoom
80031710 000000b8 80031710 0 PlayerBlock_MakeCharUncontrollable
80031a50 000001e0 80031a50 0 SetupPlayerSlot
80032240 00000070 80032240 0 PlayerBlock_0x00_LoadCharID
800322b0 00000070 800322b0 0 PlayerBlock_0x04_CharIDInternalLoad
80032320 0000007c 80032320 0 PlayerBlock_0x04_CharIDInternalStore
8003239c 00000070 8003239c 0 PlayerBlock_GetSlotType
8003240c 000000c0 8003240c 0 PlayerBlock_0x08_LoadSlotType_DataOffset_0x221F_Check
800324cc 0000007c 800324cc 0 PlayerBlock_0x08_StoreR4toPlayerType
80032548 00000048 80032548 0 PlayerBlock_LoadInternalCharIDFromExternalOrFlag
80032590 000000bc 80032590 0 PlayerBlock_GetCharacterID
8003264c 0000009c 8003264c 0 PlayerBlock_0x10x14x18_LoadPlayerCoordsToR4
800326e8 000000c0 800326e8 0 PlayerBlock_0x10x14x18_StoreNametagCoords
800327a8 000000ac 800327a8 0 PlayerBlock_0x10x14x18_UpdateNametagCoords
80032854 00000130 80032854 0 PlayerBlock_0x10x14x18_ResetNametagCoords
80032b30 00000088 80032b30 0 PlayerBlock_LoadModelScaleForPosition?
80032bb8 000000b8 80032bb8 0 PlayerBlock_StorePosRelativeToModelScale?
80032c70 00000090 80032c70 0 PlayerBlock_0x28x2Cx30_LoadSpawnPlatformFinalPos
80032d00 00000090 80032d00 0 PlayerBlock_0x28x2Cx30_StoreSpawnPlatformFinalPos
80032d90 00000090 80032d90 0 PlayerBlock_0x34x38x3C_Load
80032e20 00000090 80032e20 0 PlayerBlock_0x34x38x3C_Store
80032eb0 00000074 80032eb0 0 PlayerBlock_0x4E_Load
80032f24 00000080 80032f24 0 PlayerBlock_0x4E_Store
80032fa4 00000070 80032fa4 0 PlayerBlock_0x40_LoadFacingDirection
80033014 0000007c 80033014 0 PlayerBlock_0x40_StoreFacingDirectionAgain
80033090 00000088 80033090 0 PlayerBlock_0x40_StoreFacingDirection_GrThanZero
80033118 00000070 80033118 0 PlayerBlock_0x44_LoadCostumeID
80033188 0000007c 80033188 0 PlayerBlock_0x44_StoreCostumeID
80033204 00000070 80033204 0 PlayerBlock_0x46_LoadSubcolor
80033274 0000007c 80033274 0 PlayerBlock_0x46_StoreSubcolor
800332f0 00000070 800332f0 0 PlayerBlock_GetTeam
80033360 0000007c 80033360 0 PlayerBlock_0x47_StoreTeamID
800333dc 00000070 800333dc 0 PlayerBlock_GetPort
8003344c 0000007c 8003344c 0 PlayerBlock_SetPort
800334c8 00000070 800334c8 0 PlayerBlock_0x49_LoadCPULevel
80033538 000000b8 80033538 0 PlayerBlock_0x49_StoreCPULevel
800335f0 00000070 800335f0 0 PlayerBlock_0x4A_LoadCPUType
80033660 000000b8 80033660 0 PlayerBlock_0x4A_StoreCPUType
80033718 00000070 80033718 0 PlayerBlock_0x4B_LoadHandicapValue
80033788 0000007c 80033788 0 PlayerBlock_0x4B_StoreHandicapValue
80033804 00000070 80033804 0 PlayerBlock_0x50_Load
80033874 00000070 80033874 0 PlayerBlock_0x54_LoadAttackRatio
800338e4 0000007c 800338e4 0 PlayerBlock_0x54_StoreAttackRatio
80033960 00000070 80033960 0 PlayerBlock_0x58_LoadDefenseRatio
800339d0 0000007c 800339d0 0 PlayerBlock_0x58_StoreDefenseRatio
80033a4c 00000070 80033a4c 0 PlayerBlock_0x5C_LoadModelScale
80033abc 0000007c 80033abc 0 PlayerBlock_0x5C_StoreModelScale
80033b58 00000074 80033b58 0 PlayerBlock_0x8E_Stocks_LoadRemaining
80033bcc 00000014 80033bcc 0 PlayerBlock_0x8E_Stocks_LoadPlayer1
80033be0 00000080 80033be0 0 PlayerBlock_0x8E_Stocks_StoreR4
80033c60 00000080 80033c60 0 PlayerBlock_0x8E_Stocks_SubtractOne
80033ce0 00000070 80033ce0 0 PlayerBlock_0x90_LoadCurrentCoins
800324cc 0000007c 800324cc 0 PlayerBlock_0x90_StoreCurrentCoins
80034090 0000007c 80034090 0 PlayerBlock_GetGObj
8003410c 0000008c 8003410c 0 PlayerBlock_GetSubCharGObj
80034234 0000007c 80034234 0 PlayerBlock_0x60_LoadDamage
80034398 0000009c 80034398 0 PlayerBlock_0x60_StoreDamage
80034434 00000070 80034434 0 PlayerBlock_0x64_Load
800344a4 00000080 800344a4 0 PlayerBlock_0x64_Store
80034524 00000090 80034524 0 PlayerBlock_0x64_Unk
800345b4 00000074 800345b4 0 PlayerBlock_0xAD_Stamina_LoadDisplayBool
80034628 00000084 80034628 0 PlayerBlock_0xAD_Load_00000001
800346ac 00000074 800346ac 0 PlayerBlock_0xAD_Load_00000010
80034720 00000084 80034720 0 PlayerBlock_0xAD_Shift27
800347a4 00000084 800347a4 0 PlayerBlock_0xAD_Shift28
80034828 00000074 80034828 0 PlayerBlock_0xAD_Load_00000008
8003489c 00000074 8003489c 0 PlayerBlock_0xAD_Load_00000004
80034910 00000084 80034910 0 PlayerBlock_0xAD_Shift29
80034994 00000074 80034994 0 PlayerBlock_0xAD_Load_00000003
80034a08 00000084 80034a08 0 PlayerBlock_0xAD_Shift_00000003
80034a8c 00000074 80034a8c 0 PlayerBlock_0xAE_Load_00000080
80034b00 00000084 80034b00 0 PlayerBlock_0xAE_Shift24
80034b84 000000a0 80034b84 0 PlayerBlock_0x60_Unk
80034c24 000000d4 80034c24 0 PlayerBlock_0x68_Unk
80034cf8 0000008c 80034cf8 0 PlayerBlock_0x68_LoadFalls
80034d84 00000088 80034d84 0 PlayerBlock_0x68_StoreFalls
80034e0c 00000098 80034e0c 0 PlayerBlock_0x68_Unk2
80034ea4 00000084 80034ea4 0 PlayerBlock_0x70_LoadKillCount
80034f28 0000016c 80034f28 0 PlayerBlock_0x70_StoreKillCount
80035094 00000070 80035094 0 PlayerBlock_0x88_Load
80035104 00000098 80035104 0 PlayerBlock_0x88_StoreMatchFrameCount
80035208 00000094 80035208 0 PlayerBlock_0x8C_StoreSuicides
8003529c 0000009c 8003529c 0 PlayerBlock_0x8C_DeathRelated
80035338 00000090 80035338 0 PlayerBlock_0xAC_RumbleFlag_LoadAgain
800353c8 0000009c 800353c8 0 PlayerBlock_0xAC_RumbleFlag_Load
80035464 00000084 80035464 0 PlayerBlock_0xAC_Shift
800354e8 00000074 800354e8 0 PlayerBlock_0xA8_LoadNameTagSlot
8003555c 0000007c 8003555c 0 PlayerBlock_0xA8_StoreNameTagSlot
800355d8 00000074 800355d8 0 PlayerBlock_0xAC_LoadMultiSpawnFlag
8003564c 0000007c 8003564c 0 PlayerBlock_0xAC_ShiftStore1
800356c8 0000007c 800356c8 0 PlayerBlock_0xAC_ShiftStore0
80035744 00000074 80035744 0 PlayerBlock_0xAC_MatchEntryActionState_Load
800357b8 00000084 800357b8 0 PlayerBlock_0xAC_Shift_00000001
8003583c 00000074 8003583c 0 PlayerBlock_0xAC_Shift_00000008
80035aa0 00000074 80035aa0 0 PlayerBlock_0xAC_Load_00000001
80035b98 00000074 80035b98 0 PlayerBlock_0xAD_Load_00000080
80035c0c 00000074 80035c0c 0 PlayerBlock_0xAD_Load_00000040
80035c80 00000084 80035c80 0 PlayerBlock_0xAD_MakeContain01
80035d04 00000070 80035d04 0 PlayerBlock_0x4D_Load
80035d74 0000007c 80035d74 0 PlayerBlock_0x4D_Store
80035df0 00000074 80035df0 0 PlayerBlock_0xAE_Load_00000040
80035e64 00000084 80035e64 0 PlayerBlock_0xAE_Shift25
80035ee8 00000070 80035ee8 0 PlayerBlock_0x4C_Load
80035f58 0000007c 80035f58 0 PlayerBlock_0x4C_Store
80035fd4 00000080 80035fd4 0 PlayerBlock_ShouldDisplayPortTag
80036054 00000080 80036054 0 PlayerBlock_0xB0_Unk
800360d4 0000007c 800360d4 0 PlayerBlock_0xB8_Store
80036150 00000070 80036150 0 PlayerBlock_GetStats
800361c0 00000070 800361c0 0 PlayerBlock_0xBC_GoToStaleMoveEntry
80036230 00000070 80036230 0 PlayerBlock_GoTo_+0x6A8
800362a0 00000070 800362a0 0 PlayerBlock_0xBC_GoToStaleMoveListStart
80036310 00000094 80036310 0 PlayerBlock_LoadSubplayerInternalID
800363a4 00000094 800363a4 0 PlayerBlock_LoadPlayerWhoLastDamagedThisPlayer
80036438 0000007c 80036438 0 PlayerBlock_0x45_StoreControllerIndex
800364b4 00000084 800364b4 0 PlayerBlock_0x45_CheckTypeThenLoadControllerIndex
80036538 00000094 80036538 0 PlayerBlock_0xA0_IncrementJoystickSmashes
800370e4 000000a0 800370e4 0 Death_DamageStaleClear
800371a8 000001a0 800371a8 0 Ab_Stale_Moves
80037e20 00000034 80037e20 0 PlayerBlock_0x1A8_MeteorAttackCounter_Increment
800385fc 00000010 800385fc 0 PlayerBlockStats_GetActionStat
8003d5bc 00000900 8003d5bc 0 Ab_Death_GiantUnknownDeathFunc
8003deb8 000000b0 8003deb8 0 Death_DoSomething
8003ec10 00000070 8003ec10 0 PlayerBlock_0xC60xC64_DamageTakenAndPeakDamageUpdate
8004012c 00000080 8004012c 0 PlayerBlock_AddTotalSDIDistance
800401ac 00000060 800401ac 0 PlayerBlock_0xCE4_150+Knockback_CheckforCounter
80041e20 00000194 80041e20 0 InitPhys
80042cec 000004b8 80042cec 0 ECB_Update
800435ac 00000010 800435ac 0 dGeomEnable
80043690 000002a8 80043690 0 Physics_Move
8004771c 00000114 8004771c 0 Physics_Collision_Air_StayAirborne
80047d50 0000012c 80047d50 0 ECB_CheckorSomething
8004b044 00000114 8004b044 0 Physics_Collision_Grounded
8004cafc 00000028 8004cafc 0 Physics_IsOnPlatform
800523b8 0000002c 800523b8 0 Ab_Unknown_CalledOnSamusZair
80054bc8 0000007c 80054bc8 0 StageFile_GroundIDTypeLoad
80055d78 00000740 80055d78 0 Stages_MovingCollisionPointsIngame
80056634 00000068 80056634 0 CollisionPoint_Extend
8005669c 0000022c 8005669c 0 Collision_GetLineSpeed
80058fd0 00000310 80058fd0 0 ECBQuads_red&blueSquares_Draw
80059d3c 00000180 80059d3c 0 CollisionLink_Draw
8005a1b8 00000064 8005a1b8 0 CameraInfo_ECB&CollLinks_Draw
8005a21c 000003b8 8005a21c 0 Blastzone&CameraLimits_Draw
8005c090 00000108 8005c090 0 Ab_gfx_AllButMusicFreezeOnBLR
8005fcb8 00001f94 8005fcb8 0 Textures_DisplayEffectTextures
800675cc 00000290 800675cc 0 GFX_Spawn_Actually
80067998 000000f8 80067998 0 LoadPlCo
80067b74 000006bc 80067b74 0 DataOffset_InitializeDataEntryAndDeath
80068730 000000c0 80068730 0 DataOffset_SetButtonTimersTo0xFF
800687f0 0000052c 800687f0 0 Player_InitializeFromInfo
80068d1c 00000024 80068d1c 0 Add1toSpawnNumberTotal
80068d40 00000034 80068d40 0 StageInfo_FlatzoneCheck_ModifyCharWidth
80068d74 00000514 80068d74 0 AllocateAndInitPlayer
80069288 00000e10 80069288 0 Player_ASChange
8006a208 00000840 8006a208 0 PlayerThinkAgain
8006aa48 0000004c 8006aa48 0 HumanOrCPUCheck
8006aa94 00000124 8006aa94 0 Player_UpdateActionInputTimers
8006abb8 00000b1c 8006abb8 0 PlayerThink_Input
8006b6d4 000008c4 8006b6d4 0 PlayerThink_Physics
8006c904 00000138 8006c904 0 PlayerThink
8006ca3c 0000009c 8006ca3c 0 Player_CollisionLogicFunctions
8006cad4 0000004c 8006cad4 0 Damage_ApplyDamage&CoinDropCheck
8006cb20 00000128 8006cb20 0 Damage_Apply&UpdateOnscreenPercent
8006cc48 000001b8 8006cc48 0 Damage_DropItemCheck
8006ce00 00000060 8006ce00 0 Heal_Percent&GFX_r4EqualToIntegerAmtToHeal
8006ea48 00000044 8006ea48 0 AS_AnimationFrameUpdate&More
8006ed78 00000044 8006ed78 0 Player_SetBoneAnimFrameAndRate
8006f034 000000a8 8006f034 0 FrameSpeedChange_Landing
8006f0dc 00000130 8006f0dc 0 FrameTimerCheck
80070dcc 0000008c 80070dcc 0 Animation_SomethingDuringActionStatechange
80277ba0 000001b4 80277ba0 0 SubactionEvent_0x28_GFXSpawn
800710a8 000003d0 800710a8 0 SubactionEvent_0x2C_HitboxMelee_StoreInfoToDataOffset
80071478 00000040 80071478 0 HitboxData_GoToEnd
80071664 00000038 80071664 0 SubactionEvent_0x40_HitboxRemove
800dea38 00000024 800dea38 0 SubactionEvent_IASAEnable
80071928 0000004c 80071928 0 SubactionEvent_0x70_ChangeHurtBubbleBodyState
80071bcc 00000054 80071bcc 0 SubactionEvent_0x7C_CharacterObjectModifiers
800728e8 00000050 800728e8 0 SubactionEvent_0xB8_BodyAura
80072a80 00000068 80072a80 0 SubactionEvent_0xCC_DamageSelf
80072cd8 00000194 80072cd8 0 SubactionEvent_0xDC_GFX&SFX
80072e94 00000094 80072e94 0 SubactionEvent_0xE0_SmashAttackHold
800730cc 00000114 800730cc 0 AnimationFrameUpdate&ScriptTimers
80074918 00000040 80074918 0 CharacterObjectFlagModify
80076054 0000012c 80076054 0 Ab_Camera_?_NormalBehaviorMode?
8007624c 00000084 8007624c 0 DataOffset_ComboCount_Logic
80076368 0000004c 80076368 0 DataOffset_ComboCount_LeaveHitstunCheckForOpponent
800763b4 00000084 800763b4 0 DataOffset_ComboCount_TopNAttackerModify
80076cd4 0000058c 80076cd4 0 Player_MeleeDamage
8007799c 00000724 8007799c 0 Items_GetTouchableItem
80078758 00000244 80078758 0 Hitbox_GrabAttackLogic
8007899c 000005ec 8007899c 0 Hitbox_MeleeAttackLogic
80078f88 00000854 80078f88 0 Player_ItemHitDetection
800797cc 000001c0 800797cc 0 Damage_KnockbackCalculate
8007a8ec 00000098 8007a8ec 0 Hitbox_ApplyDamageStalingAndMore
8007a984 00000034 8007a984 0 Hitbox_MeteorAttackCheck
8007a9b8 0000007c 8007a9b8 0 Hitbox_MeteorAttackCheck_SetFlag
8007ace4 00000030 8007ace4 0 Hitbox_Deactivate_R4input
8007ad14 0000006c 8007ad14 0 Hitbox_Deactivate_All
8007addc 00000068 8007addc 0 Player_SetHurtboxBodyState
8007b348 00000074 8007b348 0 BodyState_Apply&ColorGFXOverlay
8007b4c0 00000058 8007b4c0 0 BodyState_ApplyInvincIntang
8007b518 0000006c 8007b518 0 Item_Starman_Apply
8007b640 000000e8 8007b640 0 Player_GetWindPush
8007be78 00000068 8007be78 0 Items_HammerCheck_RunFunc
8007c4e0 000001b4 8007c4e0 0 fk_CoinGet?
8007cfcc 00000024 8007cfcc 0 VelocityX_GetForUpdateCalc
8007cff0 0000005c 8007cff0 0 VelocityX_Calculate
8007d248 00000010 8007d248 0 Fastfall_StoreVelocity
8007d28c 00000094 8007d28c 0 Interrupt_Fastfall_CheckToExecute
8007d320 00000018 8007d320 0 DataOffset_ECBBottomUpdateEnable
8007d338 00000038 8007d338 0 Air_StoreBool_LoseGroundJump_NoECBfor10Frames
8007d370 0000008c 8007d370 0 Air_StoreBool_LoseAllJumps_NoECBfor5Frames_NoXVeloc
8007d3fc 0000000c 8007d3fc 0 Jumps_UseUpAllJumps
8007d560 0000008c 8007d560 0 Player_AirToGroundTransition
8007d690 00000038 8007d690 0 AS_FallorWait_CheckAirStateFlag
8007d6c8 00000038 8007d6c8 0 Joystick_Angle_Retrieve_AbsX
8007d700 00000038 8007d700 0 Player_GetCStickAngleAbsX
8007d738 00000028 8007d738 0 Player_GetAirdodgeAngle
8007d760 00000028 8007d760 0 FacingDirection_Change_FromJoystickAxis
8007d7d8 000000b0 8007d7d8 0 Damage_HitlagCalculate
8007d8bc 00000074 8007d8bc 0 Ab_Hitlag
8007dae0 00000254 8007dae0 0 Physics_NudgePlayers
8007e058 00000008 8007e058 0 DataOffset_0x1A6A_Store
8007e440 000000c0 8007e440 0 Item_DropItem_OnPlayerDamageatleast
8007e6f8 000000fc 8007e6f8 0 Item_Parasol_SpecialStuff
8007e7f4 0000011c 8007e7f4 0 Damage_CoinModeCheck&RemoveCoins
8007ed24 00000008 8007ed24 0 DataOffset_0x209A_StoreR4half
8007ed2c 000005b0 8007ed2c 0 Sheik&Zelda_Transform_CopyInfoAndSleep
8007f54c 00000020 8007f54c 0 DataOffset_ZScale_Compareto1
8007f56c 00000048 8007f56c 0 CharacterSpecificFunction_??_GoTo
8007f630 00000060 8007f630 0 Item_BunnyHood_Remove
8007f7a0 00000224 8007f7a0 0 Item_BunnyHood_Apply
8007fe74 00000030 8007fe74 0 DataOffset_CheckForNanaOrPopo_IsCostumeID2+
80080190 00000014 80080190 0 DataOffset_StaminaKnockbackEnable
8008021c 00000010 8008021c 0 DataOffset_PlayerScale_MultiplyBySomething
8008022c 00000020 8008022c 0 DataOffset_SlotWhoLastDamaged_MakeSelfIfOnGround
800802f8 00000660 800802f8 0 PlayerDisplayState_Draw_Logic
800dade4 00000300 800dade4 0 Player_RenderCallback
80080ff0 000000d8 80080ff0 0 Interrupt_CliffCatch
800810c8 00000194 800810c8 0 AS_252_CliffCatch
8008125c 0000003c 8008125c 0 AS_253_CliffWait_TimertoEnter
800813f4 0000029c 800813f4 0 Interrupt_Walljump
80081a64 0000029c 80081a64 0 Player_CollisionAir
80081b2c 00000158 80081b2c 0 Damage_CheckIfHittingGround
80081ffc 000000f8 80081ffc 0 CliffCatch_ChecktoEnter_CheckRegrabDisableByte
80082460 00000098 80082460 0 Physics_Player_CopyCurrFrameToPrev
80082b94 000000ec 80082b94 0 Physics_CheckIfPlayerAlreadyOnLedge
80084244 000000c8 80084244 0 DataOffset_Phys_t_Update
80084b08 0000006c 80084b08 0 Fastfall_CheckIfFastFallingandUpdateVelocity
80085db8 00000064 80085db8 0 Nana_IfNana_LoadPopoInternalCharOffset
80085e1c 00000024 80085e1c 0 CountPlayers
80086318 0000000c 80086318 0 DataOffset_FacingDirectionLoad
80086324 0000000c 80086324 0 DataOffset_Ground&AirStateLoad
8008639c 00000020 8008639c 0 DataOffset_TopN_StoreToStack
800863fc 00000038 800863fc 0 DataOffset_ModelScaleStore_0x38
80086434 00000048 80086434 0 Camera_PassPlayerBones
8008647c 00000040 8008647c 0 Items_RemoveItemFromPlayer
800864bc 00000030 800864bc 0 DataOffset_0x1984_Load_BLNonZero
800864ec 0000000c 800864ec 0 DataOffset_ItemHeldLoad
80086524 0000000c 80086524 0 DataOffset_0x1984_Load
800866b8 00000024 800866b8 0 EntityClass_PlayerCheck
800866dc 0000000c 800866dc 0 DataOffset_AddOffset_0x6F0
80086750 00000014 80086750 0 DataOffset_ModelScaleAttributeInitialize
80086764 0000000c 80086764 0 DataOffset_PlayerScaleLoad
800867a4 0000000c 800867a4 0 DataOffset_0x1958_Load
800868cc 0000000c 800868cc 0 DataOffset_0x0890_Load
80086938 0000000c 80086938 0 DataOffset_PortNumberLoad
80086944 00000020 80086944 0 DataOffset_CoordinateFrameDeltaLoad&StoreElsewhere
80086964 0000000c 80086964 0 DataOffset_ActionStateLoad
80086c0c 0000000c 80086c0c 0 DataOffset_TeamIDLoad
80086d00 0000002c 80086d00 0 BeamSwordSwing_ActionStateCheck
80086d2c 00000048 80086d2c 0 DataOffset_CheckIf2PlayersAreSame
80086d74 00000010 80086d74 0 DataOffset_221F_LoadFrozen&InvisibleBit
80086e14 00000034 80086e14 0 DataOffset_SubcolorLoad&Compare
80086e48 00000030 80086e48 0 DataOffset_Damage_MakeR4EqualToDamage
80086e78 00000020 80086e78 0 DataOffset_Damage_ConvertToInt
80086e98 00000068 80086e98 0 TrainingMode_ResetPlayer
80086f00 000000dc 80086f00 0 Item_MetalBox_Apply
80086fdc 00000020 80086fdc 0 AS_108_LightThrowF4_Check
80086ffc 0000000c 80086ffc 0 DataOffset_InternalCharacterIDLoad
80087008 0000000c 80087008 0 DataOffset_GoTo+0x20A4
80087058 0000000c 80087058 0 DataOffset_LoadPlayerWhoLastDamagedThisPlayer
80087074 00000010 80087074 0 DataOffset_0x221F_CheckIfFrozen&Invisible
80087084 00000028 80087084 0 DeathActionStateCheck?
800870ac 00000028 800870ac 0 DeathUpwardCheck
800870d4 00000028 800870d4 0 DeathStarUpwardCheck
800870fc 00000028 800870fc 0 DeadUpFallCheck
80087124 00000028 80087124 0 AS_Rebirth&RebirthWait_CheckIfInState
8008714c 00000028 8008714c 0 EntryOrEntryWaitASCheck
800871ac 0000000c 800871ac 0 cGame::GetGameTime
800871b8 0000000c 800871b8 0 DataOffset_GetSpawnNumber
80087214 00000010 80087214 0 DataOffset_0x221F_Contain00000008
80087570 00000020 80087570 0 DataOffset_CheckInstantButtonsEqualR4
80087ea0 00000090 80087ea0 0 Ab_Unknown_CalledEveryFewFramesOnCharMove
800887a8 0000020c 800887a8 0 Player_StopAllSFX
80088e70 00000110 80088e70 0 Damage_DamageStaleCalcMult
80088f80 00000078 80088f80 0 Damage_DamageStale
8008a014 00000068 8008a014 0 AS_014_Wait_PlayerCheck
8008a0a0 0000014c 8008a0a0 0 AS_014_Wait
8008a22c 00000170 8008a22c 0 Interrupt_AS_Wait
8008a3f0 00000040 8008a3f0 0 Items_CheckForItems_Something
8008a750 00000158 8008a750 0 Interrupt_Jab
8008a8dc 0000003c 8008a8dc 0 AS_044_Jab1_PreFunc_G&WCheck
8008a918 000000dc 8008a918 0 AS_044_Jab1
8008aa30 00000118 8008aa30 0 Interrupt_AS_Jab1
8008ab88 000000dc 8008ab88 0 AS_045_Jab2Again?
8008ac64 00000134 8008ac64 0 Interrupt_Jab2
8008add4 00000118 8008add4 0 Interrupt_AS_Jab2
8008aeec 000000b4 8008aeec 0 AS_046_Jab3
8008afa0 0000010c 8008afa0 0 Interrupt_Jab3
8008b0e8 00000054 8008b0e8 0 Interrupt_AS_Jab3
8008b22c 00000074 8008b22c 0 AS_050_AttackDash
8008b2dc 00000028 8008b2dc 0 Interrupt_Store3to_0x2340
8008b304 00000054 8008b304 0 Interrupt_AS_AttackDash
8008b3b0 00000130 8008b3b0 0 Interrupt_FTilt
8008b4e0 0000014c 8008b4e0 0 AS_053_056_FTilt
8008b6d8 000000b8 8008b6d8 0 Interrupt_UTilt
8008b790 00000060 8008b790 0 AS_056_UpTilt
8008b7f0 0000003c 8008b7f0 0 Ab_ASF_056_UpTilt_1
8008b82c 00000030 8008b82c 0 Interrupt_AS_AttackHi3_Utilt
8008b85c 00000020 8008b85c 0 Ab_ASF_056_UpTilt_3
8008b87c 00000020 8008b87c 0 Ab_ASF_056_UpTilt_4
8008b89c 000000bc 8008b89c 0 Interrupt_DTilt
8008b958 00000034 8008b958 0 Ab_AS_057_DownTilt
8008b98c 0000003c 8008b98c 0 AS_057_DTilt_Execute&G&WCheck
8008b9c8 0000008c 8008b9c8 0 AS_057_DownTilt
8008ba54 00000084 8008ba54 0 Ab_ASF_57_DownTilt4
8008bad8 00000204 8008bad8 0 Interrupt_AS_DTilt
8008bcdc 00000020 8008bcdc 0 Ab_ASF_57_DownTilt_2
8008bcfc 00000020 8008bcfc 0 Ab_ASF_57_DownTilt_3
8008bd1c 00000150 8008bd1c 0 Interrupt_FSmash
8008c588 00000118 8008c588 0 Interrupt_UpSmash
8008c6a0 000000f0 8008c6a0 0 Interrupt_UpSmash&LightThrowHi_FromKneebend
8008c790 00000060 8008c790 0 AS_063_UpSmash
8008c82c 00000030 8008c82c 0 Interrupt_AS_Wait_CheckIASAflagforEnabledFirst
8008c89c 00000118 8008c89c 0 Interrupt_DSmash
8008c9b4 00000060 8008c9b4 0 AS_064_DSmash
8008cac0 000000a4 8008cac0 0 Interrupt_AerialAttack_CheckAndExecute
8008ccc8 0000003c 8008ccc8 0 AS_065069_AerialAttacks_Prefunct_AttackDecide
8008cd04 00000064 8008cd04 0 AS_065069_AerialAttacks
8008cde4 00000108 8008cde4 0 Interrupt_AS_AttackAirN
8008ceec 00000108 8008ceec 0 Interrupt_AS_AttackAirF
8008cff4 00000108 8008cff4 0 Interrupt_AS_AttackAirB
8008d0fc 00000108 8008d0fc 0 Interrupt_AS_AttackAirHi
8008d204 00000108 8008d204 0 Interrupt_AS_AttackAirLw
8008d354 0000010c 8008d354 0 Controls_LCancel_Check
8008d548 000000e8 8008d548 0 Damage_CheckAttackAngle_f1OutEqualToAttackAngleRadians
8008d630 00000010 8008d630 0 MultiplyF1*0.4
8008d688 0000011c 8008d688 0 Damage_KnockbackAdjust_CC,ChargingSmash,Metal
8008d7a4 000000c4 8008d7a4 0 Ab_Knockback+HitEffects_ForwardThrow?
8008d868 000000fc 8008d868 0 AttackElementSomething
8008d964 000000d4 8008d964 0 Damage_Velocity_StoreX&YAttack
8008da38 000007b8 8008da38 0 Player_EnterDamageState
8008e1f0 00000058 8008e1f0 0 Damage_CheckInAerialState&HitL&RLast2Frames&NoTechWindow
8008e248 000000b4 8008e248 0 Player_SDICallback
8008e2fc 00000170 8008e2fc 0 Damage_DI_Trajectory
8008e9e8 00000ab4 8008e9e8 0 Ab_Knockback+HitEffects
8008f690 0000010c 8008f690 0 Ab_RelatedToThrows?
8008faf0 000001b0 8008faf0 0 AnimationInterrupt_DamageFlyTop
8008fca0 0000003c 8008fca0 0 Interrupt_AS_DamageFlyTop
8008ff28 00000154 8008ff28 0 AnimationInterrupt_DamageFlyRoll
8009007c 00000038 8009007c 0 Interrupt_AS_DamageFlyRoll
800904d8 000000a4 800904d8 0 AS_038_DamageFall
80090580 00000114 80090580 0 Interrupt_AS_DamageFall
80090694 00000020 80090694 0 FastFall_CheckIfFastFallingandUpdateVelocity_Prefunction3
800908b8 000004d0 800908b8 0 AS_325_DamageIce
80090d88 00000244 80090d88 0 AS_325_DamageIce_Again
80091784 00000020 80091784 0 Interrupt_Check
80091ab0 00000120 80091ab0 0 Player_UpdateShieldScale
800921a8 00000070 800921a8 0 Player_InitShield
80092218 000000e4 80092218 0 AS_178_GuardOn
800922fc 00000138 800922fc 0 Player_UpdateShieldHealth
800924b0 00000118 800924b0 0 Interrupt_AS_GuardOn
800927d0 000000f8 800927d0 0 Interrupt_AS_Guard
80092924 0000001c 80092924 0 DataOffset_PressingL&R_ThisFrame_SetFlag
800929ac 00000058 800929ac 0 AS_180_GuardOff
80092ba8 00000088 80092ba8 0 Player_ShieldHitCallback
80092c84 00000314 80092c84 0 AS_181_GuardSetOff
80092f98 0000009c 80092f98 0 Player_ShieldSDICallback
800930ac 000002d0 800930ac 0 AS_179&180_Guard&GuardOff_AfterShieldStun
800933ec 00000078 800933ec 0 Interrupt_GuardReflect_ADT
800935a8 0000003c 800935a8 0 AS_182_GuardReflect_ADT_YoshiCheck
800935e4 00000128 800935e4 0 AS_182_GuardReflect_ADT
80093708 0000009c 80093708 0 AS_182_GuardReflect_YoshiCheck
800937a4 00000170 800937a4 0 AS_182_GuardReflect
80093a24 000001f0 80093a24 0 AS_179_Guard
80093c14 0000017c 80093c14 0 Interrupt_AS_GuardReflect
80093ff4 000001dc 80093ff4 0 Items_CheckForItems
800941d0 00000218 800941d0 0 Items_ApplyInstantItem
800944e4 00000088 800944e4 0 Items_Something?
800945fc 0000016c 800945fc 0 Items_GiveItemToPlayer
80094768 0000010c 80094768 0 Items_PickupCall
80094ba8 00000050 80094ba8 0 Interrupt_Item_CheckInstantAForThrow
8009507c 00000314 8009507c 0 Interrupt_ItemCheckForSomething
80095650 00000134 80095650 0 Ab_Unknown_ThrowItem_Heavy?
80095784 0000032c 80095784 0 Ab_AS_?_ItemThrow
80095ab0 00000124 80095ab0 0 Ab_AS_?_ThrowItem_ReleaseItem?
80095bd4 0000007c 80095bd4 0 Item_Unknown_ThowItem?
80095c50 00000224 80095c50 0 Ab_AS_?_ThrowItem
80095e78 00000020 80095e78 0 Item_Unknown_ThrowScrewAttack?_2
80095f04 00000020 80095f04 0 Ab_ASF_?_ThrowItem_Air?
80095f7c 00000028 80095f7c 0 Item_Unknown_ThrowItem_Ground?
800960a0 00000028 800960a0 0 Ab_ASF_?_ThrowItemAir?
800960c8 000000fc 800960c8 0 Ab_AS_?_ThrowItem_AirToGround?
800961c4 00000028 800961c4 0 Ab_AS_?_ThrowItem?_Heavy
80096250 00000044 80096250 0 Player_CheckSideBInput
80096294 0000009c 80096294 0 Interrupt_SideB_Grounded
80096330 00000080 80096330 0 Ab_Unknown_Samus_GroundMissile?
800963b0 0000026c 800963b0 0 Interrupt_BbuttonInstant&Battacks
8009661c 00000038 8009661c 0 Ab_AS_035_FallSpecialSamusAfterTether
80096654 000000d8 80096654 0 AS_035_FallSpecial
8009672c 000000c8 8009672c 0 Ab_AS_Unknown
800967f4 00000054 800967f4 0 Ab_AS_SpecialFall_3
80096848 00000050 80096848 0 Interrupt_AS_SpecialFall
80096898 00000154 80096898 0 Ab_AS_SpecialFall_1
800969ec 00000030 800969ec 0 Ab_AS_SpecialFall_2
80096a1c 00000060 80096a1c 0 Ab_Unknown_CalledMultipleTimesPerFrame
80096a7c 00000074 80096a7c 0 Ab_Unknown_CalledOnLandFromSpecialFall
80096af0 00000058 80096af0 0 Ab_AS_CarryHeavyObject?
80096b4c 00000050 80096b4c 0 Ab_AS_CarryHeavyObject?_1
80096b9c 00000020 80096b9c 0 Ab_AS_CarryHeavyObject?_3
80096c24 00000028 80096c24 0 Ab_AS_CarryHeavyObject?_4
80096c4c 00000050 80096c4c 0 Ab_uk_CalledOnThrowPartyBall
80096c9c 00000088 80096c9c 0 Item_CarryHeavy_Walk?
80096d24 000000a4 80096d24 0 Item_ThrowCrate?_3
80096dc8 00000024 80096dc8 0 Item_ThrowCrate?_4
80096dec 00000020 80096dec 0 Item_ThrowCrate?_1
80096e0c 00000028 80096e0c 0 Item_ThrowCrate?_2
80096e34 00000050 80096e34 0 Ab_AS_CarryHeavyObject?_2
80096e84 00000080 80096e84 0 Ab_AS_CarryHeavyObject?_3_Turn?
80096f04 000002a8 80096f04 0 AS_174_LiftWait
800971ac 00000024 800971ac 0 Ab_AS_174_LiftWait_3
800971d0 00000020 800971d0 0 Ab_AS_174_LiftWait_1
800971f0 00000028 800971f0 0 Ab_AS_174_LiftWait_2
80097218 00000048 80097218 0 Item_DropHeavyOnHit?
80097260 00000064 80097260 0 Ab_Knockback+HitEffects_Grab?
800972c4 000000c0 800972c4 0 Player_IsKnockdownFaceUp
80097384 00000074 80097384 0 Ab_AS_?_HitWall?
800973f8 00000230 800973f8 0 Ab_AS_183&191_DownBoundU&D_NoTech_3
80097628 00000078 80097628 0 Ab_DownBound_ShieldBreak_CannotTech?
800976a0 000001a8 800976a0 0 AS_183&191_DownBoundU&D_FailtoTech_Again?
80097848 0000024c 80097848 0 AS_183&191_DownBoundU&D_FailtoTech
80097a94 00000048 80097a94 0 Ab_AS_183&191_DownBoundU&D_NoTech_1
80097adc 00000038 80097adc 0 Ab_AnimationInterrupt_DownBoundU&D_HitWall?
80097b14 0000005c 80097b14 0 AnimationInterrupt_DownBoundU&D
80097b74 00000020 80097b74 0 Ab_AnimationIntterupt_DownBoundU&D_1
80097b94 0000004c 80097b94 0 Ab_AnimationInterrupr_DownBoundU&D_2
80097be0 000000ac 80097be0 0 AS_184&192_DownWaitU&D
80097c8c 00000088 80097c8c 0 Ab_AS_?_DownStand?
80097d14 0000006c 80097d14 0 Ab_AS_DownWaitU&D_3
80097d80 00000050 80097d80 0 Interrupt_AS_DownWaitU&D
80097dd0 00000020 80097dd0 0 Interrupt_AS_DownWaitU&D_1
80097df0 00000020 80097df0 0 Interrupt_AS_DownWaitU&D_2
80097e10 000000a4 80097e10 0 Interrupt_DownStandU&D
80097eb4 00000034 80097eb4 0 ASF_DownStand_JabReset?
80097ee8 0000003c 80097ee8 0 ASF_DownStand_JabReset?_3
80097f28 00000020 80097f28 0 ASF_DownStand_JabReset?_1
80097f48 00000020 80097f48 0 ASF_DownStand_JabReset?_2
80097f68 00000110 80097f68 0 Interrupt_DownBack&ForwardU&D
80098078 0000005c 80098078 0 AS_?_DownRollRight?
800980d4 0000003c 800980d4 0 AS_?_DownRollRight?_3
80098114 00000020 80098114 0 AS_?_DownRollRight?_1
80098134 00000020 80098134 0 AS_?_DownRollRight?_2
80098154 000000d4 80098154 0 Interrupt_DownAttackU&D_FromDownBound
80098228 00000098 80098228 0 Interrupt_DownAttackU&D_FromDownBoundWait
800982c0 00000048 800982c0 0 AS_187&195_DownAttackU&D_GetupAttack
80098308 0000003c 80098308 0 Ab_AS_187&195_DownAttackU&D_GetupAttack_1
80098348 00000020 80098348 0 Ab_AS_187&195_DownAttackU&D_GetupAttack_2
80098368 00000020 80098368 0 Ab_AS_187&195_DownAttackU&D_GetupAttack_3
80098388 0000007c 80098388 0 Ab_AS_ShootLaser?
80098404 0000007c 80098404 0 Tech_L&RCheck&FrameWindowCheck
80098480 000000a4 80098480 0 Interrupt_NeutralTech
80098524 000000d8 80098524 0 AS_199_Passive_NeutralTech
8009867c 000000ac 8009867c 0 Interrupt_TechRollF&B
80098728 000000cc 80098728 0 AS_200&201_PassiveStandF&B_TechRollF&B
80098874 000000f4 80098874 0 AS_205_ShieldBreakFly
80098968 0000003c 80098968 0 Ab_AS_205_ShieldBreakFly_1
800989a8 00000020 800989a8 0 ac_AS_205_ShieldBreakFly_2
800989c8 00000028 800989c8 0 ac_AS_205_ShieldBreakFly_3
80098ae4 0000005c 80098ae4 0 ac_AS_205_ShieldBreakFly__NoGroundHit
80098b48 00000020 80098b48 0 ac_AS_205_ShieldBreakFly_NGH_1
80098b68 00000028 80098b68 0 ac_AS_205_ShieldBreakFly_NGH_2
80098b90 00000080 80098b90 0 AS_207&208_ShieldBreakDownU&D
80098ce4 0000003c 80098ce4 0 ac_AS_207&208_ShieldBreakDown_1
80098c90 00000054 80098c90 0 Ab_AS_209?_ShieldBreakStand?
80098ce4 0000003c 80098ce4 0 Ab_AS_209?_ShieldBreakStand_1
80098d24 00000020 80098d24 0 Ab_AS_209?_ShieldBreakStand_2
80098d44 00000020 80098d44 0 Ab_AS_209?_ShieldBreakStand_3
80098d64 000000a8 80098d64 0 AS_211_ShieldBreak
80098e0c 00000080 80098e0c 0 Ab_AS_211_ShieldBreak_1
801b93b8 00000020 801b93b8 0 Ab_AS_211_ShieldBreak_2
80098ed0 000000e8 80098ed0 0 Interrupt_Roll
80098fb8 00000044 80098fb8 0 Interrupt_Roll_OnlyCheckForL&R
80098ffc 0000006c 80098ffc 0 AS_233&234_RollPlayerCheck
80099068 0000007c 80099068 0 AS_233&234_RollExecute
800990e4 000000a8 800990e4 0 AS_233&234_RollSamus
8009918c 000000a0 8009918c 0 AS_233&234_RollYoshi
8009922c 0000008c 8009922c 0 Ab_AS_233&234_Roll_3
80099398 000000ac 80099398 0 Ab_AS_YoshiRoll_LeaveEggAndUpdatePos?
80099444 00000024 80099444 0 Ab_AS_233&234_Roll_4
80099468 00000020 80099468 0 Ab_AS_233&234_Roll_1
80099488 00000020 80099488 0 Ab_AS_233&234_Roll_2
800994e8 00000078 800994e8 0 Interrupt_SpotDodge
80099560 00000088 80099560 0 Interrupt_SpotDodge_OoS
800995e8 00000058 800995e8 0 AS_235_SpotDodge_YoshiCheck
80099640 00000068 80099640 0 AS_235_SpotDodge
800996a8 00000084 800996a8 0 AS_235_SpotDodgeYoshi
8009972c 0000003c 8009972c 0 ac_AS_235_SpotDodge_3
8009976c 00000020 8009976c 0 Ab_AS_235_SpotDodge_1
8009978c 00000020 8009978c 0 ac_AS_235_SpotDodge_2
800997ac 00000044 800997ac 0 Interrupt_EscapeAir_Airdodge
800997f0 00000134 800997f0 0 AS_236_EscapeAir
80099924 00000054 80099924 0 Ab_AS_236_EscapeAir_3
80099978 000000c8 80099978 0 Interrupt_AS_EscapeAir_Airdodge
80099a40 0000005c 80099a40 0 Ab_AS_236_EscapeAir_1
80099a9c 00000028 80099a9c 0 Ab_AS_236_EscapeAir_2
80099ac4 0000002c 80099ac4 0 Ab_AS_236_EscapeAir_OnHitGround
80099af0 00000088 80099af0 0 Ab_AS_?_ClankRecoil
80099b78 00000020 80099b78 0 Ab_AS_?_ClankRecoil_1
80099b98 0000003c 80099b98 0 Ab_AS_?_ClankRecoil_2
80099bd4 0000003c 80099bd4 0 Ab_AS_?_ClankRecoil_3
80099c14 0000003c 80099c14 0 Ab_AS_?_ClankRecoil_4
80099c50 00000020 80099c50 0 Ab_AS_?_ClankRecoil_5
80099c70 00000080 80099c70 0 Ab_Interrupt_CheckForLegitimateReflectorPlatformDrop
80099cf0 000000e4 80099cf0 0 Ab_Interrupt_DropOffPlatform?
80099dd4 000000b4 80099dd4 0 Interrupt_Pass
80099e88 00000050 80099e88 0 Ab_Interrupt_Firefox&bird_PassThroughDownwardsCheck
80099ed8 000000a4 80099ed8 0 Ab_Interrupt_ReflectorPlatformDrop
80099f7c 00000080 80099f7c 0 AS_244_Pass
80099ffc 0000003c 80099ffc 0 Ab_AS_244_Pass_1
8009a038 000000a4 8009a038 0 Interrupt_AS_Pass
8009a0dc 00000020 8009a0dc 0 Fastfall_CheckIfFastFallingandUpdateVelocity_Prefunction
8009a0fc 00000020 8009a0fc 0 Ab_AS_244_Pass_3
8009a11c 00000048 8009a11c 0 Interrupt_LedgeTeeter
8009a164 00000058 8009a164 0 AS_245_OttoOtto_LedgeTeeter
8009a1bc 0000003c 8009a1bc 0 Ab_ASF_245_OttoOtto_1
8009a1f8 00000150 8009a1f8 0 Ab_ASF_245_OttoOtto_2
8009a34c 000000c0 8009a34c 0 Ab_ASF_245_OttoOtto_3
8009a40c 00000070 8009a40c 0 AS_246_OttottoWait
8009a480 00000020 8009a480 0 Ab_ASF_246_OttoOttoWait_1
8009a4a4 000000b4 8009a4a4 0 Ab_ASF_246_OttoOttoWait_2
8009a558 000000d4 8009a558 0 AS_253_CliffWait
8009a650 00000070 8009a650 0 Interrupt_AS_CliffWait
8009a8f0 000000cc 8009a8f0 0 AS_254&155_CliffClimb
8009ad28 0000006c 8009ad28 0 Interrupt_CliffEscape_FromAS_CliffWait
8009ad94 000000cc 8009ad94 0 AS_258&259_CliffEscapeSlow&Quick
8009aec4 00000048 8009aec4 0 Interrupt_CliffJump
8009af0c 000000c0 8009af0c 0 AS_260&262_CliffJumpSlow1&CliffJumpQuick1
8009b318 00000070 8009b318 0 ch_DK_ThrowFWait1_IASA
8009b3a8 00000028 8009b3a8 0 ch_DK_ThrowFWait1_CollisionInterrupt
8009b52c 00000020 8009b52c 0 ch_DK_ThrowFWalkSlow_AnimationInterrupt
8009b4b8 00000074 8009b4b8 0 ch_DK_ThrowFWalkSlow_IASA
8009b52c 00000020 8009b52c 0 ch_DK_ThrowFWalkSlow_ActionPhys
8009b54c 00000020 8009b54c 0 ch_DK_ThrowFWalkSlow_CollisionInterrupt
8009b608 00000094 8009b608 0 ch_DK_ThrowFTurn_AnimationInterrupt
8009b69c 00000040 8009b69c 0 ch_DK_ThrowFTurn_IASA
8009b6dc 00000020 8009b6dc 0 ch_DK_ThrowFTurn_ActionPhys
8009b6fc 00000020 8009b6fc 0 ch_DK_ThrowFTurn_CollisionInterrupt
8009b7a4 00000050 8009b7a4 0 ch_DK_ThrowFWait2_AnimationInterrupt
8009b7f4 0000003c 8009b7f4 0 ch_DK_ThrowFWait2_IASA
8009b830 00000020 8009b830 0 ch_DK_ThrowFWait2_ActionPhys
8009b850 00000020 8009b850 0 ch_DK_ThrowFWait2_CollisionInterrupt
8009b948 00000024 8009b948 0 ch_DK_ThrowFWait4_IASA
8009b96c 00000020 8009b96c 0 ch_DK_ThrowFWait4_AcitonPhys
8009b98c 00000020 8009b98c 0 ch_DK_ThrowFWait4_CollisionInterrupt
8009ba34 00000024 8009ba34 0 ch_DK_ThrowFWait3_IASA
8009ba58 00000020 8009ba58 0 ch_DK_ThrowFWait3_ActionPhys
8009ba78 00000028 8009ba78 0 ch_DK_ThrowFWait3_CollisionInterrupt
8009bb18 00000050 8009bb18 0 ch_DK_ThrowFWait5_AnimationInterrupt
8009bb68 00000020 8009bb68 0 ch_DK_ThrowFWait5_ActionPhys
8009bb88 00000020 8009bb88 0 ch_DK_ThrowFWait5_CollisionInterrupt
8009bba8 00000064 8009bba8 0 ch_DK_ThrowFWait6_AnimationInterrupt
8009bc0c 00000020 8009bc0c 0 ch_DK_ThrowFWait6_ActionPhys
8009bc2c 00000064 8009bc2c 0 ch_DK_ThrowFWait6_CollisionInterrupt
8009bc90 000000f0 8009bc90 0 Interrupt_DK_ThrowFDecide
8009bd80 000000c0 8009bd80 0 AS_DK_ThrowFDecide
8009be40 00000044 8009be40 0 ch_DK_ThrowFF1_AnimationInterrupt
8009c0b8 00000020 8009c0b8 0 ch_DK_ThrowFF1_IASA
8009c0d8 00000020 8009c0d8 0 ch_DK_ThrowFF1_ActionPhys
8009c120 00000044 8009c120 0 ch_DK_ThrowFAll_AnimationInterrupt
8009c168 00000020 8009c168 0 ch_DK_ThrowFAll_ActionPhys
8009c188 00000028 8009c188 0 ch_DK_ThrowFAll_CollisionInterrupt
8009e1f4 0000008c 8009e1f4 0 Player_UpdatePhysicsJointAnimFrameAndRate
8009ea9c 0000008c 8009ea9c 0 Interrupt_StopWall
8009eb28 000000d4 8009eb28 0 AS_249_StopWall
8009ec60 0000003c 8009ec60 0 Interrupt_StopCeil
8009ec9c 000000a4 8009ec9c 0 AS_250_StopCeil
8009ede8 00000094 8009ede8 0 Ab_Knockback+HitEffects_Knockback?
8009ee7c 0000005c 8009ee7c 0 DamageLaying_CheckLayingUpOrDown
8009eed8 000000d0 8009eed8 0 DamageLaying_JabReset?
8009f028 00000064 8009f028 0 AS_251_MissFoot
8009f1d8 0000002c 8009f1d8 0 Ab_GFX_Unknown_2
8009f204 00000034 8009f204 0 Ab_GFX_Unknown_3
8009f238 000001b0 8009f238 0 Ab_GFX_Unknown_4
8009f3e8 0000009c 8009f3e8 0 Ab_GFX_Unknown
8009f484 0000003c 8009f484 0 Ab_GFX_Unknown_6
8009f4c0 00000864 8009f4c0 0 GFX_Effect_Spawn
800a0ca8 000007c8 800a0ca8 0 CPU_InitializationOrSomething
800a1470 00000090 800a1470 0 CPU_JoystickXAxis_Convert
800a1500 00000090 800a1500 0 CPU_JoystickYAxis_Convert
800a1590 00000044 800a1590 0 CPU_LAnalog_Convert
800a15d4 00000044 800a15d4 0 CPU_RAnalog_Convert
800a1618 00000008 800a1618 0 CPU_DigitalButtonsPressed_Load
800a1620 00000090 800a1620 0 CPU_CStick_XAxisConvert
800a16b0 00000090 800a16b0 0 CPU_CStick_YAxisConvert
800a1cc0 00000060 800a1cc0 0 Player_IsCPU
800b0578 000001dc 800b0578 0 Player_Nana_RecordPopoData
800b0c64 00000250 800b0c64 0 CPUType_Nana_Stuff
800b2744 000008b4 800b2744 0 CPUType_AllTypeLogic
800b3548 0000005c 800b3548 0 CPU_LogicStart_?
800be428 00000348 800be428 0 VictoryPose_Decide
800be8f8 000000d4 800be8f8 0 AS_000_VictoryPoseB
800be9d0 00000178 800be9d0 0 AS_002_VictoryPoseY
800beb4c 000000cc 800beb4c 0 AS_005_VictoryWinPoseX
800bf304 00000490 800bf304 0 ColorData_HandleStuff
800bf94c 00000098 800bf94c 0 AS_011_SleepNanaZeldaSheik
800bf9e4 000000d0 800bf9e4 0 AS_011_Sleep
802b1044 00000020 802b1044 0 SubactionEvent_0x28_GFXSpawn_Prefunction
800bfc18 000000a4 800bfc18 0 GFX&ColorOverlay_Apply
800bfd7c 000000cc 800bfd7c 0 wP_CalledOnAnyInput?
800bfe48 00000158 800bfe48 0 ColorOverlay_Remove
800c0050 00000250 800c0050 0 Ab_Knockback+HitEffects_Unknown4
800c02a0 0000001c 800c02a0 0 DataOffset_ColorDataChoose
800c02bc 00000020 800c02bc 0 DataOffset_ColorDataChoose_EntityInput
800c02dc 00000020 800c02dc 0 DataOffset_ColorData_0x28_Load
800c02fc 0000000c 800c02fc 0 SYS_AnimatedModelExplodable::GetWorldMatrix
800c0954 00000228 800c0954 0 AS_294_Bury
800c0e94 0000008c 800c0e94 0 AS_295_BuryWait
800c1004 000000a4 800c1004 0 AS_296_BuryJump
800c1980 000000d4 800c1980 0 Interrupt_Edge&WalljumpTeching
800c1aac 000001c4 800c1aac 0 AS_203_PassiveWalljump_Walljump
800c1c70 00000158 800c1c70 0 AS_203_PassiveWalljump_Tech?
800c1dc8 00000140 800c1dc8 0 Interrupt_AS_PassiveWall&Jump
800c1fe8 0000005c 800c1fe8 0 Interrupt_CeilingTech
800c2044 00000130 800c2044 0 AS_204_PassiveCeil_CeilingTech
800c2248 000009d8 800c2248 0 SwordTrail_Draw
800c2c20 000001b4 800c2c20 0 SwordTrail_placeKeyframeFromBone
800c2dd4 00000120 800c2dd4 0 AS_129_DamageSong
800c2fd8 00000038 800c2fd8 0 AS_298_DamageSongWait
800c30c8 00000038 800c30c8 0 AS_299_DamageSongRv
800c3758 000000d8 800c3758 0 Controls_Link&YLink&Samus_GrappleAerial_CheckZ
800c3830 000000d8 800c3830 0 AS_Link&YLink&Samus_GrappleAerial
800c39b4 00000614 800c39b4 0 AS_Zair_GenerateZair
800c4114 00000084 800c4114 0 Damage_ElementDisableCheck
800c4198 0000011c 800c4198 0 AS_300_DamageBindDisable
800c4e88 00000044 800c4e88 0 Items_CheckForHammerItem
800c51a4 0000002c 800c51a4 0 Item_Hammer_SpecialFunc
800c5698 00000048 800c5698 0 Interrupt_HammerJump
800c56e0 0000008c 800c56e0 0 AS_312_HammerJump
800c57d0 00000088 800c57d0 0 AS_310_HammerKneeBend
800c597c 00000088 800c597c 0 AS_311_HammerFall
800c5bd0 00000098 800c5bd0 0 AS_313_HammerLanding
800c5d98 00000060 800c5d98 0 AS_012_RebirthAgain
800c5df8 000001c0 800c5df8 0 AS_322_Entry
800c6050 000002f8 800c6050 0 AS_323_EntryStart
800c6744 00000070 800c6744 0 HSD_JObjSetMtxDirty
800c67b4 0000015c 800c67b4 0 AS_324_EntryEnd
800c7114 00000028 800c7114 0 ch_GBowser_RunBrake_ActionPhys
80147e9c 00000020 80147e9c 0 Fastfall_CheckIfFastFallingAndUpdateVelocity_Prefunction2
800c7f90 000000f0 800c7f90 0 Item_Metal_Apply
800c8188 00000078 800c8188 0 Item_Metal_Remove
800c851c 000000cc 800c851c 0 Item_CloakDevice_Apply
800c86ac 0000008c 800c86ac 0 Item_CloakDevice_Remove
800c88cc 0000007c 800c88cc 0 StaminaMode_CheckFor0HP_LayDead
800c8948 00000140 800c8948 0 Ab_Knockback+HitEffects_Unknown3zz_00c8d00_
800c8abc 000000f8 800c8abc 0 StaminaMode_CharacterToZeroPerc
800c8c0c 00000070 800c8c0c 0 MetalRed_CheckOnDeath&MatchStart
800c925c 00000154 800c925c 0 Interrupt_AS_WalkSlow&Middle
800c9424 00000064 800c9424 0 Interrupt_Turn
800c94f4 00000078 800c94f4 0 AS_018_TurnAgain
800c9640 000001f4 800c9640 0 Interrupt_AS_Turn
800c98bc 00000078 800c98bc 0 AS_018_SmashTurn
800c9934 00000054 800c9934 0 Interrupt_TurnRun_KeepSameFrame
800c9988 00000054 800c9988 0 Interrupt_TurnRun
800c99dc 0000007c 800c99dc 0 AS_019_TurnRun
800c9b20 00000024 800c9b20 0 Interrupt_AS_TurnRun
800c9cdc 0000008c 800c9cdc 0 Interrupt_TurnOrDash
800c9d68 000000d4 800c9d68 0 AS_020_Dash
800c9e78 0000030c 800c9e78 0 Interrupt_AS_Dash
800ca238 00000054 800ca238 0 Interrupt_Run_fromDash
800ca28c 00000054 800ca28c 0 Interrupt_Run_Again
800ca33c 00000028 800ca33c 0 AS_021_Run_Initialize
800ca364 00000060 800ca364 0 AS_021_Run
800ca478 0000012c 800ca478 0 Interrupt_AS_Run
800ca860 00000084 800ca860 0 AS_023_RunBrake
800caac8 00000050 800caac8 0 Player_CheckJumpInput
800cab18 000000a8 800cab18 0 Interrupt_Jump
800cabc0 000000ac 800cabc0 0 Interrupt_Jump_OoRun
800cac6c 000000ec 800cac6c 0 Interrupt_Jump_OoS
800cad58 00000140 800cad58 0 AS_Jump_Grounded_ShortHopOrFullHop_CheckApply
800cae98 000000a8 800cae98 0 AS_025&026_JumpF&B
800caf7c 00000104 800caf7c 0 Interrupt_AS_JumpF
800cb128 00000048 800cb128 0 AS_024_Kneebend
800cb244 000000b0 800cb244 0 Interrupt_AS_Kneebend
800cb44c 0000006c 800cb44c 0 Player_CheckFirstMultiJumpInput
800cb4b8 00000070 800cb4b8 0 Interrupt_AerialJumpGoTo
800cb598 00000174 800cb598 0 Interrupt_JumpAerial
800cb808 00000158 800cb808 0 AS_027&028_AerialJump
800cb960 00000180 800cb960 0 AS_027&028_AerialJump_Ness
800cbae0 00000250 800cbae0 0 AS_027_AerialJumpF_Yoshi
800cbe80 00000150 800cbe80 0 AS_027&028_AerialJump_Peach
800cc140 0000013c 800cc140 0 AS_DoubleJumpAnim?
800cc378 00000100 800cc378 0 AS_029_Fall
800cc6f4 00000134 800cc6f4 0 Interrupt_AS_Fall
800cc97c 00000024 800cc97c 0 Interrupt_AS_Fall_Prefunction
800ccabc 00000020 800ccabc 0 AS_Fastfall_CheckIfFastFallingAndUpdateVelocity_Prefunction
800cc9f0 00000054 800cc9f0 0 AS_32_FallAerial
800cca98 00000024 800cca98 0 Interrupt_AS_Fall_Prefunction2
800c5658 00000020 800c5658 0 AS_Fastfall_CheckIfFastFallingAndUpdateVelocity_Prefunction2
800ccba0 000001e8 800ccba0 0 AS_ItemAttackActionStateDecide
800ccd88 0000007c 800ccd88 0 AS_BeamSwordDashAttack&More?
800ccfd8 00000020 800ccfd8 0 ch_CFalcon_Swing421_AnimationInterrupt
800ccff8 00000020 800ccff8 0 ch_CFalcon_Swing421_IASA
800cd018 00000020 800cd018 0 ch_CFalcon_Swing421_ActionPhys
800cd038 00000028 800cd038 0 ch_CFalcon_Swing421_CollisionInterrupt
800cd0a0 00000020 800cd0a0 0 ch_CFalcon_Swing422_AnimationInterrupt
800cd0c0 00000020 800cd0c0 0 ch_CFalcon_Swing422_IASA
800cd0e0 00000020 800cd0e0 0 ch_CFalcon_Swing422_ActionPhys
800cd100 00000028 800cd100 0 ch_CFalcon_Swing422_CollisionInterrupt
800cd168 00000020 800cd168 0 ch_CFalcon_Swing423_AnimationInterrupt
800cd188 00000020 800cd188 0 ch_CFalcon_Swing423_IASA
800cd1a8 00000020 800cd1a8 0 ch_CFalcon_Swing423_ActionPhys
800cd1c8 00000028 800cd1c8 0 ch_CFalcon_Swing423_CollisionInterrupt
800cd2e8 00000124 800cd2e8 0 ch_CFalcon_Swing424_AnimationInterrupt
800cd40c 00000020 800cd40c 0 ch_CFalcon_Swing424_IASA
800cd42c 00000020 800cd42c 0 ch_CFalcon_Swing424_ActionPhys
800cd44c 00000028 800cd44c 0 ch_CFalcon_Swing424_CollisionInterrupt
800cd4d4 00000020 800cd4d4 0 ch_CFalcon_Swing425_AnimationInterrupt
800cd4f4 00000020 800cd4f4 0 ch_CFalcon_Swing425_IASA
800cd514 00000020 800cd514 0 ch_CFalcon_Swing425_ActionPhys
800cd534 00000028 800cd534 0 ch_CFalcon_Swing425_CollisionInterrupt
800cd75c 00000020 800cd75c 0 ch_CFalcon_Swing426_AnimationInterrupt
800cd77c 00000020 800cd77c 0 ch_CFalcon_Swing426_IASA
800cd79c 00000020 800cd79c 0 ch_CFalcon_Swing426_ActionPhys
800cd7bc 00000028 800cd7bc 0 ch_CFalcon_Swing426_CollisionInterrupt
800ceb50 000000d8 800ceb50 0 AS_144_ParasolOpen
800ceec8 00000038 800ceec8 0 AS_145_ItemParasolFall
800cef04 000000c4 800cef04 0 Interrupt_AS_ItemParasolFall
800cf1dc 00000154 800cf1dc 0 AdjustSomething_DuetoModelScale_NotEqual1
800d0ca4 00000488 800d0ca4 0 Item_Metal_ChangeAttributes
800d112c 000000ec 800d112c 0 Item_SuperMushroom_Apply
800d1218 0000013c 800d1218 0 Item_SuperMushroom_FinalFlags
800d1354 000000f0 800d1354 0 Item_SuperMushroom_Grounded
800d1514 000000f0 800d1514 0 Item_SuperMushroom_Air
800d16d4 00000078 800d16d4 0 DevelopMode_ModelScale_ReturnToDefault
800d1ac8 000000ec 800d1ac8 0 Item_PoisonMushroom_Apply
800d1bb4 00000090 800d1bb4 0 Item_PoisonMushroom_FinalFlags
800d1c44 000000f0 800d1c44 0 Item_PoisonMushroom_Grounded
800d1e04 000000f0 800d1e04 0 Item_PoisonMushroom_Air
800d2bec 00000060 800d2bec 0 Damage_ElementScrewCheck
800d2c4c 000000bc 800d2c4c 0 AS_156&157_DamageScrew&DamageScrewAir
800d2da0 000001c4 800d2da0 0 Player_CheckForDeath
800d2f64 000001c4 800d2f64 0 Death_RemoveItems
800d3128 0000011c 800d3128 0 Death_m1
800d32c8 00000238 800d32c8 0 AS_001_DeadLeft
800d3598 00000238 800d3598 0 AS_002_DeadRight
800d3810 00000238 800d3810 0 AS_000_DeadDown
800d3a48 0000003c 800d3a48 0 AS_011_SleepCheckOnDeath
800d3a88 00000238 800d3a88 0 AS_003_DeadUp
800d3d00 0000010c 800d3d00 0 AS_004_DeadUpStar
800d3e0c 00000120 800d3e0c 0 AS_005_DeadUpStarIce
800d3f2c 0000027c 800d3f2c 0 Ab_DoStarKoDeath
800d41c8 00000200 800d41c8 0 AS_006&009_DeadUpFall&DeadUpFallIce
800d43c8 00000038 800d43c8 0 AS_006_DeadUpFall
800d4400 00000064 800d4400 0 AS_009_DeadUpFallIce
800d4464 000001ec 800d4464 0 ActionState_0x7_0x8_DeadUpFallHitCameras
800d4650 000002e0 800d4650 0 Ab_DoSplatDeath
800d4a98 000000d4 800d4a98 0 fk_LoseCoinsOnDeath?
800d4b6c 000000d0 800d4b6c 0 AS_011_SleepNanaCheck
800d4c3c 00000304 800d4c3c 0 AS_012_Rebirth
800d4f40 00000060 800d4f40 0 AS_013_RebirthWaitCheck
800d5248 000000ec 800d5248 0 AS_013_RebirthWait
800d5334 00000070 800d5334 0 RebirthWaitPlatTimer
800d53a4 00000198 800d53a4 0 Interrupt_AS_RebirthWait
800d5734 0000010c 800d5734 0 AS_042&043_Landing&LandingSpecialFall
80097b14 0000005c 80097b14 0 AS_042&313_LandingCheck
80097b14 0000005c 80097b14 0 AS_043&313_LandingFallSpecialCheck
802742b8 0000008c 802742b8 0 AS_043&313_LandingFallSpecialCheckAgain
800d592c 000001a0 800d592c 0 Interrupt_AS_Landing
800d5b38 0000002c 800d5b38 0 Interrupt_JoystickDownRevivalPlatFall
800d5b64 0000005c 800d5b64 0 Interrupt_Squat
800d5bc0 00000070 800d5bc0 0 AS_039_Squat
800d5c6c 00000184 800d5c6c 0 Interrupt_AS_Squat
800d5f40 000000bc 800d5f40 0 AS_040_SquatWait
800d6028 00000110 800d6028 0 Interrupt_AS_SquatWait
800d618c 00000048 800d618c 0 Interrupt_SquatRv
800d61d4 00000038 800d61d4 0 AS_041_SquatRv
800d6248 000000f0 800d6248 0 Interrupt_AS_SquatRv
800d6378 00000060 800d6378 0 Buttons_BButtonCheck
800d63d8 00000068 800d63d8 0 Interrupt_NeutralB_Grounded
800d6440 00000034 800d6440 0 Player_CheckDownBInput
800d6474 00000068 800d6474 0 Interrupt_DownB_Grounded
800d64dc 00000034 800d64dc 0 Interrupt_UpB_CheckInputOnly
800d6510 00000068 800d6510 0 Interrupt_UpB_Grounded
800d6604 00000074 800d6604 0 Interrupt_RapidJab
800d6678 0000003c 800d6678 0 AS_047_Attack100Start_PreFunction_G&WCheck
800d6740 00000080 800d6740 0 AS_047_Attack100Start_RapidJab
800d6b0c 00000104 800d6b0c 0 Items_CatchItem_GiveItem
800d6c10 000000a4 800d6c10 0 Interrupt_ItemCatch8FrameBufferEnableCheck
800d6cb4 000000d8 800d6cb4 0 Interrupt_CatchItem
800d6d8c 00000090 800d6d8c 0 Items_GiveItemIfCatchBufferIsActive
800d6e54 0000006c 800d6e54 0 Ab_FindJumpsRemainingReturningToDJ
800d6ec0 00000198 800d6ec0 0 Interrupt_MultiJump
800d8544 000000a8 800d8544 0 Interrupt_Grab_Standing
800d85ec 000000a8 800d85ec 0 Interrupt_Grab_FromRun
800d8750 00000060 800d8750 0 Interrupt_CatchDash
800d8808 00000074 800d8808 0 AS_212&214_Catch&CatchDash
800d9d8c 000000d8 800d9d8c 0 AS_216_CatchWait
800d9e64 00000068 800d9e64 0 AS_216_CatchWait_AfterPummel
800d9ed0 000000b4 800d9ed0 0 Interrupt_AS_CatchWait
800da074 0000003c 800da074 0 Interrupt_CatchAttack_Pummel
800da0b0 0000006c 800da0b0 0 AS_217_CatchAttack_Pummel
800da24c 000000ac 800da24c 0 AS_218_CatchCut
800db344 00000114 800db344 0 AS_224_CaptureWaitHi
800db458 00000064 800db458 0 GrabBreakoutPummelDecrement
800db4bc 00000144 800db4bc 0 GrabBreakout_Think
800db698 00000114 800db698 0 AS_227_CaptureWaitLow
800dbc24 000000a0 800dbc24 0 AS_230_CaptureJump
800dbe38 00000060 800dbe38 0 AS_225_CaptureDamageHi
800dbf58 00000060 800dbf58 0 AS_228_CaptureDamageLowAgain
800dbfb8 00000064 800dbfb8 0 AS_228_CaptureDamageLow
800dc1d8 0000012c 800dc1d8 0 AS_225_CaptureDamageHiAgain
800dc304 000000a0 800dc304 0 AS_229_CaptureCut
800dc48c 00000024 800dc48c 0 PlayerBlock_StoreBool&LoseGroundJumpInitialize
800dc9e8 000001a0 800dc9e8 0 Knockback&HitEffects_Unknown1
800dcd98 000001b4 800dcd98 0 Interrupt_Throw
800dd064 000000b8 800dd064 0 Player_DoThrow
800de56c 00000020 800de56c 0 Interrupt_DPadUpInstantPressed
800de58c 00000050 800de58c 0 Interrupt_Taunt
800de5dc 000000c0 800de5dc 0 AS_264&265_TauntLR_CharacterCheckBeforeExecute
800de69c 000000e8 800de69c 0 Taunt_DrMarioYoungLink_Execute
800de784 00000124 800de784 0 AS_264&265_TauntLR
800de8e4 00000114 800de8e4 0 Interrupt_AS_ThrownF
800dea38 00000024 800dea38 0 DataOffset_SmashAttack_BeginningInitializeData
800dea5c 00000010 800dea5c 0 DataOffset_SmashAttackState_Store0
800dea6c 00000030 800dea6c 0 Damage_SmashAttack_ModifyDamageOutput
800deaec 00000198 800deaec 0 SmashAttackChargeThink
800ded7c 00000054 800ded7c 0 Player_CheckCStickFSmashInput
800dee8c 00000034 800dee8c 0 Player_CheckCStickUSmashInput
800def5c 00000034 800def5c 0 Player_CheckCStickDSmashInput
800df02c 00000094 800df02c 0 Player_CheckCStickAerial
800df1f8 00000034 800df1f8 0 Controls_CStick_CheckForInstant>0.6625
800df2e0 00000070 800df2e0 0 Interrupt_CStick_Forward_LastFrameToo
800df4c4 00000028 800df4c4 0 Controls_CStick_Y_CheckGreaterThan0.6625
800df5a4 00000060 800df5a4 0 ch_DK_HeavyWait1_IASA
800df624 00000028 800df624 0 ch_DK_HeavyWait1_CollisionInterrupt
800df6e8 00000020 800df6e8 0 ch_DK_HeavyWalk_AnimationInterrupt
800df708 00000064 800df708 0 ch_DK_HeavyWalk_IASA
800df76c 00000020 800df76c 0 ch_DK_HeavyWalk_ActionPhys
800df78c 00000020 800df78c 0 ch_DK_HeavyWalk_CollisionInterrupt
800dfd70 00000044 800dfd70 0 ch_DK_HeavyTurn_AnimationInterrupt
800dfdb4 00000054 800dfdb4 0 ch_DK_HeavyTurn_IASA
800dfe28 00000020 800dfe28 0 ch_DK_HeavyTurn_CollisionInterrupt
800dfff4 00000024 800dfff4 0 ch_DK_HeavyWait3_IASA
800e0038 00000020 800e0038 0 ch_DK_HeavyWait4_CollisionInterrupt
800e00cc 00000050 800e00cc 0 ch_DK_HeavyWait2_AnimationInterrupt
800e011c 0000003c 800e011c 0 ch_DK_HeavyWait2_IASA
800e0178 00000020 800e0178 0 ch_DK_HeavyWait2_CollisionInterrupt
800e01fc 00000050 800e01fc 0 ch_DK_HeavyWait5_AnimationInterrupt
800d5df0 00000020 800d5df0 0 ch_DK_HeavyWait5_ActionPhys
800e026c 00000020 800e026c 0 ch_DK_HeavyWait5_CollisionInterrupt