This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
oot3d.cfg
12029 lines (12028 loc) · 481 KB
/
oot3d.cfg
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
arm_func 0x00100000 __ctr_start force
arm_func 0x00100028 nninitRegion force
arm_func 0x0010004c FUN_0010004c force
arm_func 0x00100064 DuplicateHandle force
arm_func 0x0010007c FUN_0010007c force
arm_func 0x001000c0 FUN_001000c0 force
arm_func 0x001000ec FUN_001000ec force
arm_func 0x001001c4 FUN_001001c4 force
arm_func 0x001001d4 FUN_001001d4 force
arm_func 0x001001f0 FUN_001001f0 force
arm_func 0x0010020c FUN_0010020c force
arm_func 0x00100228 FUN_00100228 force
arm_func 0x001002c4 FUN_001002c4 force
arm_func 0x0010031c BgZg_Draw force
arm_func 0x00100344 BgZg_Update force
arm_func 0x0010040c FUN_0010040c force
arm_func 0x00100434 FUN_00100434 force
arm_func 0x001004c8 EnHorseNormal_Update force
arm_func 0x001005ec EnBb_Update force
arm_func 0x00100880 EnEg_Draw force
arm_func 0x00100884 EnEg_Update force
arm_func 0x001008ac EnHorseGanon_Update force
arm_func 0x001008b0 EnHorseZelda_Update force
arm_func 0x001008b4 FUN_001008b4 force
arm_func 0x0010109c EnRd_Update force
arm_func 0x001016bc EnTp_Update force
arm_func 0x00101c48 EnZf_Update force
arm_func 0x00102550 EnDh_Update force
arm_func 0x00102954 EnVm_Update force
arm_func 0x00102ccc FUN_00102ccc force
arm_func 0x00102ec0 EnFz_AimForFreeze force
arm_func 0x00102f30 EnFz_BlowSmokeStationary force
arm_func 0x0010320c FUN_0010320c force
arm_func 0x00103264 FUN_00103264 force
arm_func 0x001032bc FUN_001032bc force
arm_func 0x0010335c FUN_0010335c force
arm_func 0x00103398 FUN_00103398 force
arm_func 0x0010360c FUN_0010360c force
arm_func 0x00103778 FUN_00103778 force
arm_func 0x00103780 FUN_00103780 force
arm_func 0x00103794 FUN_00103794 force
arm_func 0x001037dc EnOssan_InitActionFunc force
arm_func 0x00103c70 EnOssan_MainActionFunc force
arm_func 0x00104078 FUN_00104078 force
arm_func 0x00104118 FUN_00104118 force
arm_func 0x00104198 FUN_00104198 force
arm_func 0x001041f0 FUN_001041f0 force
arm_func 0x00104218 FUN_00104218 force
arm_func 0x00104398 EnDoor_OverrideLimbDraw force
arm_func 0x001043ec FUN_001043ec force
arm_func 0x00104474 EnBubble_Regrow force
arm_func 0x001044fc DemoKankyo_UpdateClouds force
arm_func 0x00104594 FUN_00104594 force
arm_func 0x00104648 FUN_00104648 force
arm_func 0x00104720 FUN_00104720 force
arm_func 0x00104864 EnMu_PostDrawLimb force
arm_func 0x00104868 EnTg_PostLimbDraw force
arm_func 0x001048b0 caseD_2 force
arm_func 0x001048fc ItemEtcetera_DrawThroughLens force
arm_func 0x00104948 FUN_00104948 force
arm_func 0x00104b8c FUN_00104b8c force
arm_func 0x00104bf8 FUN_00104bf8 force
arm_func 0x00104c5c EnGo2_GroundRolling force
arm_func 0x00104da8 FUN_00104da8 force
arm_func 0x00105358 FUN_00105358 force
arm_func 0x00105440 FUN_00105440 force
arm_func 0x00105508 FUN_00105508 force
arm_func 0x00105a88 FUN_00105a88 force
arm_func 0x00105bd0 FUN_00105bd0 force
arm_func 0x00105e30 FUN_00105e30 force
arm_func 0x00105e58 EnFloormas_Land force
arm_func 0x00106074 FUN_00106074 force
arm_func 0x00106198 FUN_00106198 force
arm_func 0x0010623c FUN_0010623c force
arm_func 0x00106334 BossFd2_BreatheFire force
arm_func 0x00106934 BossGoma_FloorAttack force
arm_func 0x00106bd8 FUN_00106bd8 force
arm_func 0x00106ecc FUN_00106ecc force
arm_func 0x00106fb8 FUN_00106fb8 force
arm_func 0x00107054 FUN_00107054 force
arm_func 0x001072bc FUN_001072bc force
arm_func 0x001073f8 FUN_001073f8 force
arm_func 0x00107498 FUN_00107498 force
arm_func 0x00107560 EnWallmas_TakePlayer force
arm_func 0x0010776c FUN_0010776c force
arm_func 0x00107a40 FUN_00107a40 force
arm_func 0x00107ae4 FUN_00107ae4 force
arm_func 0x00107cd8 EnBili_ApproachPlayer force
arm_func 0x00107d54 EnFloormas_Run force
arm_func 0x00107f3c FUN_00107f3c force
arm_func 0x00108138 EnDntDemo_Judge force
arm_func 0x0010862c FUN_0010862c force
arm_func 0x0010874c EnExRuppy_Kill force
arm_func 0x00108774 FUN_00108774 force
arm_func 0x00108890 FUN_00108890 force
arm_func 0x00108948 FUN_00108948 force
arm_func 0x00108f68 EnFloormas_SmWait force
arm_func 0x00108f6c EnPoField_WaitForSpawn force
arm_func 0x001092c0 EnBili_DischargeLightning force
arm_func 0x001094c0 FUN_001094c0 force
arm_func 0x001096cc FUN_001096cc force
arm_func 0x0010990c EnOkuta_WaitForShoot force
arm_func 0x00109acc FUN_00109acc force
arm_func 0x00109cfc FUN_00109cfc force
arm_func 0x00109da0 FUN_00109da0 force
arm_func 0x00109e3c FUN_00109e3c force
arm_func 0x00109fc4 FUN_00109fc4 force
arm_func 0x0010a084 FUN_0010a084 force
arm_func 0x0010a380 FUN_0010a380 force
arm_func 0x0010a4a4 FUN_0010a4a4 force
arm_func 0x0010a5c8 EnFloormas_Hover force
arm_func 0x0010a660 BgHakaShip_CutsceneStationary force
arm_func 0x0010a6d8 FUN_0010a6d8 force
arm_func 0x0010a8e4 EnHeishi1_Kick force
arm_func 0x0010a998 FUN_0010a998 force
arm_func 0x0010aa20 EnCrow_Die force
arm_func 0x0010ab74 BgHidanFwbig_WaitForPlayer force
arm_func 0x0010abf8 FUN_0010abf8 force
arm_func 0x0010ad18 EnFirefly_DisturbDiveAttack force
arm_func 0x0010ade0 EnDntJiji_Up force
arm_func 0x0010ae34 EnPoField_Appear force
arm_func 0x0010b0c4 BgDyYoseizo_SpinGrow_NoReward force
arm_func 0x0010b218 FUN_0010b218 force
arm_func 0x0010b3b4 FUN_0010b3b4 force
arm_func 0x0010b5d0 FUN_0010b5d0 force
arm_func 0x0010b758 FUN_0010b758 force
arm_func 0x0010b900 BgGjyoBridge_SpawnBridge force
arm_func 0x0010b970 FUN_0010b970 force
arm_func 0x0010b9d0 FUN_0010b9d0 force
arm_func 0x0010b9f8 FUN_0010b9f8 force
arm_func 0x0010bdc8 FUN_0010bdc8 force
arm_func 0x0010bdf0 FUN_0010bdf0 force
arm_func 0x0010c160 FUN_0010c160 force
arm_func 0x0010c808 FUN_0010c808 force
arm_func 0x0010c918 EnGe1_OpenGate_GateOp force
arm_func 0x0010c9d8 FUN_0010c9d8 force
arm_func 0x0010cb10 FUN_0010cb10 force
arm_func 0x0010cc34 EnBom_WaitForRelease force
arm_func 0x0010cc88 BgHeavyBlock_LiftedUp force
arm_func 0x0010cda8 EnArrow_Shoot force
arm_func 0x0010cf2c FUN_0010cf2c force
arm_func 0x0010cfd0 FUN_0010cfd0 force
arm_func 0x0010d030 FUN_0010d030 force
arm_func 0x0010d270 FUN_0010d270 force
arm_func 0x0010d560 EnDs_BrewOddPotion1 force
arm_func 0x0010d5e8 FUN_0010d5e8 force
arm_func 0x0010d678 EnDs_BrewOddPotion2 force
arm_func 0x0010d6b8 FUN_0010d6b8 force
arm_func 0x0010d738 EnDs_BrewOddPotion3 force
arm_func 0x0010d7d4 FUN_0010d7d4 force
arm_func 0x0010d81c FUN_0010d81c force
arm_func 0x0010d850 FUN_0010d850 force
arm_func 0x0010d894 EnGe2_WaitLookAtPlayer force
arm_func 0x0010d990 EnGe3_WaitLookAtPlayer force
arm_func 0x0010da8c FUN_0010da8c force
arm_func 0x0010db04 EnGe3_GiveCard force
arm_func 0x0010db7c FUN_0010db7c force
arm_func 0x0010dbd0 EnGe3_WaitTillCardGiven force
arm_func 0x0010dc24 FUN_0010dc24 force
arm_func 0x0010dc58 EnDs_Wait force
arm_func 0x0010ddb8 EnFu_WaitChild force
arm_func 0x0010ded0 FUN_0010ded0 force
arm_func 0x0010e2ec FUN_0010e2ec force
arm_func 0x0010e498 DemoKankyo_DoNothing2 force
arm_func 0x0010e4ac EnJj_OpenMouth force
arm_func 0x0010e544 EnTr_CrySpellcast force
arm_func 0x0010e64c EnTr_ChooseAction1 force
arm_func 0x0010e804 ArrowIce_Fly force
arm_func 0x0010e930 ArrowFire_Fly force
arm_func 0x0010ea5c ArrowLight_Fly force
arm_func 0x0010eb88 ArrowIce_Hit force
arm_func 0x0010ece4 ArrowFire_Hit force
arm_func 0x0010ee40 ArrowLight_Hit force
arm_func 0x0010ef9c FUN_0010ef9c force
arm_func 0x0010f308 FUN_0010f308 force
arm_func 0x0010f380 FUN_0010f380 force
arm_func 0x0010f524 BgHeavyBlock_Fly force
arm_func 0x0010f8cc EnJj_BeginCutscene force
arm_func 0x0010f9b4 FUN_0010f9b4 force
arm_func 0x0010f9f0 OceffSpot_Wait force
arm_func 0x0010fa14 OceffStorm_UnkAction force
arm_func 0x0010fa78 FUN_0010fa78 force
arm_func 0x0010fb2c FUN_0010fb2c force
arm_func 0x0010fb78 FUN_0010fb78 force
arm_func 0x0010fbac EnJj_WaitToOpenMouth force
arm_func 0x0010fbd0 OceffSpot_End force
arm_func 0x0010fc98 EnGe1_WaitUntilGateOpened_GateOp force
arm_func 0x0010fe18 FUN_0010fe18 force
arm_func 0x0010feb0 FUN_0010feb0 force
arm_func 0x0010fec8 ObjLightswitch_TurnOn force
arm_func 0x0010ffdc ObjLightswitch_TurnOff force
arm_func 0x001100a0 FUN_001100a0 force
arm_func 0x00110118 FUN_00110118 force
arm_func 0x00110450 FUN_00110450 force
arm_func 0x0011055c FUN_0011055c force
arm_func 0x001105e0 FUN_001105e0 force
arm_func 0x0011070c FUN_0011070c force
arm_func 0x0011076c FUN_0011076c force
arm_func 0x001107b0 FUN_001107b0 force
arm_func 0x00110830 FUN_00110830 force
arm_func 0x0011088c BgMoriKaitenkaby_WaitForMoriTex force
arm_func 0x001108d8 FUN_001108d8 force
arm_func 0x0011093c FUN_0011093c force
arm_func 0x001109a4 ObjLightswitch_Off force
arm_func 0x00110a70 ObjSwitch_FloorDown force
arm_func 0x00110bb4 ObjSwitch_EyeClosed force
arm_func 0x00110c84 FUN_00110c84 force
arm_func 0x00110c88 FUN_00110c88 force
arm_func 0x00110d70 BgJyaHaheniron_ChairCrumble force
arm_func 0x00110e98 FUN_00110e98 force
arm_func 0x00111020 FUN_00111020 force
arm_func 0x00111140 FUN_00111140 force
arm_func 0x001111a4 FUN_001111a4 force
arm_func 0x001111e4 FUN_001111e4 force
arm_func 0x00111254 FUN_00111254 force
arm_func 0x001112c8 FUN_001112c8 force
arm_func 0x00111320 FUN_00111320 force
arm_func 0x00111374 FUN_00111374 force
arm_func 0x00111470 FUN_00111470 force
arm_func 0x00111cb0 FUN_00111cb0 force
arm_func 0x00111cfc EnSsh_Drop force
arm_func 0x00111e7c FUN_00111e7c force
arm_func 0x00111ee8 FUN_00111ee8 force
arm_func 0x00111f68 FUN_00111f68 force
arm_func 0x00111fac FUN_00111fac force
arm_func 0x00112050 FUN_00112050 force
arm_func 0x001120f8 FUN_001120f8 force
arm_func 0x001121c4 EnGe2_ForceTalk force
arm_func 0x0011230c EnGe3_Wait force
arm_func 0x00112414 FUN_00112414 force
arm_func 0x00112484 EnDs_Talk force
arm_func 0x001124c4 FUN_001124c4 force
arm_func 0x00112544 FUN_00112544 force
arm_func 0x00112564 FUN_00112564 force
arm_func 0x00112594 FUN_00112594 force
arm_func 0x0011260c FUN_0011260c force
arm_func 0x001126f0 FUN_001126f0 force
arm_func 0x00112708 EnBdfire_DrawFire force
arm_func 0x00112e88 FUN_00112e88 force
arm_func 0x00112ef0 FUN_00112ef0 force
arm_func 0x00112fcc FUN_00112fcc force
arm_func 0x00112fd0 EnArowTrap_Update force
arm_func 0x00113050 EnDha_Update force
arm_func 0x00113230 EnfHG_Update force
arm_func 0x00113378 FUN_00113378 force
arm_func 0x0011348c FUN_0011348c force
arm_func 0x001135a0 FUN_001135a0 force
arm_func 0x00113698 FUN_00113698 force
arm_func 0x0011370c FUN_0011370c force
arm_func 0x00113734 FUN_00113734 force
arm_func 0x00113768 FUN_00113768 force
arm_func 0x0011393c FUN_0011393c force
arm_func 0x00114194 FUN_00114194 force
arm_func 0x0011419c FUN_0011419c force
arm_func 0x001141f4 FUN_001141f4 force
arm_func 0x00114908 FUN_00114908 force
arm_func 0x00114930 FUN_00114930 force
arm_func 0x00114bd4 FUN_00114bd4 force
arm_func 0x00114c04 BuyEvent_ShieldDiscount force
arm_func 0x00114c78 FUN_00114c78 force
arm_func 0x00114cb8 EnSb_Lunge force
arm_func 0x00114d88 EnSb_Bounce force
arm_func 0x00114ee8 FUN_00114ee8 force
arm_func 0x00114f78 FUN_00114f78 force
arm_func 0x0011503c FUN_0011503c force
arm_func 0x0011598c FUN_0011598c force
arm_func 0x001167a4 FUN_001167a4 force
arm_func 0x001167cc FUN_001167cc force
arm_func 0x00116870 FUN_00116870 force
arm_func 0x00116904 FUN_00116904 force
arm_func 0x00116f48 EnDs_TalkAfterBrewOddPotion force
arm_func 0x00116fb4 EnDs_GiveOddPotion force
arm_func 0x00117014 EnDs_DisplayOddPotionText force
arm_func 0x0011706c EnMu_OverrideDrawLimb force
arm_func 0x00117074 EnTg_OverrideLimbDraw force
arm_func 0x0011707c ItemEtcetera_Draw force
arm_func 0x001170b8 FUN_001170b8 force
arm_func 0x001172d4 FUN_001172d4 force
arm_func 0x00117324 FUN_00117324 force
arm_func 0x001173a4 EnGo2_CurledUp force
arm_func 0x0011770c FUN_0011770c force
arm_func 0x00117744 EnGo2_ContinueRolling force
arm_func 0x001177b8 FUN_001177b8 force
arm_func 0x00117d98 EnFd_Reappear force
arm_func 0x00117e44 FUN_00117e44 force
arm_func 0x00117e54 FUN_00117e54 force
arm_func 0x00118764 FUN_00118764 force
arm_func 0x00118878 FUN_00118878 force
arm_func 0x00118960 FUN_00118960 force
arm_func 0x00118a24 EnKz_StopMweep force
arm_func 0x00118a70 FUN_00118a70 force
arm_func 0x0011956c FUN_0011956c force
arm_func 0x00119704 FUN_00119704 force
arm_func 0x0011976c FUN_0011976c force
arm_func 0x0011a014 FUN_0011a014 force
arm_func 0x0011a1d4 FUN_0011a1d4 force
arm_func 0x0011a364 FUN_0011a364 force
arm_func 0x0011a548 FUN_0011a548 force
arm_func 0x0011ab80 BossGoma_CeilingIdle force
arm_func 0x0011ad60 BossGoma_CeilingMoveToCenter force
arm_func 0x0011af50 EnStream_SuckPlayer force
arm_func 0x0011b150 FUN_0011b150 force
arm_func 0x0011b228 EnBili_SpawnedFlyApart force
arm_func 0x0011b2bc FUN_0011b2bc force
arm_func 0x0011b3f0 FUN_0011b3f0 force
arm_func 0x0011b624 BossFd2_ClawSwipe force
arm_func 0x0011b6f8 FUN_0011b6f8 force
arm_func 0x0011b9e8 FUN_0011b9e8 force
arm_func 0x0011bb70 FUN_0011bb70 force
arm_func 0x0011c3f4 FUN_0011c3f4 force
arm_func 0x0011c4c8 FUN_0011c4c8 force
arm_func 0x0011c5a0 EnCrow_DiveAttack force
arm_func 0x0011c7e0 FUN_0011c7e0 force
arm_func 0x0011ca08 FUN_0011ca08 force
arm_func 0x0011cbf0 FUN_0011cbf0 force
arm_func 0x0011cd50 EnOkuta_Shoot force
arm_func 0x0011d068 EnFirefly_DiveAttack force
arm_func 0x0011d284 FUN_0011d284 force
arm_func 0x0011d56c FUN_0011d56c force
arm_func 0x0011d6d8 EnFloormas_Charge force
arm_func 0x0011d7b0 EnHintnuts_ThrowNut force
arm_func 0x0011d914 EnShopnuts_ThrowNut force
arm_func 0x0011da78 EnTuboTrap_WaitForProximity force
arm_func 0x0011dab0 EnTuboTrap_Fly force
arm_func 0x0011def4 FUN_0011def4 force
arm_func 0x0011e09c EnDodongo_SwallowBomb force
arm_func 0x0011e508 FUN_0011e508 force
arm_func 0x0011fd4c EnGeldB_Damaged force
arm_func 0x0011ff28 FUN_0011ff28 force
arm_func 0x00120078 FUN_00120078 force
arm_func 0x00120388 FUN_00120388 force
arm_func 0x00120460 FUN_00120460 force
arm_func 0x00120534 FUN_00120534 force
arm_func 0x00120844 EnBili_Burnt force
arm_func 0x001208cc FUN_001208cc force
arm_func 0x00120948 FUN_00120948 force
arm_func 0x00120ad0 FUN_00120ad0 force
arm_func 0x00120b20 BossFd2_Vulnerable force
arm_func 0x00120d7c FUN_00120d7c force
arm_func 0x00120ed4 EnOkuta_WaitToDie force
arm_func 0x00120f38 BossGoma_FloorDamaged force
arm_func 0x00121024 FUN_00121024 force
arm_func 0x00121120 EnFirefly_Fall force
arm_func 0x00121204 EnWallmas_TakeDamage force
arm_func 0x0012137c FUN_0012137c force
arm_func 0x001213dc FUN_001213dc force
arm_func 0x00121654 FUN_00121654 force
arm_func 0x001218c4 FUN_001218c4 force
arm_func 0x00121940 FUN_00121940 force
arm_func 0x00121a70 EnPoField_Damage force
arm_func 0x00121ba0 FUN_00121ba0 force
arm_func 0x00121c94 BgHidanDalm_Shrink force
arm_func 0x00121e10 FUN_00121e10 force
arm_func 0x00122050 BgHakaTubo_DropCollectible force
arm_func 0x001222e8 FUN_001222e8 force
arm_func 0x001223e4 FUN_001223e4 force
arm_func 0x001224fc FUN_001224fc force
arm_func 0x001226bc FUN_001226bc force
arm_func 0x00122b7c FUN_00122b7c force
arm_func 0x00123038 FUN_00123038 force
arm_func 0x00123310 FUN_00123310 force
arm_func 0x001233b0 FUN_001233b0 force
arm_func 0x001234c4 FUN_001234c4 force
arm_func 0x001235f0 EnBili_SetNewHomeHeight force
arm_func 0x00123658 EnCrow_TurnAway force
arm_func 0x001236dc FUN_001236dc force
arm_func 0x0012388c EnFirefly_FlyAway force
arm_func 0x001239e0 EnWallmas_Walk force
arm_func 0x00123adc FUN_00123adc force
arm_func 0x00123ef4 FUN_00123ef4 force
arm_func 0x00124124 FUN_00124124 force
arm_func 0x00124258 EnHintnuts_Run force
arm_func 0x00124544 EnPoField_Flee force
arm_func 0x00124860 FUN_00124860 force
arm_func 0x001249b0 BossGoma_FallStruckDown force
arm_func 0x00124ac8 FUN_00124ac8 force
arm_func 0x00124f14 BossGanondrof_Neutral force
arm_func 0x001255e4 FUN_001255e4 force
arm_func 0x00125700 FUN_00125700 force
arm_func 0x00125798 FUN_00125798 force
arm_func 0x00125830 FUN_00125830 force
arm_func 0x00125a80 FUN_00125a80 force
arm_func 0x00125bbc FUN_00125bbc force
arm_func 0x00125d58 FUN_00125d58 force
arm_func 0x00125d90 FUN_00125d90 force
arm_func 0x00125e80 FUN_00125e80 force
arm_func 0x00125ef4 FUN_00125ef4 force
arm_func 0x00125f98 FUN_00125f98 force
arm_func 0x00126060 FUN_00126060 force
arm_func 0x00126304 FUN_00126304 force
arm_func 0x0012632c FUN_0012632c force
arm_func 0x00126438 FUN_00126438 force
arm_func 0x00126694 FUN_00126694 force
arm_func 0x00126758 FUN_00126758 force
arm_func 0x00126840 FUN_00126840 force
arm_func 0x0012697c FUN_0012697c force
arm_func 0x00126ad4 FUN_00126ad4 force
arm_func 0x00126d1c EnKarebaba_Retract force
arm_func 0x00126dd4 BgDyYoseizo_SpinShrink force
arm_func 0x00126ec8 FUN_00126ec8 force
arm_func 0x00126f50 FUN_00126f50 force
arm_func 0x00127260 FUN_00127260 force
arm_func 0x001273e8 FUN_001273e8 force
arm_func 0x00127448 EnKarebaba_Spin force
arm_func 0x00127620 EnPoField_CirclePlayer force
arm_func 0x0012795c FUN_0012795c force
arm_func 0x00127c04 FUN_00127c04 force
arm_func 0x001280fc FUN_001280fc force
arm_func 0x00128194 FUN_00128194 force
arm_func 0x00128200 EnTuboTrap_Levitate force
arm_func 0x0012827c BossFd2_Idle force
arm_func 0x001283e0 FUN_001283e0 force
arm_func 0x00128704 FUN_00128704 force
arm_func 0x00128734 FUN_00128734 force
arm_func 0x001287bc BgHakaShip_ChildUpdatePosition force
arm_func 0x0012880c FUN_0012880c force
arm_func 0x001288fc FUN_001288fc force
arm_func 0x00128c20 FUN_00128c20 force
arm_func 0x00128e3c FUN_00128e3c force
arm_func 0x00128f0c FUN_00128f0c force
arm_func 0x00128f2c FUN_00128f2c force
arm_func 0x001292d4 FUN_001292d4 force
arm_func 0x00129474 FUN_00129474 force
arm_func 0x00129f2c FUN_00129f2c force
arm_func 0x00129fac FUN_00129fac force
arm_func 0x0012a2e8 FUN_0012a2e8 force
arm_func 0x0012a3f0 EnGe2_TurnPlayerSpotted force
arm_func 0x0012a540 EnGe1_Wait_Archery force
arm_func 0x0012a5c8 EnGe1_TalkAfterGame_Archery force
arm_func 0x0012a6c4 EnGe1_GetReaction_GateGuard force
arm_func 0x0012a76c FUN_0012a76c force
arm_func 0x0012a7b8 EnGe1_CheckGate_GateOp force
arm_func 0x0012a828 EnGe1_WatchForPlayerFrontOnly force
arm_func 0x0012a940 EnGe1_SetNormalText force
arm_func 0x0012a95c EnGe1_WatchForAndSensePlayer force
arm_func 0x0012aa84 EnGe1_GetReaction_ValleyFloor force
arm_func 0x0012aacc FUN_0012aacc force
arm_func 0x0012aad0 FUN_0012aad0 force
arm_func 0x0012ab7c FUN_0012ab7c force
arm_func 0x0012adb4 FUN_0012adb4 force
arm_func 0x0012ae90 EnIceHono_DropFlame force
arm_func 0x0012b0d8 ObjSwitch_FloorUp force
arm_func 0x0012b2e8 ObjSwitch_EyeOpen force
arm_func 0x0012b36c FUN_0012b36c force
arm_func 0x0012b38c FUN_0012b38c force
arm_func 0x0012b3fc ObjSwitch_CrystalOn force
arm_func 0x0012b4d8 FUN_0012b4d8 force
arm_func 0x0012b5d0 FUN_0012b5d0 force
arm_func 0x0012b610 FUN_0012b610 force
arm_func 0x0012b6a8 FUN_0012b6a8 force
arm_func 0x0012b6b8 FUN_0012b6b8 force
arm_func 0x0012b6c8 ObjSwitch_FloorRelease force
arm_func 0x0012b758 FUN_0012b758 force
arm_func 0x0012b7a0 FUN_0012b7a0 force
arm_func 0x0012b7e8 FUN_0012b7e8 force
arm_func 0x0012b8c4 EnIceHono_SmallFlameMove force
arm_func 0x0012ba6c FUN_0012ba6c force
arm_func 0x0012bdec EnOwl_ConfirmKokiriMessage force
arm_func 0x0012be6c FUN_0012be6c force
arm_func 0x0012bee0 FUN_0012bee0 force
arm_func 0x0012bf54 FUN_0012bf54 force
arm_func 0x0012bffc FUN_0012bffc force
arm_func 0x0012c070 FUN_0012c070 force
arm_func 0x0012c144 FUN_0012c144 force
arm_func 0x0012c1b8 FUN_0012c1b8 force
arm_func 0x0012c260 FUN_0012c260 force
arm_func 0x0012c2d4 FUN_0012c2d4 force
arm_func 0x0012c37c FUN_0012c37c force
arm_func 0x0012c444 FUN_0012c444 force
arm_func 0x0012c4e8 FUN_0012c4e8 force
arm_func 0x0012c574 FUN_0012c574 force
arm_func 0x0012c5f4 FUN_0012c5f4 force
arm_func 0x0012c668 FUN_0012c668 force
arm_func 0x0012c710 FUN_0012c710 force
arm_func 0x0012c784 FUN_0012c784 force
arm_func 0x0012c82c FUN_0012c82c force
arm_func 0x0012c8d0 FUN_0012c8d0 force
arm_func 0x0012c948 FUN_0012c948 force
arm_func 0x0012ca40 FUN_0012ca40 force
arm_func 0x0012cb98 FUN_0012cb98 force
arm_func 0x0012cc10 FUN_0012cc10 force
arm_func 0x0012ccdc FUN_0012ccdc force
arm_func 0x0012cdb0 FUN_0012cdb0 force
arm_func 0x0012cf7c FUN_0012cf7c force
arm_func 0x0012cfac FUN_0012cfac force
arm_func 0x0012cfec FUN_0012cfec force
arm_func 0x0012d02c FUN_0012d02c force
arm_func 0x0012d108 FUN_0012d108 force
arm_func 0x0012d1fc DemoKankyo_UpdateDoorOfTime force
arm_func 0x0012d298 FUN_0012d298 force
arm_func 0x0012d2b0 FUN_0012d2b0 force
arm_func 0x0012dcc0 FUN_0012dcc0 force
arm_func 0x0012dd78 EnDs_OfferOddPotion force
arm_func 0x0012de30 BossVa_Update force
arm_func 0x0012e0b0 FUN_0012e0b0 force
arm_func 0x0012e0c4 FUN_0012e0c4 force
arm_func 0x0012e0ec DemoEc_Draw force
arm_func 0x0012e11c DemoEc_Update force
arm_func 0x0012e14c DemoGj_Draw force
arm_func 0x0012e174 DemoGj_Update force
arm_func 0x0012e19c DemoGt_Draw force
arm_func 0x0012e1c4 DemoGt_Update force
arm_func 0x0012e1ec DemoIk_Draw force
arm_func 0x0012e214 DemoIk_Update force
arm_func 0x0012e264 FUN_0012e264 force
arm_func 0x0012e2d0 EnTest_Update force
arm_func 0x0012ee3c EnTite_Update force
arm_func 0x0012f4f0 EnBird_Update force
arm_func 0x0012f508 EnTrap_Update force
arm_func 0x0012ffe4 EnFz_MoveTowardsPlayer force
arm_func 0x0013002c FUN_0013002c force
arm_func 0x00130098 FUN_00130098 force
arm_func 0x00130104 FUN_00130104 force
arm_func 0x001301a8 FUN_001301a8 force
arm_func 0x001301fc FUN_001301fc force
arm_func 0x0013037c FUN_0013037c force
arm_func 0x001304d8 FUN_001304d8 force
arm_func 0x00130b38 FUN_00130b38 force
arm_func 0x00130c78 FUN_00130c78 force
arm_func 0x00130ca0 EnMs_Wait force
arm_func 0x00130d80 FUN_00130d80 force
arm_func 0x00130dc0 FUN_00130dc0 force
arm_func 0x00131028 FUN_00131028 force
arm_func 0x001310a0 FUN_001310a0 force
arm_func 0x00131120 FUN_00131120 force
arm_func 0x00131184 FUN_00131184 force
arm_func 0x001311c8 FUN_001311c8 force
arm_func 0x001311d0 FUN_001311d0 force
arm_func 0x00131770 FUN_00131770 force
arm_func 0x001317dc FUN_001317dc force
arm_func 0x001321a8 EnBubble_Pop force
arm_func 0x001323c0 EnBubble_Fly force
arm_func 0x00132ad0 FUN_00132ad0 force
arm_func 0x0013336c FUN_0013336c force
arm_func 0x00133434 FUN_00133434 force
arm_func 0x0013351c FUN_0013351c force
arm_func 0x00133544 EnDog_FaceLink force
arm_func 0x00133620 FUN_00133620 force
arm_func 0x00133688 FUN_00133688 force
arm_func 0x00133ebc EnGo2_SetGetItem force
arm_func 0x00133ff8 FUN_00133ff8 force
arm_func 0x0013449c FUN_0013449c force
arm_func 0x001344f0 FUN_001344f0 force
arm_func 0x00134590 FUN_00134590 force
arm_func 0x0013463c FUN_0013463c force
arm_func 0x00134c8c FUN_00134c8c force
arm_func 0x00134cec FUN_00134cec force
arm_func 0x00134d28 EnKz_StartTimer force
arm_func 0x00134dbc FUN_00134dbc force
arm_func 0x0013532c FUN_0013532c force
arm_func 0x00135384 FUN_00135384 force
arm_func 0x001358d0 FUN_001358d0 force
arm_func 0x0013608c FUN_0013608c force
arm_func 0x001363d0 FUN_001363d0 force
arm_func 0x00136688 FUN_00136688 force
arm_func 0x00136938 FUN_00136938 force
arm_func 0x00136a84 FUN_00136a84 force
arm_func 0x00136c68 FUN_00136c68 force
arm_func 0x00136fc8 FUN_00136fc8 force
arm_func 0x00137164 FUN_00137164 force
arm_func 0x001374c0 FUN_001374c0 force
arm_func 0x001375bc FUN_001375bc force
arm_func 0x001379d0 FUN_001379d0 force
arm_func 0x00137cc8 EnCrow_SetupTurnAway force
arm_func 0x00137d74 BossFd2_Damaged force
arm_func 0x00137eb4 EnGeldB_Block force
arm_func 0x00138158 FUN_00138158 force
arm_func 0x0013832c FUN_0013832c force
arm_func 0x00138500 FUN_00138500 force
arm_func 0x00138560 FUN_00138560 force
arm_func 0x001385c0 FUN_001385c0 force
arm_func 0x001386d4 BossFd2_Death force
arm_func 0x00138e04 FUN_00138e04 force
arm_func 0x00139b10 FUN_00139b10 force
arm_func 0x0013a9b4 FUN_0013a9b4 force
arm_func 0x0013bb74 FUN_0013bb74 force
arm_func 0x0013cb28 FUN_0013cb28 force
arm_func 0x0013cc04 FUN_0013cc04 force
arm_func 0x0013d0a0 FUN_0013d0a0 force
arm_func 0x0013d0dc EnGeldB_Advance force
arm_func 0x0013d5d0 FUN_0013d5d0 force
arm_func 0x0013da38 FUN_0013da38 force
arm_func 0x0013dcc8 FUN_0013dcc8 force
arm_func 0x0013df14 FUN_0013df14 force
arm_func 0x0013df78 FUN_0013df78 force
arm_func 0x0013dff8 FUN_0013dff8 force
arm_func 0x0013e138 FUN_0013e138 force
arm_func 0x0013e324 FUN_0013e324 force
arm_func 0x0013e408 FUN_0013e408 force
arm_func 0x0013e6a4 EnHintnuts_Wait force
arm_func 0x0013e940 EnShopnuts_Wait force
arm_func 0x0013ebdc FUN_0013ebdc force
arm_func 0x0013ebe0 FUN_0013ebe0 force
arm_func 0x0013ec58 FUN_0013ec58 force
arm_func 0x0013f218 FUN_0013f218 force
arm_func 0x0013f280 FUN_0013f280 force
arm_func 0x0013f334 BgDyYoseizo_SayFarewell_NoReward force
arm_func 0x0013f400 FUN_0013f400 force
arm_func 0x0013f434 EnExItem_FairyMagic force
arm_func 0x0013f448 FUN_0013f448 force
arm_func 0x0013f44c EnDntDemo_Prize force
arm_func 0x0013f4b0 EnGeldB_RollForward force
arm_func 0x0013f6b4 FUN_0013f6b4 force
arm_func 0x0013f714 FUN_0013f714 force
arm_func 0x0013f804 FUN_0013f804 force
arm_func 0x0013f8dc EnKarebaba_Regrow force
arm_func 0x0013f984 BgIceTurara_Regrow force
arm_func 0x0013f9c4 FUN_0013f9c4 force
arm_func 0x0013fa50 EnBili_Recoil force
arm_func 0x0013faf8 EnFirefly_Rebound force
arm_func 0x0013fbd8 FUN_0013fbd8 force
arm_func 0x0013fd24 FUN_0013fd24 force
arm_func 0x0013fe1c EnDntJiji_Return force
arm_func 0x0013ff98 FUN_0013ff98 force
arm_func 0x001401dc EnWallmas_WaitForSwitchFlag force
arm_func 0x00140218 FUN_00140218 force
arm_func 0x001403a0 FUN_001403a0 force
arm_func 0x00140d10 FUN_00140d10 force
arm_func 0x00140f84 FUN_00140f84 force
arm_func 0x0014111c FUN_0014111c force
arm_func 0x001412b8 FUN_001412b8 force
arm_func 0x00141340 EnBox_AppearAnimation force
arm_func 0x001413c8 FUN_001413c8 force
arm_func 0x00141458 FUN_00141458 force
arm_func 0x001419ac FUN_001419ac force
arm_func 0x00141d40 FUN_00141d40 force
arm_func 0x00141dd4 FUN_00141dd4 force
arm_func 0x00141e6c FUN_00141e6c force
arm_func 0x00141ebc FUN_00141ebc force
arm_func 0x00141f24 FUN_00141f24 force
arm_func 0x00142190 FUN_00142190 force
arm_func 0x001423e0 FUN_001423e0 force
arm_func 0x001426f8 EnFu_WaitAdult force
arm_func 0x00142890 DemoKankyo_DoNothing force
arm_func 0x00142894 FUN_00142894 force
arm_func 0x00142ad8 FUN_00142ad8 force
arm_func 0x00142ed4 FUN_00142ed4 force
arm_func 0x00143158 FUN_00143158 force
arm_func 0x00143374 FUN_00143374 force
arm_func 0x001433dc ObjLightswitch_DisappearDelay force
arm_func 0x00143418 ObjLightswitch_Disappear force
arm_func 0x001436c4 FUN_001436c4 force
arm_func 0x00143768 FUN_00143768 force
arm_func 0x00143800 FUN_00143800 force
arm_func 0x0014390c FUN_0014390c force
arm_func 0x00143a3c FUN_00143a3c force
arm_func 0x00143a8c FUN_00143a8c force
arm_func 0x00143b28 EnHonotrap_FlameDrop force
arm_func 0x00143c94 EnHonotrap_FlameMove force
arm_func 0x00143f00 ObjSwitch_CrystalOff force
arm_func 0x00144074 FUN_00144074 force
arm_func 0x00144128 ObjSwitch_EyeOpening force
arm_func 0x001441b0 FUN_001441b0 force
arm_func 0x00144228 ObjSwitch_FloorPress force
arm_func 0x00144348 FUN_00144348 force
arm_func 0x001443cc EnHonotrap_EyeAttack force
arm_func 0x001443e8 EnHonotrap_EyeOpen force
arm_func 0x001444a4 EnHonotrap_EyeIdle force
arm_func 0x00144574 FUN_00144574 force
arm_func 0x0014459c FUN_0014459c force
arm_func 0x001445d0 ObjKibako_SetupIdle force
arm_func 0x001445e8 FUN_001445e8 force
arm_func 0x00144618 FUN_00144618 force
arm_func 0x00144628 FUN_00144628 force
arm_func 0x00144638 FUN_00144638 force
arm_func 0x0014466c FUN_0014466c force
arm_func 0x0014468c EnOwl_WaitOutsideKokiri force
arm_func 0x00144728 EnOwl_WaitHyruleCastle force
arm_func 0x001447b0 EnOwl_WaitKakariko force
arm_func 0x00144838 EnOwl_WaitGerudo force
arm_func 0x001448c0 EnOwl_WaitLakeHylia force
arm_func 0x00144948 EnOwl_WaitZoraRiver force
arm_func 0x00144a0c EnOwl_WaitHyliaShortcut force
arm_func 0x00144af8 EnOwl_WaitDeathMountainShortcut force
arm_func 0x00144c28 EnOwl_WaitDesertColossus force
arm_func 0x00144cb0 EnOwl_WaitLWPreSaria force
arm_func 0x00144d34 EnOwl_WaitLWPostSaria force
arm_func 0x00144dbc EnDog_FollowLink force
arm_func 0x00144ee8 FUN_00144ee8 force
arm_func 0x00144f3c FUN_00144f3c force
arm_func 0x00144f40 EnSsh_Land force
arm_func 0x00144ffc FUN_00144ffc force
arm_func 0x00145124 EnGe2_Stand force
arm_func 0x00145150 FUN_00145150 force
arm_func 0x001452bc FUN_001452bc force
arm_func 0x001453f8 FUN_001453f8 force
arm_func 0x00145540 FUN_00145540 force
arm_func 0x0014594c FUN_0014594c force
arm_func 0x001459a8 FUN_001459a8 force
arm_func 0x001459f4 FUN_001459f4 force
arm_func 0x00145a4c FUN_00145a4c force
arm_func 0x00145a6c FUN_00145a6c force
arm_func 0x00145b60 FUN_00145b60 force
arm_func 0x00145c0c FUN_00145c0c force
arm_func 0x00145c3c FUN_00145c3c force
arm_func 0x00145c6c FUN_00145c6c force
arm_func 0x00145c9c FUN_00145c9c force
arm_func 0x00145ca8 FUN_00145ca8 force
arm_func 0x00145e54 FUN_00145e54 force
arm_func 0x001466ac FUN_001466ac force
arm_func 0x00146798 FUN_00146798 force
arm_func 0x001467dc FUN_001467dc force
arm_func 0x0014688c EnZo_Submerged force
arm_func 0x0014690c FUN_0014690c force
arm_func 0x001474bc FUN_001474bc force
arm_func 0x001485f4 FUN_001485f4 force
arm_func 0x00149298 FUN_00149298 force
arm_func 0x00149340 FUN_00149340 force
arm_func 0x001493a0 DemoExt_Draw force
arm_func 0x001493c8 DemoExt_Update force
arm_func 0x0014949c FUN_0014949c force
arm_func 0x001494f0 FUN_001494f0 force
arm_func 0x0014953c FUN_0014953c force
arm_func 0x0014955c FUN_0014955c force
arm_func 0x001495f0 EnDns_Wait force
arm_func 0x0014968c EnHorseNormal_Draw force
arm_func 0x00149af8 EnBb_Draw force
arm_func 0x0014a04c EnGeldB_Update force
arm_func 0x0014a5a0 EnHorseGanon_Draw force
arm_func 0x0014a5a4 EnHorseZelda_Draw force
arm_func 0x0014a5a8 EnHorse_Update force
arm_func 0x0014be68 FUN_0014be68 force
arm_func 0x0014bfb4 EnRd_Draw force
arm_func 0x0014c184 EnReeba_Update force
arm_func 0x0014c6dc EnTp_Draw force
arm_func 0x0014c864 EnZf_Draw force
arm_func 0x0014caa8 EnBombf_Update force
arm_func 0x0014d15c EnDh_Draw force
arm_func 0x0014d304 EnPubox_Update force
arm_func 0x0014d428 EnVm_Draw force
arm_func 0x0014d56c FUN_0014d56c force
arm_func 0x0014d5c8 EnGirlA_InitializeItemAction force
arm_func 0x0014d924 FUN_0014d924 force
arm_func 0x0014d978 FUN_0014d978 force
arm_func 0x0014d9e0 FUN_0014d9e0 force
arm_func 0x0014da40 FUN_0014da40 force
arm_func 0x0014e65c FUN_0014e65c force
arm_func 0x0014ed6c EnMs_Sell force
arm_func 0x0014edf4 EnMs_Talk force
arm_func 0x0014eef8 FUN_0014eef8 force
arm_func 0x0014ef94 FUN_0014ef94 force
arm_func 0x0014efd8 EnRr_CollisionCheck force
arm_func 0x0014f73c EnSyatekiMan_BlinkWait force
arm_func 0x0014f76c EnSb_WaitOpen force
arm_func 0x0014f7f0 EnSb_Cooldown force
arm_func 0x0014f84c FUN_0014f84c force
arm_func 0x0014f978 FUN_0014f978 force
arm_func 0x0014fbfc FUN_0014fbfc force
arm_func 0x0014fe9c FUN_0014fe9c force
arm_func 0x0014fec0 EnAni_PostLimbDraw force
arm_func 0x0014ff48 FUN_0014ff48 force
arm_func 0x0014ffec EnDaiku_PostLimbDraw force
arm_func 0x00150074 EnDaikuKakariko_PostLimbDraw force
arm_func 0x00150100 EnDs_PostLimbDraw force
arm_func 0x00150188 EnFu_PostLimbDraw force
arm_func 0x00150210 EnGe1_PostLimbDraw force
arm_func 0x00150298 EnGe2_PostLimbDraw force
arm_func 0x00150324 EnGe3_PostLimbDraw force
arm_func 0x00150370 EnHs_PostLimbDraw force
arm_func 0x001503f8 EnHs2_PostLimbDraw force
arm_func 0x00150480 EnHy_PostLimbDraw force
arm_func 0x0015055c EnMk_PostLimbDraw force
arm_func 0x00150514 EnKz_PostLimbDraw force
arm_func 0x001505e4 EnOwl_PostLimbUpdate force
arm_func 0x0015064c FUN_0015064c force
arm_func 0x0015074c FUN_0015074c force
arm_func 0x001507e4 EnZo_PostLimbDraw force
arm_func 0x00150830 FUN_00150830 force
arm_func 0x00150888 FUN_00150888 force
arm_func 0x0015088c caseD_1 force
arm_func 0x001508c8 FUN_001508c8 force
arm_func 0x00150c38 FUN_00150c38 force
arm_func 0x00150cfc FUN_00150cfc force
arm_func 0x00150d58 FUN_00150d58 force
arm_func 0x001511a0 FUN_001511a0 force
arm_func 0x001514f8 FUN_001514f8 force
arm_func 0x00151fe4 FUN_00151fe4 force
arm_func 0x001520b0 FUN_001520b0 force
arm_func 0x00152130 FUN_00152130 force
arm_func 0x001521c8 EnKz_SetupMweep force
arm_func 0x001522b4 FUN_001522b4 force
arm_func 0x0015237c FUN_0015237c force
arm_func 0x00152b30 FUN_00152b30 force
arm_func 0x00153a50 FUN_00153a50 force
arm_func 0x00153ccc FUN_00153ccc force
arm_func 0x00153e3c FUN_00153e3c force
arm_func 0x00153f84 FUN_00153f84 force
arm_func 0x00154108 FUN_00154108 force
arm_func 0x001542d0 FUN_001542d0 force
arm_func 0x0015434c FUN_0015434c force
arm_func 0x0015441c FUN_0015441c force
arm_func 0x001544b0 BgGndIceblock_Reset force
arm_func 0x00154564 FUN_00154564 force
arm_func 0x001545f0 FUN_001545f0 force
arm_func 0x001546ec FUN_001546ec force
arm_func 0x00154904 FUN_00154904 force
arm_func 0x00154ba8 FUN_00154ba8 force
arm_func 0x00154c10 FUN_00154c10 force
arm_func 0x00154cb0 FUN_00154cb0 force
arm_func 0x00154dac FUN_00154dac force
arm_func 0x001551ac FUN_001551ac force
arm_func 0x00155374 FUN_00155374 force
arm_func 0x00155430 FUN_00155430 force
arm_func 0x001555f4 FUN_001555f4 force
arm_func 0x001558a4 FUN_001558a4 force
arm_func 0x001563ec FUN_001563ec force
arm_func 0x0015643c BossGanondrof_Paintings force
arm_func 0x001565fc FUN_001565fc force
arm_func 0x00156754 FUN_00156754 force
arm_func 0x00156988 FUN_00156988 force
arm_func 0x00156a6c BgDyYoseizo_SetupGreetPlayer_NoReward force
arm_func 0x00156b70 FUN_00156b70 force
arm_func 0x00156b98 FUN_00156b98 force
arm_func 0x001570ac FUN_001570ac force
arm_func 0x00157108 FUN_00157108 force
arm_func 0x001571d8 FUN_001571d8 force
arm_func 0x00157294 FUN_00157294 force
arm_func 0x00157298 FUN_00157298 force
arm_func 0x00157390 EnGeldB_Stunned force
arm_func 0x00157484 FUN_00157484 force
arm_func 0x00157734 FUN_00157734 force
arm_func 0x00157844 FUN_00157844 force
arm_func 0x00157964 EnDodongo_Stunned force
arm_func 0x00157a34 BgDyYoseizo_HealPlayer_NoReward force
arm_func 0x00157ce4 FUN_00157ce4 force
arm_func 0x00157ec8 EnPoRelay_Race force
arm_func 0x00158360 EnGeldB_Flee force
arm_func 0x001584a8 FUN_001584a8 force
arm_func 0x00158508 FUN_00158508 force
arm_func 0x00158648 EnCrow_Respawn force
arm_func 0x00158718 EnKarebaba_Grow force
arm_func 0x001587b0 FUN_001587b0 force
arm_func 0x001589a8 FUN_001589a8 force
arm_func 0x00158aec EnPoField_SoulInteract force
arm_func 0x00158c68 EnPoRelay_DisappearAndReward force
arm_func 0x00159184 FUN_00159184 force
arm_func 0x001596b8 FUN_001596b8 force
arm_func 0x00159734 FUN_00159734 force
arm_func 0x001597b0 EnOkuta_Appear force
arm_func 0x00159930 FUN_00159930 force
arm_func 0x00159f64 FUN_00159f64 force
arm_func 0x0015abf8 FUN_0015abf8 force
arm_func 0x0015ad68 FUN_0015ad68 force
arm_func 0x0015af24 FUN_0015af24 force
arm_func 0x0015b074 DoorAna_WaitClosed force
arm_func 0x0015b180 EnTr_ChooseAction2 force
arm_func 0x0015b3cc FUN_0015b3cc force
arm_func 0x0015b568 EnDoor_SetupType force
arm_func 0x0015b794 FUN_0015b794 force
arm_func 0x0015b904 FUN_0015b904 force
arm_func 0x0015c004 FUN_0015c004 force
arm_func 0x0015c158 DoorShutter_SetupType force
arm_func 0x0015c500 FUN_0015c500 force
arm_func 0x0015c554 FUN_0015c554 force
arm_func 0x0015c67c FUN_0015c67c force
arm_func 0x0015cc5c FUN_0015cc5c force
arm_func 0x0015cd7c FUN_0015cd7c force
arm_func 0x0015d050 BgTreemouth_DoNothing force
arm_func 0x0015d054 FUN_0015d054 force
arm_func 0x0015d0fc FUN_0015d0fc force
arm_func 0x0015d150 FUN_0015d150 force
arm_func 0x0015d1f0 FUN_0015d1f0 force
arm_func 0x0015d388 FUN_0015d388 force
arm_func 0x0015d56c FUN_0015d56c force
arm_func 0x0015d708 FUN_0015d708 force
arm_func 0x0015ddb4 ObjMure2_Wait force
arm_func 0x0015ddd4 FUN_0015ddd4 force
arm_func 0x0015dde4 ObjSwitch_EyeClosing force
arm_func 0x0015de64 FUN_0015de64 force
arm_func 0x0015deb4 FUN_0015deb4 force
arm_func 0x0015df60 FUN_0015df60 force
arm_func 0x0015e078 FUN_0015e078 force
arm_func 0x0015e11c FUN_0015e11c force
arm_func 0x0015e154 FUN_0015e154 force
arm_func 0x0015e24c FUN_0015e24c force
arm_func 0x0015e294 EnIceHono_SpreadFlames force
arm_func 0x0015e590 EnHonotrap_FlameVanish force
arm_func 0x0015e60c EnHonotrap_Flame force
arm_func 0x0015e72c BgJya1flift_DelayMove force
arm_func 0x0015e750 FUN_0015e750 force
arm_func 0x0015e94c EnFish_Dropped_FlopOnGround force
arm_func 0x0015ec70 FUN_0015ec70 force
arm_func 0x0015ecf0 FUN_0015ecf0 force
arm_func 0x0015ed68 EnHonotrap_EyeClose force
arm_func 0x0015ed98 BgJyaHaheniron_RubbleCollide force
arm_func 0x0015ee44 BgJyaHaheniron_PillarCrumble force
arm_func 0x0015eed0 FUN_0015eed0 force
arm_func 0x0015eee0 FUN_0015eee0 force
arm_func 0x0015f014 FUN_0015f014 force
arm_func 0x0015f1e4 FUN_0015f1e4 force
arm_func 0x0015f204 FUN_0015f204 force
arm_func 0x0015f25c FUN_0015f25c force
arm_func 0x0015f2cc FUN_0015f2cc force
arm_func 0x0015f32c EnDs_TalkAfterGiveOddPotion force
arm_func 0x0015f378 EnSsh_Wait force
arm_func 0x0015f418 EnSt_StartOnCeilingOrGround force
arm_func 0x0015f5d8 FUN_0015f5d8 force
arm_func 0x0015f6c8 EnFu_TeachSong force
arm_func 0x0015f738 FUN_0015f738 force
arm_func 0x0015f828 FUN_0015f828 force
arm_func 0x0015f92c FUN_0015f92c force
arm_func 0x0015fb60 FUN_0015fb60 force
arm_func 0x0015fb80 EnFu_WaitForPlayback force
arm_func 0x0015fbd8 FUN_0015fbd8 force
arm_func 0x0015fd74 FUN_0015fd74 force
arm_func 0x001601b4 FUN_001601b4 force
arm_func 0x00160378 FUN_00160378 force
arm_func 0x00160550 FUN_00160550 force
arm_func 0x00160b30 FUN_00160b30 force
arm_func 0x00160e78 FUN_00160e78 force
arm_func 0x00160f44 FUN_00160f44 force
arm_func 0x00160fc4 EnDs_OfferBluePotion force
arm_func 0x001610c4 FUN_001610c4 force
arm_func 0x00161308 EnZl1_OverrideLimbDraw force
arm_func 0x00161408 EnZl1_PostDrawLimb force
arm_func 0x00161450 BgZg_Init force
arm_func 0x00161554 FUN_00161554 force
arm_func 0x001615fc FUN_001615fc force
arm_func 0x00161640 Actor_Noop force
arm_func 0x00161644 EnNwc_Destroy force
arm_func 0x00161654 FUN_00161654 force
arm_func 0x001616a0 DemoGeff_Draw force
arm_func 0x001616c8 DemoGeff_Update force
arm_func 0x001616f0 FUN_001616f0 force
arm_func 0x001617e0 FUN_001617e0 force
arm_func 0x00161828 FUN_00161828 force
arm_func 0x00161960 EnDns_Talk force
arm_func 0x00161a60 EnHorseNormal_Init force
arm_func 0x0016201c EnHorseNormal_Destroy force
arm_func 0x00162098 EnAm_Init force
arm_func 0x00162328 EnBb_Init force
arm_func 0x00162c28 EnBb_Destroy force
arm_func 0x00162c84 EnBw_Init force
arm_func 0x00162e30 EnCs_Init force
arm_func 0x001630a4 EnDodojr_Update force
arm_func 0x00163420 EnDs_Init force
arm_func 0x0016354c EnDu_Init force
arm_func 0x001637c0 EnDu_Destroy force
arm_func 0x00163808 EnEg_Init force
arm_func 0x00163814 EnEg_Destroy force
arm_func 0x00163818 EnFd_Init force
arm_func 0x00163a88 EnFr_Init force
arm_func 0x00163b00 EnFu_Init force
arm_func 0x00163ca0 EnFu_Destroy force
arm_func 0x00163cdc EnFw_Init force
arm_func 0x00163e4c EnFw_Destroy force
arm_func 0x00163e94 EnFz_Init force
arm_func 0x00164114 EnGb_Init force
arm_func 0x001645c8 EnGm_Init force
arm_func 0x001645ec EnGm_Destroy force
arm_func 0x0016461c EnGs_Init force
arm_func 0x0016474c EnGs_Destroy force
arm_func 0x0016476c EnHorseGanon_Init force
arm_func 0x00164770 EnHorseGanon_Destroy force
arm_func 0x00164774 EnHorseZelda_Init force
arm_func 0x00164778 EnHorseZelda_Destroy force
arm_func 0x0016477c EnHs_Init force
arm_func 0x001648b0 EnHs_Destroy force
arm_func 0x001648e0 EnHy_Init force
arm_func 0x00164ad0 EnHy_Destroy force
arm_func 0x00164b0c EnIk_Init force
arm_func 0x00164fcc EnIk_Destroy force
arm_func 0x00165074 EnIn_Init force
arm_func 0x00165140 EnIn_Destroy force
arm_func 0x00165188 EnIt_Init force
arm_func 0x001651dc EnIt_Destroy force
arm_func 0x001651ec EnJj_Init force
arm_func 0x001654c4 EnJj_Destroy force
arm_func 0x00165538 EnJs_Init force
arm_func 0x00165654 EnJs_Destroy force
arm_func 0x00165684 EnKo_Init force
arm_func 0x00165948 EnKo_Destroy force
arm_func 0x00165978 EnKz_Init force
arm_func 0x00165b68 EnKz_Destroy force
arm_func 0x00165ba4 EnMb_Init force
arm_func 0x00165fe8 EnMb_Destroy force
arm_func 0x0016604c EnMd_Init force
arm_func 0x00166348 EnMd_Destroy force
arm_func 0x00166374 EnMk_Init force
arm_func 0x0016648c EnMk_Destroy force
arm_func 0x001664bc EnMm_Init force
arm_func 0x0016680c EnMm_Destroy force
arm_func 0x00166850 EnMs_Init force
arm_func 0x001669cc EnMs_Destroy force
arm_func 0x00166a00 EnMu_Init force
arm_func 0x00166aec EnMu_Destroy force
arm_func 0x00166b18 EnNb_Init force
arm_func 0x00166ed8 EnNb_Destroy force
arm_func 0x00166f0c EnNy_Init force
arm_func 0x00167184 EnNy_Destroy force
arm_func 0x00167204 FUN_00167204 force
arm_func 0x00167644 EnPeehat_Update force
arm_func 0x00167c94 EnRd_Init force
arm_func 0x00167fa0 EnRd_Destroy force
arm_func 0x00168018 EnRl_Init force
arm_func 0x00168130 EnRl_Destroy force
arm_func 0x00168158 EnRr_Init force
arm_func 0x001684c4 EnRr_Destroy force
arm_func 0x00168504 EnSa_Init force
arm_func 0x001688c4 EnSa_Destroy force