pmdsky-debug-py 10.1.15__py3-none-any.whl → 10.2.20__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pmdsky_debug_py/_release.py +1 -1
- pmdsky_debug_py/eu.py +2107 -111
- pmdsky_debug_py/eu_itcm.py +2106 -93
- pmdsky_debug_py/jp.py +2101 -105
- pmdsky_debug_py/jp_itcm.py +2106 -93
- pmdsky_debug_py/na.py +2099 -103
- pmdsky_debug_py/na_itcm.py +2106 -93
- pmdsky_debug_py/protocol.py +1100 -22
- {pmdsky_debug_py-10.1.15.dist-info → pmdsky_debug_py-10.2.20.dist-info}/METADATA +1 -1
- pmdsky_debug_py-10.2.20.dist-info/RECORD +14 -0
- pmdsky_debug_py-10.1.15.dist-info/RECORD +0 -14
- {pmdsky_debug_py-10.1.15.dist-info → pmdsky_debug_py-10.2.20.dist-info}/WHEEL +0 -0
- {pmdsky_debug_py-10.1.15.dist-info → pmdsky_debug_py-10.2.20.dist-info}/top_level.txt +0 -0
pmdsky_debug_py/eu_itcm.py
CHANGED
|
@@ -403,6 +403,24 @@ class EuItcmArm9Functions:
|
|
|
403
403
|
None,
|
|
404
404
|
)
|
|
405
405
|
|
|
406
|
+
SinAbs4096 = Symbol(
|
|
407
|
+
None,
|
|
408
|
+
None,
|
|
409
|
+
None,
|
|
410
|
+
"SinAbs4096",
|
|
411
|
+
"This function computes the sine of the absolute value of r0 using a lookup table. The period of the function is 4096, and the range is [-256, 256].\n\nr0: The value to get the sine of.\nreturn: floor(256 * sin(pi * abs(x) / 2048)) as a signed 32-bit integer.",
|
|
412
|
+
None,
|
|
413
|
+
)
|
|
414
|
+
|
|
415
|
+
CosAbs4096 = Symbol(
|
|
416
|
+
None,
|
|
417
|
+
None,
|
|
418
|
+
None,
|
|
419
|
+
"CosAbs4096",
|
|
420
|
+
"This function computes the cosine of the absolute value of r0 using a lookup table. The period of the function is 4096, and the range is [-256, 256].\n\nr0: The value to get the cosine of.\nreturn: floor(256 * cos(pi * abs(x) / 2048)) as a signed 32-bit integer.",
|
|
421
|
+
None,
|
|
422
|
+
)
|
|
423
|
+
|
|
406
424
|
UFixedPoint64CmpLt = Symbol(
|
|
407
425
|
None,
|
|
408
426
|
None,
|
|
@@ -1806,6 +1824,15 @@ class EuItcmArm9Functions:
|
|
|
1806
1824
|
None,
|
|
1807
1825
|
)
|
|
1808
1826
|
|
|
1827
|
+
ReturnEggExclusiveItem = Symbol(
|
|
1828
|
+
None,
|
|
1829
|
+
None,
|
|
1830
|
+
None,
|
|
1831
|
+
"ReturnEggExclusiveItem",
|
|
1832
|
+
"Checks if a species has an egg exclusive item, for the purposes of the Croagunk Swap Shop.\nPulls from BABY_EXCLUSIVE_ITEM_PAIRS, so Pichu/Thundershard is not correctly accounted for by this function.\nr0: monster ID\nreturn: Exclusive item_id for that monster, 0 if none found.",
|
|
1833
|
+
None,
|
|
1834
|
+
)
|
|
1835
|
+
|
|
1809
1836
|
SetActiveInventoryToMain = Symbol(
|
|
1810
1837
|
None,
|
|
1811
1838
|
None,
|
|
@@ -2724,12 +2751,30 @@ class EuItcmArm9Functions:
|
|
|
2724
2751
|
None,
|
|
2725
2752
|
)
|
|
2726
2753
|
|
|
2754
|
+
GenerateCroagunkItems = Symbol(
|
|
2755
|
+
None,
|
|
2756
|
+
None,
|
|
2757
|
+
None,
|
|
2758
|
+
"GenerateCroagunkItems",
|
|
2759
|
+
"Generates the Croagunk Swap Shop items for Croagunk in Wigglytuff's Guild.\nreturn: 1 if at least one item generated, 0 otherwise.",
|
|
2760
|
+
None,
|
|
2761
|
+
)
|
|
2762
|
+
|
|
2727
2763
|
GetSynthItem = Symbol(
|
|
2728
2764
|
None,
|
|
2729
2765
|
None,
|
|
2730
2766
|
None,
|
|
2731
2767
|
"GetSynthItem",
|
|
2732
|
-
"
|
|
2768
|
+
"Searches synth_template in SYNTH/synth.bin for a matching exclusive item.\nr0: item_id of an exclusive item.\nreturn: pointer to synth_template containing that item. 0 if no match was found.",
|
|
2769
|
+
None,
|
|
2770
|
+
)
|
|
2771
|
+
|
|
2772
|
+
GetValidSynthsForSpecies = Symbol(
|
|
2773
|
+
None,
|
|
2774
|
+
None,
|
|
2775
|
+
None,
|
|
2776
|
+
"GetValidSynthsForSpecies",
|
|
2777
|
+
"Fills out monster_synth_data for the specified monster, containing the synth templates that apply to said monster.\nr0: monster_id of the monster\nr1: [output] Pointer to an empty monster_synth_data, to be filled by the function.\nr2: Pointer to a type_synth_data, so the monster's types can be enabled in the bitfield.\nreturn: 1 if at least one synth_template matches the species, and 0 if not.",
|
|
2733
2778
|
None,
|
|
2734
2779
|
)
|
|
2735
2780
|
|
|
@@ -2792,7 +2837,7 @@ class EuItcmArm9Functions:
|
|
|
2792
2837
|
None,
|
|
2793
2838
|
None,
|
|
2794
2839
|
"InitMove",
|
|
2795
|
-
"Initializes a move info struct.\n\nThis sets f_exists and f_enabled_for_ai on the flags, the ID to the given ID, the PP to the max PP for the move ID, and the ginseng boost to 0.\n\nr0: pointer to move to initialize\nr1: move ID",
|
|
2840
|
+
"Initializes a move info struct.\n\nThis sets f_exists and f_enabled_for_ai on the flags, the ID to the given ID, the PP to the max PP for the move ID, and the ginseng boost to 0.\n\nr0: [output] pointer to move to initialize\nr1: move ID",
|
|
2796
2841
|
None,
|
|
2797
2842
|
)
|
|
2798
2843
|
|
|
@@ -2967,12 +3012,12 @@ class EuItcmArm9Functions:
|
|
|
2967
3012
|
None,
|
|
2968
3013
|
)
|
|
2969
3014
|
|
|
2970
|
-
|
|
3015
|
+
IsUsableWhileTaunted = Symbol(
|
|
2971
3016
|
None,
|
|
2972
3017
|
None,
|
|
2973
3018
|
None,
|
|
2974
|
-
"
|
|
2975
|
-
"
|
|
3019
|
+
"IsUsableWhileTaunted",
|
|
3020
|
+
"Returns true if the given move can be used while the user is affected by Taunt, or false if the move cannot be used while taunted.\n\nr0: move\nreturn: bool whether the move can be used while taunted.",
|
|
2976
3021
|
None,
|
|
2977
3022
|
)
|
|
2978
3023
|
|
|
@@ -3408,6 +3453,15 @@ class EuItcmArm9Functions:
|
|
|
3408
3453
|
None,
|
|
3409
3454
|
)
|
|
3410
3455
|
|
|
3456
|
+
PlaySeByIdVolumeWrapper = Symbol(
|
|
3457
|
+
None,
|
|
3458
|
+
None,
|
|
3459
|
+
None,
|
|
3460
|
+
"PlaySeByIdVolumeWrapper",
|
|
3461
|
+
"Wrapper for PlaySeByIdVolume with 0x100 as the volume.\n\nr0: Sound effect ID",
|
|
3462
|
+
None,
|
|
3463
|
+
)
|
|
3464
|
+
|
|
3411
3465
|
PlaySeVolumeWrapper = Symbol(
|
|
3412
3466
|
None,
|
|
3413
3467
|
None,
|
|
@@ -3444,6 +3498,15 @@ class EuItcmArm9Functions:
|
|
|
3444
3498
|
None,
|
|
3445
3499
|
)
|
|
3446
3500
|
|
|
3501
|
+
PlayMeById = Symbol(
|
|
3502
|
+
None,
|
|
3503
|
+
None,
|
|
3504
|
+
None,
|
|
3505
|
+
"PlayMeById",
|
|
3506
|
+
"Initializes some values and then calls SendAudioCommand to play a ME track (musical sound effect).\n\nFor a list of tracks, see https://wiki.skytemple.org/index.php?title=List_of_Sound_Effects#ME\n\nChecks for DEBUG_FLAG_BGM_OFF. The volume is set to either 0 or 255 depending on the flag before calling SendAudioCommand.\n\nr0: ME ID",
|
|
3507
|
+
None,
|
|
3508
|
+
)
|
|
3509
|
+
|
|
3447
3510
|
PlaySeByIdVolume = Symbol(
|
|
3448
3511
|
None,
|
|
3449
3512
|
None,
|
|
@@ -4326,6 +4389,24 @@ class EuItcmArm9Functions:
|
|
|
4326
4389
|
None,
|
|
4327
4390
|
)
|
|
4328
4391
|
|
|
4392
|
+
GetSize0x80Buffer = Symbol(
|
|
4393
|
+
None,
|
|
4394
|
+
None,
|
|
4395
|
+
None,
|
|
4396
|
+
"GetSize0x80Buffer",
|
|
4397
|
+
"Returns a pointer to a buffer of size 0x80.\n\nr0: index in a global list of buffers\nreturn: buffer pointer",
|
|
4398
|
+
None,
|
|
4399
|
+
)
|
|
4400
|
+
|
|
4401
|
+
GetSize0x80Buffer2 = Symbol(
|
|
4402
|
+
None,
|
|
4403
|
+
None,
|
|
4404
|
+
None,
|
|
4405
|
+
"GetSize0x80Buffer2",
|
|
4406
|
+
"Same as GetSize0x80Buffer, except the buffer is from a separate list.\n\nr0: index in a global list of buffers\nreturn: buffer pointer",
|
|
4407
|
+
None,
|
|
4408
|
+
)
|
|
4409
|
+
|
|
4329
4410
|
GetDungeonResultString = Symbol(
|
|
4330
4411
|
None,
|
|
4331
4412
|
None,
|
|
@@ -4335,6 +4416,15 @@ class EuItcmArm9Functions:
|
|
|
4335
4416
|
None,
|
|
4336
4417
|
)
|
|
4337
4418
|
|
|
4419
|
+
SubstitutePlaceholderItemTags = Symbol(
|
|
4420
|
+
None,
|
|
4421
|
+
None,
|
|
4422
|
+
None,
|
|
4423
|
+
"SubstitutePlaceholderItemTags",
|
|
4424
|
+
"Sets what item's name should be displayed in place of the [item:r0] tag when printing a string to the message log.\n\nIs almost always accompanied by a SetMessageLogPreprocessorArgsIdVal(tag id, tag id | 0x40000) call.\n\nr0: tag id\nr1: item struct pointer\nr2: some static address related to storing the item (always the same throughout the code)",
|
|
4425
|
+
None,
|
|
4426
|
+
)
|
|
4427
|
+
|
|
4338
4428
|
SetQuestionMarks = Symbol(
|
|
4339
4429
|
None,
|
|
4340
4430
|
None,
|
|
@@ -4484,7 +4574,7 @@ class EuItcmArm9Functions:
|
|
|
4484
4574
|
None,
|
|
4485
4575
|
None,
|
|
4486
4576
|
"GetTalkLine",
|
|
4487
|
-
"
|
|
4577
|
+
"Gets the string id to be displayed for dialogue with a team member.\n\nr0: personality_index (either a monster id or some constant)\nr1: talk type\nr2: restrictions\nreturn: string id",
|
|
4488
4578
|
None,
|
|
4489
4579
|
)
|
|
4490
4580
|
|
|
@@ -4785,6 +4875,24 @@ class EuItcmArm9Functions:
|
|
|
4785
4875
|
None,
|
|
4786
4876
|
)
|
|
4787
4877
|
|
|
4878
|
+
GetWindowIdSelectedItemOnPage = Symbol(
|
|
4879
|
+
None,
|
|
4880
|
+
None,
|
|
4881
|
+
None,
|
|
4882
|
+
"GetWindowIdSelectedItemOnPage",
|
|
4883
|
+
"Gets the index on the page of the current item the user has selected on the menu given by the window_id.\n\nr0: window id\nreturn: index of current selected item on the page",
|
|
4884
|
+
None,
|
|
4885
|
+
)
|
|
4886
|
+
|
|
4887
|
+
GetSimpleMenuResult = Symbol(
|
|
4888
|
+
None,
|
|
4889
|
+
None,
|
|
4890
|
+
None,
|
|
4891
|
+
"GetSimpleMenuResult",
|
|
4892
|
+
"Note: unverified, ported from Irdkwia's notes\n\nr0: window_id\nreturn: ?",
|
|
4893
|
+
None,
|
|
4894
|
+
)
|
|
4895
|
+
|
|
4788
4896
|
UpdateParentMenu = Symbol(
|
|
4789
4897
|
None,
|
|
4790
4898
|
None,
|
|
@@ -4866,15 +4974,6 @@ class EuItcmArm9Functions:
|
|
|
4866
4974
|
None,
|
|
4867
4975
|
)
|
|
4868
4976
|
|
|
4869
|
-
GetSimpleMenuResult = Symbol(
|
|
4870
|
-
None,
|
|
4871
|
-
None,
|
|
4872
|
-
None,
|
|
4873
|
-
"GetSimpleMenuResult",
|
|
4874
|
-
"Note: unverified, ported from Irdkwia's notes\n\nr0: window_id\nreturn: ?",
|
|
4875
|
-
None,
|
|
4876
|
-
)
|
|
4877
|
-
|
|
4878
4977
|
UpdateSimpleMenu = Symbol(
|
|
4879
4978
|
None,
|
|
4880
4979
|
None,
|
|
@@ -4965,6 +5064,15 @@ class EuItcmArm9Functions:
|
|
|
4965
5064
|
None,
|
|
4966
5065
|
)
|
|
4967
5066
|
|
|
5067
|
+
DrawAdvancedMenu = Symbol(
|
|
5068
|
+
None,
|
|
5069
|
+
None,
|
|
5070
|
+
None,
|
|
5071
|
+
"DrawAdvancedMenu",
|
|
5072
|
+
"Draws the contents of an advanced menu on the screen.\n\nr0: window pointer",
|
|
5073
|
+
None,
|
|
5074
|
+
)
|
|
5075
|
+
|
|
4968
5076
|
CreateCollectionMenu = Symbol(
|
|
4969
5077
|
None,
|
|
4970
5078
|
None,
|
|
@@ -5523,6 +5631,15 @@ class EuItcmArm9Functions:
|
|
|
5523
5631
|
None,
|
|
5524
5632
|
)
|
|
5525
5633
|
|
|
5634
|
+
AddMessageToAlertBox = Symbol(
|
|
5635
|
+
None,
|
|
5636
|
+
None,
|
|
5637
|
+
None,
|
|
5638
|
+
"AddMessageToAlertBox",
|
|
5639
|
+
"Adds a message to the dungeon alert box.\n\nr0: window_id\nr1: preprocessor flags\nr2: message string pointer\nr3: preprocessor_args struct pointer\nstack[0]: whether the message is the start of a new group (meaning it should be preceded by a horizontal line)\nreturn: whether the message was successfully added",
|
|
5640
|
+
None,
|
|
5641
|
+
)
|
|
5642
|
+
|
|
5526
5643
|
IsAlertBoxActive = Symbol(
|
|
5527
5644
|
None,
|
|
5528
5645
|
None,
|
|
@@ -5631,6 +5748,15 @@ class EuItcmArm9Functions:
|
|
|
5631
5748
|
None,
|
|
5632
5749
|
)
|
|
5633
5750
|
|
|
5751
|
+
GetWindowIdPageStart = Symbol(
|
|
5752
|
+
None,
|
|
5753
|
+
None,
|
|
5754
|
+
None,
|
|
5755
|
+
"GetWindowIdPageStart",
|
|
5756
|
+
"Gets the item the current menu page of a given window id starts on (the current page id times the maximum number of items on one page).\n\nr0: window id\nreturn: first item on page",
|
|
5757
|
+
None,
|
|
5758
|
+
)
|
|
5759
|
+
|
|
5634
5760
|
GetAdvancedTextBoxFlags2 = Symbol(
|
|
5635
5761
|
None,
|
|
5636
5762
|
None,
|
|
@@ -5744,7 +5870,88 @@ class EuItcmArm9Functions:
|
|
|
5744
5870
|
None,
|
|
5745
5871
|
None,
|
|
5746
5872
|
"IsMenuOptionActive",
|
|
5747
|
-
"Called whenever a menu option is selected. Returns whether the option is active or not.\n\nr0:
|
|
5873
|
+
"Called whenever a menu option is selected. Returns whether the option is active or not.\n\nr0: window_input_ctx struct pointer\nreturn: True if the menu option is enabled, false otherwise.",
|
|
5874
|
+
None,
|
|
5875
|
+
)
|
|
5876
|
+
|
|
5877
|
+
GetSelectedItemOnPage = Symbol(
|
|
5878
|
+
None,
|
|
5879
|
+
None,
|
|
5880
|
+
None,
|
|
5881
|
+
"GetSelectedItemOnPage",
|
|
5882
|
+
"Gets the index on the page of the current item the user has selected.\n\nr0: window_input_ctx struct pointer\nreturn: index of current selected item on the page",
|
|
5883
|
+
None,
|
|
5884
|
+
)
|
|
5885
|
+
|
|
5886
|
+
GetCurrentPage = Symbol(
|
|
5887
|
+
None,
|
|
5888
|
+
None,
|
|
5889
|
+
None,
|
|
5890
|
+
"GetCurrentPage",
|
|
5891
|
+
"Gets the index of the current menu page the user is on.\n\nr0: window_input_ctx struct pointer\nreturn: current page",
|
|
5892
|
+
None,
|
|
5893
|
+
)
|
|
5894
|
+
|
|
5895
|
+
GetPageStart = Symbol(
|
|
5896
|
+
None,
|
|
5897
|
+
None,
|
|
5898
|
+
None,
|
|
5899
|
+
"GetPageStart",
|
|
5900
|
+
"Gets the index of the item the current menu page starts on (the current page index times the maximum number of items on one page).\n\nr0: window_input_ctx struct pointer\nreturn: index of first item on page",
|
|
5901
|
+
None,
|
|
5902
|
+
)
|
|
5903
|
+
|
|
5904
|
+
GetSelectedMenuItemIdx = Symbol(
|
|
5905
|
+
None,
|
|
5906
|
+
None,
|
|
5907
|
+
None,
|
|
5908
|
+
"GetSelectedMenuItemIdx",
|
|
5909
|
+
"Gets the index of the current menu item the user has selected.\n\nr0: window_input_ctx struct pointer\nreturn: index of current selected item",
|
|
5910
|
+
None,
|
|
5911
|
+
)
|
|
5912
|
+
|
|
5913
|
+
GetTotalNumMenuItems = Symbol(
|
|
5914
|
+
None,
|
|
5915
|
+
None,
|
|
5916
|
+
None,
|
|
5917
|
+
"GetTotalNumMenuItems",
|
|
5918
|
+
"Gets the total number of items in the menu.\n\nr0: window_input_ctx struct pointer\nreturn: number of menu items",
|
|
5919
|
+
None,
|
|
5920
|
+
)
|
|
5921
|
+
|
|
5922
|
+
GetNumItemsOnPage = Symbol(
|
|
5923
|
+
None,
|
|
5924
|
+
None,
|
|
5925
|
+
None,
|
|
5926
|
+
"GetNumItemsOnPage",
|
|
5927
|
+
"Gets the number of items on the current menu page.\n\nr0: window_input_ctx struct pointer\nreturn: number of items on page",
|
|
5928
|
+
None,
|
|
5929
|
+
)
|
|
5930
|
+
|
|
5931
|
+
GetMaxItemsOnPage = Symbol(
|
|
5932
|
+
None,
|
|
5933
|
+
None,
|
|
5934
|
+
None,
|
|
5935
|
+
"GetMaxItemsOnPage",
|
|
5936
|
+
"Gets the maximum possible number of items the menu can hold on one of its pages.\n\nr0: window_input_ctx struct pointer\nreturn: number of menu pages",
|
|
5937
|
+
None,
|
|
5938
|
+
)
|
|
5939
|
+
|
|
5940
|
+
GetTotalNumPages = Symbol(
|
|
5941
|
+
None,
|
|
5942
|
+
None,
|
|
5943
|
+
None,
|
|
5944
|
+
"GetTotalNumPages",
|
|
5945
|
+
"Gets the total number of pages in the menu.\n\nr0: window_input_ctx struct pointer\nreturn: number of menu pages",
|
|
5946
|
+
None,
|
|
5947
|
+
)
|
|
5948
|
+
|
|
5949
|
+
GetPageItemYOffset = Symbol(
|
|
5950
|
+
None,
|
|
5951
|
+
None,
|
|
5952
|
+
None,
|
|
5953
|
+
"GetPageItemYOffset",
|
|
5954
|
+
"Gets the y-offset of a given item on the current menu page.\n\nr0: window_input_ctx struct pointer\nr1: item index on page, in range [0, n_items_on_page)\nreturn: y-offset",
|
|
5748
5955
|
None,
|
|
5749
5956
|
)
|
|
5750
5957
|
|
|
@@ -5766,6 +5973,60 @@ class EuItcmArm9Functions:
|
|
|
5766
5973
|
None,
|
|
5767
5974
|
)
|
|
5768
5975
|
|
|
5976
|
+
OverlayLoadEntriesEqual = Symbol(
|
|
5977
|
+
None,
|
|
5978
|
+
None,
|
|
5979
|
+
None,
|
|
5980
|
+
"OverlayLoadEntriesEqual",
|
|
5981
|
+
"Checks if two overlay_load_entries have the same values for all of their fields.\n\nr0: overlay_load_entry pointer\nr1: overlay_load_entry pointer\nreturn: bool",
|
|
5982
|
+
None,
|
|
5983
|
+
)
|
|
5984
|
+
|
|
5985
|
+
FreeActiveMenu = Symbol(
|
|
5986
|
+
None,
|
|
5987
|
+
None,
|
|
5988
|
+
None,
|
|
5989
|
+
"FreeActiveMenu",
|
|
5990
|
+
"Frees the currently active menu by calling the destructor function of the active entry in menu_control.\n\nNo params.",
|
|
5991
|
+
None,
|
|
5992
|
+
)
|
|
5993
|
+
|
|
5994
|
+
InitMenu = Symbol(
|
|
5995
|
+
None,
|
|
5996
|
+
None,
|
|
5997
|
+
None,
|
|
5998
|
+
"InitMenu",
|
|
5999
|
+
"Initializes a menu by setting the incoming_entry field of menu_control to the given overlay_load_entry.\n\nr0: overlay_load_entry pointer\nreturn: whether the menu was successfully initialized",
|
|
6000
|
+
None,
|
|
6001
|
+
)
|
|
6002
|
+
|
|
6003
|
+
InitMenuWithWindowExtraInfo = Symbol(
|
|
6004
|
+
None,
|
|
6005
|
+
None,
|
|
6006
|
+
None,
|
|
6007
|
+
"InitMenuWithWindowExtraInfo",
|
|
6008
|
+
"Has the same functionality as InitMenu except also tries to initialize menu_control's window_extra_info struct.\n\nr0: overlay_load_entry pointer\nr1: whether there is a window_extra_info struct\nr2: window_extra_info pointer\nreturn: whether the menu was successfully initialized",
|
|
6009
|
+
None,
|
|
6010
|
+
)
|
|
6011
|
+
|
|
6012
|
+
CopyMenuControlWindowExtraInfo = Symbol(
|
|
6013
|
+
None,
|
|
6014
|
+
None,
|
|
6015
|
+
None,
|
|
6016
|
+
"CopyMenuControlWindowExtraInfo",
|
|
6017
|
+
"Copies menu_control's window_extra_info to the given address.\n\nr0: [output] window_extra_info pointer\nreturn: whether the window extra info was successfully copied",
|
|
6018
|
+
None,
|
|
6019
|
+
)
|
|
6020
|
+
|
|
6021
|
+
HandleMenus = Symbol(
|
|
6022
|
+
None,
|
|
6023
|
+
None,
|
|
6024
|
+
None,
|
|
6025
|
+
"HandleMenus",
|
|
6026
|
+
"Master function called on every frame for handling the game's menus (seemingly the vast majority with the exception of some in dungeon mode). \n\nThis includes updating them, freeing them, and entering and exiting their respective overlays if applicable.\n\nNo params.",
|
|
6027
|
+
None,
|
|
6028
|
+
)
|
|
6029
|
+
|
|
5769
6030
|
SetupAndShowKeyboard = Symbol(
|
|
5770
6031
|
None,
|
|
5771
6032
|
None,
|
|
@@ -5829,6 +6090,15 @@ class EuItcmArm9Functions:
|
|
|
5829
6090
|
None,
|
|
5830
6091
|
)
|
|
5831
6092
|
|
|
6093
|
+
GetCheckIqMenuSkillString = Symbol(
|
|
6094
|
+
None,
|
|
6095
|
+
None,
|
|
6096
|
+
None,
|
|
6097
|
+
"GetCheckIqMenuSkillString",
|
|
6098
|
+
"Gets the string for a team member's IQ skill to be displayed in the Check IQ menu.\n\nIs stored as an advanced_menu_entry_fn_t in the advanced_menu struct.\n\nr0: [output] buffer\nr1: id in team member's IQ skill list\nreturn: input buffer",
|
|
6099
|
+
None,
|
|
6100
|
+
)
|
|
6101
|
+
|
|
5832
6102
|
GetNotifyNote = Symbol(
|
|
5833
6103
|
None,
|
|
5834
6104
|
None,
|
|
@@ -6099,6 +6369,15 @@ class EuItcmArm9Functions:
|
|
|
6099
6369
|
None,
|
|
6100
6370
|
)
|
|
6101
6371
|
|
|
6372
|
+
LoadScriptVariableValueString = Symbol(
|
|
6373
|
+
None,
|
|
6374
|
+
None,
|
|
6375
|
+
None,
|
|
6376
|
+
"LoadScriptVariableValueString",
|
|
6377
|
+
"Loads a string from the value of a given script variable. Adds a trailing null terminator in the output.\n\nr0: script variable ID\nr1: [output] script variable value string\nr2: number of characters to load",
|
|
6378
|
+
None,
|
|
6379
|
+
)
|
|
6380
|
+
|
|
6102
6381
|
SaveScriptVariableValueBytes = Symbol(
|
|
6103
6382
|
None,
|
|
6104
6383
|
None,
|
|
@@ -6117,6 +6396,78 @@ class EuItcmArm9Functions:
|
|
|
6117
6396
|
None,
|
|
6118
6397
|
)
|
|
6119
6398
|
|
|
6399
|
+
CalcScriptVariables = Symbol(
|
|
6400
|
+
None,
|
|
6401
|
+
None,
|
|
6402
|
+
None,
|
|
6403
|
+
"CalcScriptVariables",
|
|
6404
|
+
"Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
|
|
6405
|
+
None,
|
|
6406
|
+
)
|
|
6407
|
+
|
|
6408
|
+
CompareScriptVariables = Symbol(
|
|
6409
|
+
None,
|
|
6410
|
+
None,
|
|
6411
|
+
None,
|
|
6412
|
+
"CompareScriptVariables",
|
|
6413
|
+
"Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
|
|
6414
|
+
None,
|
|
6415
|
+
)
|
|
6416
|
+
|
|
6417
|
+
CalcScriptVariablesVeneer = Symbol(
|
|
6418
|
+
None,
|
|
6419
|
+
None,
|
|
6420
|
+
None,
|
|
6421
|
+
"CalcScriptVariablesVeneer",
|
|
6422
|
+
"Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
|
|
6423
|
+
None,
|
|
6424
|
+
)
|
|
6425
|
+
|
|
6426
|
+
CalcAndUpdateScriptVarWithOtherValue = Symbol(
|
|
6427
|
+
None,
|
|
6428
|
+
None,
|
|
6429
|
+
None,
|
|
6430
|
+
"CalcAndUpdateScriptVarWithOtherValue",
|
|
6431
|
+
"Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
|
|
6432
|
+
None,
|
|
6433
|
+
)
|
|
6434
|
+
|
|
6435
|
+
CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
|
|
6436
|
+
None,
|
|
6437
|
+
None,
|
|
6438
|
+
None,
|
|
6439
|
+
"CalcAndUpdateScriptVarWithOtherScriptVar",
|
|
6440
|
+
"Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
|
|
6441
|
+
None,
|
|
6442
|
+
)
|
|
6443
|
+
|
|
6444
|
+
CompareScriptVariablesVeneer = Symbol(
|
|
6445
|
+
None,
|
|
6446
|
+
None,
|
|
6447
|
+
None,
|
|
6448
|
+
"CompareScriptVariablesVeneer",
|
|
6449
|
+
"Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
|
|
6450
|
+
None,
|
|
6451
|
+
)
|
|
6452
|
+
|
|
6453
|
+
LoadAndCompareScriptVarAndValue = Symbol(
|
|
6454
|
+
None,
|
|
6455
|
+
None,
|
|
6456
|
+
None,
|
|
6457
|
+
"LoadAndCompareScriptVarAndValue",
|
|
6458
|
+
"Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
|
|
6459
|
+
None,
|
|
6460
|
+
)
|
|
6461
|
+
|
|
6462
|
+
LoadAndCompareScriptVars = Symbol(
|
|
6463
|
+
None,
|
|
6464
|
+
None,
|
|
6465
|
+
None,
|
|
6466
|
+
"LoadAndCompareScriptVars",
|
|
6467
|
+
"Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
|
|
6468
|
+
None,
|
|
6469
|
+
)
|
|
6470
|
+
|
|
6120
6471
|
EventFlagResume = Symbol(
|
|
6121
6472
|
None,
|
|
6122
6473
|
None,
|
|
@@ -6576,6 +6927,15 @@ class EuItcmArm9Functions:
|
|
|
6576
6927
|
None,
|
|
6577
6928
|
)
|
|
6578
6929
|
|
|
6930
|
+
TilesetSecondaryTerrainIsChasm = Symbol(
|
|
6931
|
+
None,
|
|
6932
|
+
None,
|
|
6933
|
+
None,
|
|
6934
|
+
"TilesetSecondaryTerrainIsChasm",
|
|
6935
|
+
"Returns true if the given tileset has a chasm secondary terrain.\n\nr0: tileset id\nreturn: bool",
|
|
6936
|
+
None,
|
|
6937
|
+
)
|
|
6938
|
+
|
|
6579
6939
|
GetNbFloors = Symbol(
|
|
6580
6940
|
None,
|
|
6581
6941
|
None,
|
|
@@ -8795,7 +9155,7 @@ class EuItcmArm9Functions:
|
|
|
8795
9155
|
None,
|
|
8796
9156
|
None,
|
|
8797
9157
|
"DungeonRequestsDoneWrapper",
|
|
8798
|
-
"Calls DungeonRequestsDone with the second argument set to false.\n\nr0: ?\nreturn: number of
|
|
9158
|
+
"Calls DungeonRequestsDone with the second argument set to false.\n\nr0: ?\nreturn: number of missions completed",
|
|
8799
9159
|
None,
|
|
8800
9160
|
)
|
|
8801
9161
|
|
|
@@ -8813,7 +9173,7 @@ class EuItcmArm9Functions:
|
|
|
8813
9173
|
None,
|
|
8814
9174
|
None,
|
|
8815
9175
|
"AddMissionToJobList",
|
|
8816
|
-
"Adds a mission to the Job List.\n\nr0: mission to add",
|
|
9176
|
+
"Adds a mission to the Job List.\n\nr0: mission to add\nreturn: bool (0 if mission was successfully added)",
|
|
8817
9177
|
None,
|
|
8818
9178
|
)
|
|
8819
9179
|
|
|
@@ -9042,12 +9402,21 @@ class EuItcmArm9Functions:
|
|
|
9042
9402
|
None,
|
|
9043
9403
|
)
|
|
9044
9404
|
|
|
9045
|
-
|
|
9405
|
+
GetScriptEntityMonsterId = Symbol(
|
|
9046
9406
|
None,
|
|
9047
9407
|
None,
|
|
9048
9408
|
None,
|
|
9049
|
-
"
|
|
9050
|
-
"
|
|
9409
|
+
"GetScriptEntityMonsterId",
|
|
9410
|
+
"Returns the monster id of the script entity given by the id.\n\nr0: script_entity_id\nreturn: monster id",
|
|
9411
|
+
None,
|
|
9412
|
+
)
|
|
9413
|
+
|
|
9414
|
+
GetScriptEntityMatchingStorageId = Symbol(
|
|
9415
|
+
None,
|
|
9416
|
+
None,
|
|
9417
|
+
None,
|
|
9418
|
+
"GetScriptEntityMatchingStorageId",
|
|
9419
|
+
"Returns the storage id matching the script entity given by the id.\n\nr0: script_entity_id\nreturn: storage ID",
|
|
9051
9420
|
None,
|
|
9052
9421
|
)
|
|
9053
9422
|
|
|
@@ -9056,7 +9425,7 @@ class EuItcmArm9Functions:
|
|
|
9056
9425
|
None,
|
|
9057
9426
|
None,
|
|
9058
9427
|
"SetActorTalkMainAndActorTalkSub",
|
|
9059
|
-
"Sets ACTOR_TALK_MAIN and ACTOR_TALK_SUB to given actor IDs.\n\nr0:
|
|
9428
|
+
"Sets ACTOR_TALK_MAIN and ACTOR_TALK_SUB to given actor IDs.\n\nr0: script_entity_id for ACTOR_TALK_MAIN\nr1: script_entity_id for ACTOR_TALK_SUB",
|
|
9060
9429
|
None,
|
|
9061
9430
|
)
|
|
9062
9431
|
|
|
@@ -9065,7 +9434,7 @@ class EuItcmArm9Functions:
|
|
|
9065
9434
|
None,
|
|
9066
9435
|
None,
|
|
9067
9436
|
"SetActorTalkMain",
|
|
9068
|
-
"Sets ACTOR_TALK_MAIN to be actor_id.\nImplements SPECIAL_PROC_SET_ACTOR_TALK_MAIN (see ScriptSpecialProcessCall).\n\nr0:
|
|
9437
|
+
"Sets ACTOR_TALK_MAIN to be actor_id.\nImplements SPECIAL_PROC_SET_ACTOR_TALK_MAIN (see ScriptSpecialProcessCall).\n\nr0: script_entity_id",
|
|
9069
9438
|
None,
|
|
9070
9439
|
)
|
|
9071
9440
|
|
|
@@ -9074,7 +9443,7 @@ class EuItcmArm9Functions:
|
|
|
9074
9443
|
None,
|
|
9075
9444
|
None,
|
|
9076
9445
|
"SetActorTalkSub",
|
|
9077
|
-
"Sets ACTOR_TALK_SUB to be actor_id.\nImplements SPECIAL_PROC_SET_ACTOR_TALK_SUB (see ScriptSpecialProcessCall).\n\nr0:
|
|
9446
|
+
"Sets ACTOR_TALK_SUB to be actor_id.\nImplements SPECIAL_PROC_SET_ACTOR_TALK_SUB (see ScriptSpecialProcessCall).\n\nr0: script_entity_id",
|
|
9078
9447
|
None,
|
|
9079
9448
|
)
|
|
9080
9449
|
|
|
@@ -9215,10 +9584,16 @@ class EuItcmArm9Functions:
|
|
|
9215
9584
|
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
9216
9585
|
)
|
|
9217
9586
|
|
|
9587
|
+
IsAffectedByTaunt = _Deprecated("IsAffectedByTaunt", IsUsableWhileTaunted)
|
|
9588
|
+
|
|
9218
9589
|
IsMoveRangeString19 = _Deprecated("IsMoveRangeString19", IsMoveRangeStringUser)
|
|
9219
9590
|
|
|
9220
9591
|
GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
|
|
9221
9592
|
|
|
9593
|
+
GetActorMatchingStorageId = _Deprecated(
|
|
9594
|
+
"GetActorMatchingStorageId", GetScriptEntityMatchingStorageId
|
|
9595
|
+
)
|
|
9596
|
+
|
|
9222
9597
|
|
|
9223
9598
|
class EuItcmArm9Data:
|
|
9224
9599
|
|
|
@@ -9352,6 +9727,15 @@ class EuItcmArm9Data:
|
|
|
9352
9727
|
"uint32_t",
|
|
9353
9728
|
)
|
|
9354
9729
|
|
|
9730
|
+
SINE_VALUE_TABLE = Symbol(
|
|
9731
|
+
None,
|
|
9732
|
+
None,
|
|
9733
|
+
None,
|
|
9734
|
+
"SINE_VALUE_TABLE",
|
|
9735
|
+
"A lookup table for the values of sine. The table contains 1024 values evenly distributed in the range [sin(0) * 256, sin(pi / 2) * 256); i.e., the first quarter of the unit circle. The rest of sine (and cosine) is derived by reusing these values.",
|
|
9736
|
+
"int16_t[1024]",
|
|
9737
|
+
)
|
|
9738
|
+
|
|
9355
9739
|
NATURAL_LOG_VALUE_TABLE = Symbol(
|
|
9356
9740
|
None,
|
|
9357
9741
|
None,
|
|
@@ -9430,13 +9814,13 @@ class EuItcmArm9Data:
|
|
|
9430
9814
|
"",
|
|
9431
9815
|
)
|
|
9432
9816
|
|
|
9433
|
-
|
|
9817
|
+
BABY_EXCLUSIVE_ITEM_PAIRS = Symbol(
|
|
9434
9818
|
None,
|
|
9435
9819
|
None,
|
|
9436
9820
|
None,
|
|
9437
|
-
"
|
|
9438
|
-
"
|
|
9439
|
-
"",
|
|
9821
|
+
"BABY_EXCLUSIVE_ITEM_PAIRS",
|
|
9822
|
+
"Stores the IDs of each baby Pokemon (and Phione), as well as the exclusive item they hatch with.",
|
|
9823
|
+
"struct baby_exclusive_item_pair[16]",
|
|
9440
9824
|
)
|
|
9441
9825
|
|
|
9442
9826
|
KECLEON_SHOP_ITEM_TABLE_LISTS_1 = Symbol(
|
|
@@ -9700,6 +10084,15 @@ class EuItcmArm9Data:
|
|
|
9700
10084
|
"struct window_params",
|
|
9701
10085
|
)
|
|
9702
10086
|
|
|
10087
|
+
NULL_OVERLAY_LOAD_ENTRY = Symbol(
|
|
10088
|
+
None,
|
|
10089
|
+
None,
|
|
10090
|
+
None,
|
|
10091
|
+
"NULL_OVERLAY_LOAD_ENTRY",
|
|
10092
|
+
"An overlay_load_entry whose values are all zeroes.\n\ntype: overlay_load_entry",
|
|
10093
|
+
"struct overlay_load_entry",
|
|
10094
|
+
)
|
|
10095
|
+
|
|
9703
10096
|
PARTNER_TALK_KIND_TABLE = Symbol(
|
|
9704
10097
|
None,
|
|
9705
10098
|
None,
|
|
@@ -9709,6 +10102,33 @@ class EuItcmArm9Data:
|
|
|
9709
10102
|
"struct partner_talk_kind_table_entry[11]",
|
|
9710
10103
|
)
|
|
9711
10104
|
|
|
10105
|
+
EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
|
|
10106
|
+
None,
|
|
10107
|
+
None,
|
|
10108
|
+
None,
|
|
10109
|
+
"EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
|
|
10110
|
+
"Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
|
|
10111
|
+
"struct prog_pos_info",
|
|
10112
|
+
)
|
|
10113
|
+
|
|
10114
|
+
EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
|
|
10115
|
+
None,
|
|
10116
|
+
None,
|
|
10117
|
+
None,
|
|
10118
|
+
"EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
|
|
10119
|
+
"Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
|
|
10120
|
+
"struct prog_pos_info",
|
|
10121
|
+
)
|
|
10122
|
+
|
|
10123
|
+
EVENT_FLAG_FILE_NAME = Symbol(
|
|
10124
|
+
None,
|
|
10125
|
+
None,
|
|
10126
|
+
None,
|
|
10127
|
+
"EVENT_FLAG_FILE_NAME",
|
|
10128
|
+
"The file name 'event_flag.c', used for debug logging.",
|
|
10129
|
+
"",
|
|
10130
|
+
)
|
|
10131
|
+
|
|
9712
10132
|
SCRIPT_VARS_LOCALS = Symbol(
|
|
9713
10133
|
None,
|
|
9714
10134
|
None,
|
|
@@ -9718,6 +10138,24 @@ class EuItcmArm9Data:
|
|
|
9718
10138
|
"struct script_local_var_table",
|
|
9719
10139
|
)
|
|
9720
10140
|
|
|
10141
|
+
EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
|
|
10142
|
+
None,
|
|
10143
|
+
None,
|
|
10144
|
+
None,
|
|
10145
|
+
"EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
|
|
10146
|
+
"Error log message for an unrecognized operation in CalcScriptVariables.",
|
|
10147
|
+
"",
|
|
10148
|
+
)
|
|
10149
|
+
|
|
10150
|
+
EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
|
|
10151
|
+
None,
|
|
10152
|
+
None,
|
|
10153
|
+
None,
|
|
10154
|
+
"EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
|
|
10155
|
+
"Error log message for an unrecognized operation in CompareScriptVariables.",
|
|
10156
|
+
"",
|
|
10157
|
+
)
|
|
10158
|
+
|
|
9721
10159
|
SCRIPT_VARS = Symbol(
|
|
9722
10160
|
None,
|
|
9723
10161
|
None,
|
|
@@ -10159,6 +10597,15 @@ class EuItcmArm9Data:
|
|
|
10159
10597
|
"fx32_8",
|
|
10160
10598
|
)
|
|
10161
10599
|
|
|
10600
|
+
TACTICS_FOLLOW_LEADER = Symbol(
|
|
10601
|
+
None,
|
|
10602
|
+
None,
|
|
10603
|
+
None,
|
|
10604
|
+
"TACTICS_FOLLOW_LEADER",
|
|
10605
|
+
"Array of boolean values corresponding to each tactic_id enum, determining whether the tactic makes party members follow the leader.",
|
|
10606
|
+
"bool[12]",
|
|
10607
|
+
)
|
|
10608
|
+
|
|
10162
10609
|
FORBIDDEN_FORGOT_MOVE_LIST = Symbol(
|
|
10163
10610
|
None,
|
|
10164
10611
|
None,
|
|
@@ -10236,7 +10683,7 @@ class EuItcmArm9Data:
|
|
|
10236
10683
|
None,
|
|
10237
10684
|
None,
|
|
10238
10685
|
"SECONDARY_TERRAIN_TYPES",
|
|
10239
|
-
"The type of secondary terrain for each
|
|
10686
|
+
"The type of secondary terrain for each tileset in the game.\n\nThis is an array of 200 bytes. Each byte is an enum corresponding to one tileset.\n\ntype: struct secondary_terrain_type_8[200]",
|
|
10240
10687
|
"struct secondary_terrain_type_8[200]",
|
|
10241
10688
|
)
|
|
10242
10689
|
|
|
@@ -10924,6 +11371,15 @@ class EuItcmArm9Data:
|
|
|
10924
11371
|
"int16_t[6]",
|
|
10925
11372
|
)
|
|
10926
11373
|
|
|
11374
|
+
MENU_CONTROL_PTR = Symbol(
|
|
11375
|
+
None,
|
|
11376
|
+
None,
|
|
11377
|
+
None,
|
|
11378
|
+
"MENU_CONTROL_PTR",
|
|
11379
|
+
"Pointer to the master struct used for handling menus.\n\ntype: menu_control*",
|
|
11380
|
+
"struct menu_control*",
|
|
11381
|
+
)
|
|
11382
|
+
|
|
10927
11383
|
KEYBOARD_STRING_IDS = Symbol(
|
|
10928
11384
|
None,
|
|
10929
11385
|
None,
|
|
@@ -11002,7 +11458,7 @@ class EuItcmArm9Data:
|
|
|
11002
11458
|
None,
|
|
11003
11459
|
"MONSTER_DATA_TABLE_PTR",
|
|
11004
11460
|
"[Runtime] Points to data about monster species.",
|
|
11005
|
-
"
|
|
11461
|
+
"struct monster_data_table*",
|
|
11006
11462
|
)
|
|
11007
11463
|
|
|
11008
11464
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
@@ -11193,6 +11649,14 @@ class EuItcmArm9Data:
|
|
|
11193
11649
|
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
11194
11650
|
)
|
|
11195
11651
|
|
|
11652
|
+
EVENT_FLAG_PROG_POS_INFO = _Deprecated(
|
|
11653
|
+
"EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
|
|
11654
|
+
)
|
|
11655
|
+
|
|
11656
|
+
EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
|
|
11657
|
+
"EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
|
|
11658
|
+
)
|
|
11659
|
+
|
|
11196
11660
|
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
11197
11661
|
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
11198
11662
|
)
|
|
@@ -13003,6 +13467,15 @@ class EuItcmLibsFunctions:
|
|
|
13003
13467
|
None,
|
|
13004
13468
|
)
|
|
13005
13469
|
|
|
13470
|
+
PM_ForceToPowerOff = Symbol(
|
|
13471
|
+
None,
|
|
13472
|
+
None,
|
|
13473
|
+
None,
|
|
13474
|
+
"PM_ForceToPowerOff",
|
|
13475
|
+
"Powers off the system.\n\nreturn: ?",
|
|
13476
|
+
None,
|
|
13477
|
+
)
|
|
13478
|
+
|
|
13006
13479
|
abs = Symbol(
|
|
13007
13480
|
None,
|
|
13008
13481
|
None,
|
|
@@ -13336,12 +13809,12 @@ class EuItcmLibsFunctions:
|
|
|
13336
13809
|
None,
|
|
13337
13810
|
)
|
|
13338
13811
|
|
|
13339
|
-
|
|
13812
|
+
_dgr = Symbol(
|
|
13340
13813
|
None,
|
|
13341
13814
|
None,
|
|
13342
13815
|
None,
|
|
13343
|
-
"
|
|
13344
|
-
"Implements the
|
|
13816
|
+
"_dgr",
|
|
13817
|
+
"Implements the > operator for IEEE 754 double-precision floating-point numbers.\n\nr0: a (low bits)\nr1: a (high bits)\nr2: b (low bits)\nr3: b (high bits)\nreturn: a > b",
|
|
13345
13818
|
None,
|
|
13346
13819
|
)
|
|
13347
13820
|
|
|
@@ -16960,6 +17433,15 @@ class EuItcmOverlay10Data:
|
|
|
16960
17433
|
"struct dungeon_id_8",
|
|
16961
17434
|
)
|
|
16962
17435
|
|
|
17436
|
+
FIERY_DRUM_RECRUIT_BOOST = Symbol(
|
|
17437
|
+
None,
|
|
17438
|
+
None,
|
|
17439
|
+
None,
|
|
17440
|
+
"FIERY_DRUM_RECRUIT_BOOST",
|
|
17441
|
+
"The amount added to the recruit rate with compatible species when holding a Fiery Drum.",
|
|
17442
|
+
"int16_t",
|
|
17443
|
+
)
|
|
17444
|
+
|
|
16963
17445
|
BAD_POISON_DAMAGE_COOLDOWN = Symbol(
|
|
16964
17446
|
None,
|
|
16965
17447
|
None,
|
|
@@ -16969,6 +17451,15 @@ class EuItcmOverlay10Data:
|
|
|
16969
17451
|
"int16_t",
|
|
16970
17452
|
)
|
|
16971
17453
|
|
|
17454
|
+
ICY_FLUTE_RECRUIT_BOOST = Symbol(
|
|
17455
|
+
None,
|
|
17456
|
+
None,
|
|
17457
|
+
None,
|
|
17458
|
+
"ICY_FLUTE_RECRUIT_BOOST",
|
|
17459
|
+
"The amount added to the recruit rate with compatible species when holding an Icy Flute.",
|
|
17460
|
+
"int16_t",
|
|
17461
|
+
)
|
|
17462
|
+
|
|
16972
17463
|
PROTEIN_STAT_BOOST = Symbol(
|
|
16973
17464
|
None,
|
|
16974
17465
|
None,
|
|
@@ -17014,6 +17505,15 @@ class EuItcmOverlay10Data:
|
|
|
17014
17505
|
"int16_t",
|
|
17015
17506
|
)
|
|
17016
17507
|
|
|
17508
|
+
GOLDEN_MASK_RECRUIT_BOOST = Symbol(
|
|
17509
|
+
None,
|
|
17510
|
+
None,
|
|
17511
|
+
None,
|
|
17512
|
+
"GOLDEN_MASK_RECRUIT_BOOST",
|
|
17513
|
+
"The amount added to the recruit rate when holding a Golden Mask.",
|
|
17514
|
+
"int16_t",
|
|
17515
|
+
)
|
|
17516
|
+
|
|
17017
17517
|
IRON_TAIL_LOWER_DEFENSE_CHANCE = Symbol(
|
|
17018
17518
|
None,
|
|
17019
17519
|
None,
|
|
@@ -17059,6 +17559,15 @@ class EuItcmOverlay10Data:
|
|
|
17059
17559
|
"int16_t",
|
|
17060
17560
|
)
|
|
17061
17561
|
|
|
17562
|
+
HURL_DAMAGE = Symbol(
|
|
17563
|
+
None,
|
|
17564
|
+
None,
|
|
17565
|
+
None,
|
|
17566
|
+
"HURL_DAMAGE",
|
|
17567
|
+
"Damage dealt from hurling a monster at another monster (10).",
|
|
17568
|
+
"int16_t",
|
|
17569
|
+
)
|
|
17570
|
+
|
|
17062
17571
|
TRAP_BUSTER_ACTIVATION_CHANCE = Symbol(
|
|
17063
17572
|
None,
|
|
17064
17573
|
None,
|
|
@@ -17095,6 +17604,15 @@ class EuItcmOverlay10Data:
|
|
|
17095
17604
|
"int16_t",
|
|
17096
17605
|
)
|
|
17097
17606
|
|
|
17607
|
+
AMBER_TEAR_RECRUIT_BOOST = Symbol(
|
|
17608
|
+
None,
|
|
17609
|
+
None,
|
|
17610
|
+
None,
|
|
17611
|
+
"AMBER_TEAR_RECRUIT_BOOST",
|
|
17612
|
+
"The amount added to the recruit rate when holding an Amber Tear.",
|
|
17613
|
+
"int16_t",
|
|
17614
|
+
)
|
|
17615
|
+
|
|
17098
17616
|
MUDDY_WATER_LOWER_ACCURACY_CHANCE = Symbol(
|
|
17099
17617
|
None,
|
|
17100
17618
|
None,
|
|
@@ -17203,6 +17721,15 @@ class EuItcmOverlay10Data:
|
|
|
17203
17721
|
"int16_t",
|
|
17204
17722
|
)
|
|
17205
17723
|
|
|
17724
|
+
CURSE_DAMAGE_COOLDOWN = Symbol(
|
|
17725
|
+
None,
|
|
17726
|
+
None,
|
|
17727
|
+
None,
|
|
17728
|
+
"CURSE_DAMAGE_COOLDOWN",
|
|
17729
|
+
"The number of turns between passive curse damage (3).",
|
|
17730
|
+
"int16_t",
|
|
17731
|
+
)
|
|
17732
|
+
|
|
17206
17733
|
STEEL_WING_BOOST_DEFENSE_CHANCE = Symbol(
|
|
17207
17734
|
None,
|
|
17208
17735
|
None,
|
|
@@ -17257,6 +17784,15 @@ class EuItcmOverlay10Data:
|
|
|
17257
17784
|
"int16_t",
|
|
17258
17785
|
)
|
|
17259
17786
|
|
|
17787
|
+
PITFALL_TRAP_DAMAGE = Symbol(
|
|
17788
|
+
None,
|
|
17789
|
+
None,
|
|
17790
|
+
None,
|
|
17791
|
+
"PITFALL_TRAP_DAMAGE",
|
|
17792
|
+
"Damage dealt by pitfall traps (5).",
|
|
17793
|
+
"int16_t",
|
|
17794
|
+
)
|
|
17795
|
+
|
|
17260
17796
|
CHARGE_BEAM_BOOST_SPECIAL_ATTACK_CHANCE = Symbol(
|
|
17261
17797
|
None,
|
|
17262
17798
|
None,
|
|
@@ -17284,6 +17820,15 @@ class EuItcmOverlay10Data:
|
|
|
17284
17820
|
"int16_t",
|
|
17285
17821
|
)
|
|
17286
17822
|
|
|
17823
|
+
FRIEND_BOW_FAST_FRIEND_BOOST = Symbol(
|
|
17824
|
+
None,
|
|
17825
|
+
None,
|
|
17826
|
+
None,
|
|
17827
|
+
"FRIEND_BOW_FAST_FRIEND_BOOST",
|
|
17828
|
+
"The amount added to the recruit rate when holding a Friend Bow or with the Fast Friend IQ skill.",
|
|
17829
|
+
"int16_t",
|
|
17830
|
+
)
|
|
17831
|
+
|
|
17287
17832
|
OCTAZOOKA_LOWER_ACCURACY_CHANCE = Symbol(
|
|
17288
17833
|
None,
|
|
17289
17834
|
None,
|
|
@@ -17338,6 +17883,15 @@ class EuItcmOverlay10Data:
|
|
|
17338
17883
|
"int16_t",
|
|
17339
17884
|
)
|
|
17340
17885
|
|
|
17886
|
+
CUTE_CHARM_INFATUATE_CHANCE = Symbol(
|
|
17887
|
+
None,
|
|
17888
|
+
None,
|
|
17889
|
+
None,
|
|
17890
|
+
"CUTE_CHARM_INFATUATE_CHANCE",
|
|
17891
|
+
"The chance of Cute Charm infatuating, as a percentage (12%).",
|
|
17892
|
+
"int16_t",
|
|
17893
|
+
)
|
|
17894
|
+
|
|
17341
17895
|
LICK_PARALYZE_CHANCE = Symbol(
|
|
17342
17896
|
None,
|
|
17343
17897
|
None,
|
|
@@ -17482,6 +18036,15 @@ class EuItcmOverlay10Data:
|
|
|
17482
18036
|
"int16_t",
|
|
17483
18037
|
)
|
|
17484
18038
|
|
|
18039
|
+
INGRAIN_BONUS_REGEN = Symbol(
|
|
18040
|
+
None,
|
|
18041
|
+
None,
|
|
18042
|
+
None,
|
|
18043
|
+
"INGRAIN_BONUS_REGEN",
|
|
18044
|
+
"The passive bonus regen given by the Ingrain status condition (10).",
|
|
18045
|
+
"int16_t",
|
|
18046
|
+
)
|
|
18047
|
+
|
|
17485
18048
|
AFTERMATH_CHANCE = Symbol(
|
|
17486
18049
|
None,
|
|
17487
18050
|
None,
|
|
@@ -17509,6 +18072,15 @@ class EuItcmOverlay10Data:
|
|
|
17509
18072
|
"int16_t",
|
|
17510
18073
|
)
|
|
17511
18074
|
|
|
18075
|
+
WRAP_DAMAGE = Symbol(
|
|
18076
|
+
None,
|
|
18077
|
+
None,
|
|
18078
|
+
None,
|
|
18079
|
+
"WRAP_DAMAGE",
|
|
18080
|
+
"Damage dealt by the wrap status condition (6).",
|
|
18081
|
+
"int16_t",
|
|
18082
|
+
)
|
|
18083
|
+
|
|
17512
18084
|
TYPE_ADVANTAGE_MASTER_CRIT_RATE = Symbol(
|
|
17513
18085
|
None,
|
|
17514
18086
|
None,
|
|
@@ -17518,6 +18090,15 @@ class EuItcmOverlay10Data:
|
|
|
17518
18090
|
"int16_t",
|
|
17519
18091
|
)
|
|
17520
18092
|
|
|
18093
|
+
INGRAIN_BONUS_REGEN_COOLDOWN = Symbol(
|
|
18094
|
+
None,
|
|
18095
|
+
None,
|
|
18096
|
+
None,
|
|
18097
|
+
"INGRAIN_BONUS_REGEN_COOLDOWN",
|
|
18098
|
+
"The number of turns between ingrain health regeneration (5).",
|
|
18099
|
+
"int16_t",
|
|
18100
|
+
)
|
|
18101
|
+
|
|
17521
18102
|
ORAN_BERRY_HP_RESTORATION = Symbol(
|
|
17522
18103
|
None,
|
|
17523
18104
|
None,
|
|
@@ -17527,6 +18108,15 @@ class EuItcmOverlay10Data:
|
|
|
17527
18108
|
"int16_t",
|
|
17528
18109
|
)
|
|
17529
18110
|
|
|
18111
|
+
WRAP_DAMAGE_COOLDOWN = Symbol(
|
|
18112
|
+
None,
|
|
18113
|
+
None,
|
|
18114
|
+
None,
|
|
18115
|
+
"WRAP_DAMAGE_COOLDOWN",
|
|
18116
|
+
"The number of turns between passive wrap damage (2).",
|
|
18117
|
+
"int16_t",
|
|
18118
|
+
)
|
|
18119
|
+
|
|
17530
18120
|
SITRUS_BERRY_FULL_HP_BOOST = Symbol(
|
|
17531
18121
|
None,
|
|
17532
18122
|
None,
|
|
@@ -17585,6 +18175,15 @@ class EuItcmOverlay10Data:
|
|
|
17585
18175
|
None, None, None, "STICK_POWER", "Attack power for Sticks.", "int16_t"
|
|
17586
18176
|
)
|
|
17587
18177
|
|
|
18178
|
+
AQUA_RING_BONUS_REGEN = Symbol(
|
|
18179
|
+
None,
|
|
18180
|
+
None,
|
|
18181
|
+
None,
|
|
18182
|
+
"AQUA_RING_BONUS_REGEN",
|
|
18183
|
+
"The passive bonus regen given by the Aqua Ring status condition (8).",
|
|
18184
|
+
"int16_t",
|
|
18185
|
+
)
|
|
18186
|
+
|
|
17588
18187
|
BUBBLE_LOWER_SPEED_CHANCE = Symbol(
|
|
17589
18188
|
None,
|
|
17590
18189
|
None,
|
|
@@ -17639,6 +18238,15 @@ class EuItcmOverlay10Data:
|
|
|
17639
18238
|
"int16_t",
|
|
17640
18239
|
)
|
|
17641
18240
|
|
|
18241
|
+
CHATOT_SCARF_BOUNCE_CHANCE = Symbol(
|
|
18242
|
+
None,
|
|
18243
|
+
None,
|
|
18244
|
+
None,
|
|
18245
|
+
"CHATOT_SCARF_BOUNCE_CHANCE",
|
|
18246
|
+
"The chance of the Chatot Scarf bouncing back a move, as a percentage (20%).",
|
|
18247
|
+
"int16_t",
|
|
18248
|
+
)
|
|
18249
|
+
|
|
17642
18250
|
WEATHER_MOVE_TURN_COUNT = Symbol(
|
|
17643
18251
|
None,
|
|
17644
18252
|
None,
|
|
@@ -17912,6 +18520,15 @@ class EuItcmOverlay10Data:
|
|
|
17912
18520
|
None, None, None, "IRON_THORN_POWER", "Attack power for Iron Thorns.", "int16_t"
|
|
17913
18521
|
)
|
|
17914
18522
|
|
|
18523
|
+
BAD_WEATHER_DAMAGE = Symbol(
|
|
18524
|
+
None,
|
|
18525
|
+
None,
|
|
18526
|
+
None,
|
|
18527
|
+
"BAD_WEATHER_DAMAGE",
|
|
18528
|
+
"Damage dealt by the Sandstorm and Hail weather conditions (3).",
|
|
18529
|
+
"int16_t",
|
|
18530
|
+
)
|
|
18531
|
+
|
|
17915
18532
|
SCOPE_LENS_CRIT_RATE_BOOST = Symbol(
|
|
17916
18533
|
None,
|
|
17917
18534
|
None,
|
|
@@ -17930,6 +18547,51 @@ class EuItcmOverlay10Data:
|
|
|
17930
18547
|
"int16_t",
|
|
17931
18548
|
)
|
|
17932
18549
|
|
|
18550
|
+
SKY_MELODICA_RECRUIT_BOOST = Symbol(
|
|
18551
|
+
None,
|
|
18552
|
+
None,
|
|
18553
|
+
None,
|
|
18554
|
+
"SKY_MELODICA_RECRUIT_BOOST",
|
|
18555
|
+
"The amount added to the recruit rate with compatible species when holding a Sky Melodica.",
|
|
18556
|
+
"int16_t",
|
|
18557
|
+
)
|
|
18558
|
+
|
|
18559
|
+
GRASS_CORNET_RECRUIT_BOOST = Symbol(
|
|
18560
|
+
None,
|
|
18561
|
+
None,
|
|
18562
|
+
None,
|
|
18563
|
+
"GRASS_CORNET_RECRUIT_BOOST",
|
|
18564
|
+
"The amount added to the recruit rate with compatible species when holding a Grass Cornet.",
|
|
18565
|
+
"int16_t",
|
|
18566
|
+
)
|
|
18567
|
+
|
|
18568
|
+
ROCK_HORN_RECRUIT_BOOST = Symbol(
|
|
18569
|
+
None,
|
|
18570
|
+
None,
|
|
18571
|
+
None,
|
|
18572
|
+
"ROCK_HORN_RECRUIT_BOOST",
|
|
18573
|
+
"The amount added to the recruit rate with compatible species when holding a Rock Horn.",
|
|
18574
|
+
"int16_t",
|
|
18575
|
+
)
|
|
18576
|
+
|
|
18577
|
+
AQUA_MONICA_RECRUIT_BOOST = Symbol(
|
|
18578
|
+
None,
|
|
18579
|
+
None,
|
|
18580
|
+
None,
|
|
18581
|
+
"AQUA_MONICA_RECRUIT_BOOST",
|
|
18582
|
+
"The amount added to the recruit rate with compatible species when holding a Aqua Monica.",
|
|
18583
|
+
"int16_t",
|
|
18584
|
+
)
|
|
18585
|
+
|
|
18586
|
+
TERRA_CYMBAL_RECRUIT_BOOST = Symbol(
|
|
18587
|
+
None,
|
|
18588
|
+
None,
|
|
18589
|
+
None,
|
|
18590
|
+
"TERRA_CYMBAL_RECRUIT_BOOST",
|
|
18591
|
+
"The amount added to the recruit rate with compatible species when holding a Terra Cymbal.",
|
|
18592
|
+
"int16_t",
|
|
18593
|
+
)
|
|
18594
|
+
|
|
17933
18595
|
ME_FIRST_MULTIPLIER = Symbol(
|
|
17934
18596
|
None,
|
|
17935
18597
|
None,
|
|
@@ -17975,6 +18637,60 @@ class EuItcmOverlay10Data:
|
|
|
17975
18637
|
"int16_t[2]",
|
|
17976
18638
|
)
|
|
17977
18639
|
|
|
18640
|
+
SLEEPLESSNESS_TURN_RANGE = Symbol(
|
|
18641
|
+
None,
|
|
18642
|
+
None,
|
|
18643
|
+
None,
|
|
18644
|
+
"SLEEPLESSNESS_TURN_RANGE",
|
|
18645
|
+
"The turn range for the Sleepless status, [0x7F, 0x7F] (infinite).\n\ntype: int16_t[2]",
|
|
18646
|
+
"int16_t[2]",
|
|
18647
|
+
)
|
|
18648
|
+
|
|
18649
|
+
REFLECT_TURN_RANGE = Symbol(
|
|
18650
|
+
None,
|
|
18651
|
+
None,
|
|
18652
|
+
None,
|
|
18653
|
+
"REFLECT_TURN_RANGE",
|
|
18654
|
+
"The turn range for the Reflect status, [10, 12).\n\ntype: int16_t[2]",
|
|
18655
|
+
"int16_t[2]",
|
|
18656
|
+
)
|
|
18657
|
+
|
|
18658
|
+
LIGHT_SCREEN_TURN_RANGE = Symbol(
|
|
18659
|
+
None,
|
|
18660
|
+
None,
|
|
18661
|
+
None,
|
|
18662
|
+
"LIGHT_SCREEN_TURN_RANGE",
|
|
18663
|
+
"The turn range for the Light Screen status, [10, 12).\n\ntype: int16_t[2]",
|
|
18664
|
+
"int16_t[2]",
|
|
18665
|
+
)
|
|
18666
|
+
|
|
18667
|
+
SAFEGUARD_TURN_RANGE = Symbol(
|
|
18668
|
+
None,
|
|
18669
|
+
None,
|
|
18670
|
+
None,
|
|
18671
|
+
"SAFEGUARD_TURN_RANGE",
|
|
18672
|
+
"The turn range for the Safeguard status, [15, 20).\n\ntype: int16_t[2]",
|
|
18673
|
+
"int16_t[2]",
|
|
18674
|
+
)
|
|
18675
|
+
|
|
18676
|
+
MIST_TURN_RANGE = Symbol(
|
|
18677
|
+
None,
|
|
18678
|
+
None,
|
|
18679
|
+
None,
|
|
18680
|
+
"MIST_TURN_RANGE",
|
|
18681
|
+
"The turn range for the Mist status, [10, 14).\n\ntype: int16_t[2]",
|
|
18682
|
+
"int16_t[2]",
|
|
18683
|
+
)
|
|
18684
|
+
|
|
18685
|
+
MAGIC_COAT_TURN_RANGE = Symbol(
|
|
18686
|
+
None,
|
|
18687
|
+
None,
|
|
18688
|
+
None,
|
|
18689
|
+
"MAGIC_COAT_TURN_RANGE",
|
|
18690
|
+
"The turn range for the Magic Coat status, [10, 14).\n\ntype: int16_t[2]",
|
|
18691
|
+
"int16_t[2]",
|
|
18692
|
+
)
|
|
18693
|
+
|
|
17978
18694
|
BURN_DAMAGE_MULTIPLIER = Symbol(
|
|
17979
18695
|
None,
|
|
17980
18696
|
None,
|
|
@@ -18002,6 +18718,15 @@ class EuItcmOverlay10Data:
|
|
|
18002
18718
|
"fx32_8",
|
|
18003
18719
|
)
|
|
18004
18720
|
|
|
18721
|
+
SET_REFLECT_STATUS_TURN_RANGE = Symbol(
|
|
18722
|
+
None,
|
|
18723
|
+
None,
|
|
18724
|
+
None,
|
|
18725
|
+
"SET_REFLECT_STATUS_TURN_RANGE",
|
|
18726
|
+
"The turn range for the statuses (Counter, Mini Counter, Metal Burst) set by SetReflectStatus, [6, 12).\n\ntype: int16_t[2]",
|
|
18727
|
+
"int16_t[2]",
|
|
18728
|
+
)
|
|
18729
|
+
|
|
18005
18730
|
MATCHUP_IMMUNE_MULTIPLIER = Symbol(
|
|
18006
18731
|
None,
|
|
18007
18732
|
None,
|
|
@@ -18011,6 +18736,15 @@ class EuItcmOverlay10Data:
|
|
|
18011
18736
|
"fx32_8",
|
|
18012
18737
|
)
|
|
18013
18738
|
|
|
18739
|
+
GASTRO_ACID_TURN_RANGE = Symbol(
|
|
18740
|
+
None,
|
|
18741
|
+
None,
|
|
18742
|
+
None,
|
|
18743
|
+
"GASTRO_ACID_TURN_RANGE",
|
|
18744
|
+
"The turn range for the Gastro Acid status, [4, 10).\n\ntype: int16_t[2]",
|
|
18745
|
+
"int16_t[2]",
|
|
18746
|
+
)
|
|
18747
|
+
|
|
18014
18748
|
SPORT_CONDITION_TURN_RANGE = Symbol(
|
|
18015
18749
|
None,
|
|
18016
18750
|
None,
|
|
@@ -18038,6 +18772,15 @@ class EuItcmOverlay10Data:
|
|
|
18038
18772
|
"int",
|
|
18039
18773
|
)
|
|
18040
18774
|
|
|
18775
|
+
DECOY_TURN_RANGE = Symbol(
|
|
18776
|
+
None,
|
|
18777
|
+
None,
|
|
18778
|
+
None,
|
|
18779
|
+
"DECOY_TURN_RANGE",
|
|
18780
|
+
"The turn range for the Decoy status, [20, 50).\n\ntype: int16_t[2]",
|
|
18781
|
+
"int16_t[2]",
|
|
18782
|
+
)
|
|
18783
|
+
|
|
18041
18784
|
TINTED_LENS_MULTIPLIER = Symbol(
|
|
18042
18785
|
None,
|
|
18043
18786
|
None,
|
|
@@ -18173,6 +18916,15 @@ class EuItcmOverlay10Data:
|
|
|
18173
18916
|
"fx32_8",
|
|
18174
18917
|
)
|
|
18175
18918
|
|
|
18919
|
+
MIRROR_MOVE_TURN_RANGE = Symbol(
|
|
18920
|
+
None,
|
|
18921
|
+
None,
|
|
18922
|
+
None,
|
|
18923
|
+
"MIRROR_MOVE_TURN_RANGE",
|
|
18924
|
+
"The turn range for the Mirror Move status, [1, 3).\n\ntype: int16_t[2]",
|
|
18925
|
+
"int16_t[2]",
|
|
18926
|
+
)
|
|
18927
|
+
|
|
18176
18928
|
AIR_BLADE_DAMAGE_MULTIPLIER = Symbol(
|
|
18177
18929
|
None,
|
|
18178
18930
|
None,
|
|
@@ -18209,6 +18961,15 @@ class EuItcmOverlay10Data:
|
|
|
18209
18961
|
"int16_t[2]",
|
|
18210
18962
|
)
|
|
18211
18963
|
|
|
18964
|
+
CRINGE_TURN_RANGE = Symbol(
|
|
18965
|
+
None,
|
|
18966
|
+
None,
|
|
18967
|
+
None,
|
|
18968
|
+
"CRINGE_TURN_RANGE",
|
|
18969
|
+
"The turn range for the Cringe status, [1, 1].\n\ntype: int16_t[2]",
|
|
18970
|
+
"int16_t[2]",
|
|
18971
|
+
)
|
|
18972
|
+
|
|
18212
18973
|
SPEED_BOOST_TURN_RANGE = Symbol(
|
|
18213
18974
|
None,
|
|
18214
18975
|
None,
|
|
@@ -18218,6 +18979,24 @@ class EuItcmOverlay10Data:
|
|
|
18218
18979
|
"int16_t[2]",
|
|
18219
18980
|
)
|
|
18220
18981
|
|
|
18982
|
+
SPEED_LOWER_TURN_RANGE = Symbol(
|
|
18983
|
+
None,
|
|
18984
|
+
None,
|
|
18985
|
+
None,
|
|
18986
|
+
"SPEED_LOWER_TURN_RANGE",
|
|
18987
|
+
"The turn range for lowered speed, [6, 8].\n\ntype: int16_t[2]",
|
|
18988
|
+
"int16_t[2]",
|
|
18989
|
+
)
|
|
18990
|
+
|
|
18991
|
+
PARALYSIS_TURN_RANGE = Symbol(
|
|
18992
|
+
None,
|
|
18993
|
+
None,
|
|
18994
|
+
None,
|
|
18995
|
+
"PARALYSIS_TURN_RANGE",
|
|
18996
|
+
"The turn range for the Paralysis status, [1, 2].\n\ntype: int16_t[2]",
|
|
18997
|
+
"int16_t[2]",
|
|
18998
|
+
)
|
|
18999
|
+
|
|
18221
19000
|
SOLARBEAM_DAMAGE_MULTIPLIER = Symbol(
|
|
18222
19001
|
None,
|
|
18223
19002
|
None,
|
|
@@ -18632,6 +19411,10 @@ class EuItcmOverlay10Data:
|
|
|
18632
19411
|
"struct data_processing_instruction",
|
|
18633
19412
|
)
|
|
18634
19413
|
|
|
19414
|
+
REFLECT_LIGHT_SCREEN_TURN_RANGE = _Deprecated(
|
|
19415
|
+
"REFLECT_LIGHT_SCREEN_TURN_RANGE", REFLECT_TURN_RANGE
|
|
19416
|
+
)
|
|
19417
|
+
|
|
18635
19418
|
|
|
18636
19419
|
class EuItcmOverlay10Section:
|
|
18637
19420
|
name = "overlay10"
|
|
@@ -18940,6 +19723,33 @@ class EuItcmOverlay11Functions:
|
|
|
18940
19723
|
None,
|
|
18941
19724
|
)
|
|
18942
19725
|
|
|
19726
|
+
GroundBgInit = Symbol(
|
|
19727
|
+
None,
|
|
19728
|
+
None,
|
|
19729
|
+
None,
|
|
19730
|
+
"GroundBgInit",
|
|
19731
|
+
"Initializes the ground_bg struct by setting most fields to 0 and allocating memory for sub-structs.\n\nr0: ground_bg struct pointer\nr1: Unknown sub-struct of ground_bg (offset 0x52C)",
|
|
19732
|
+
None,
|
|
19733
|
+
)
|
|
19734
|
+
|
|
19735
|
+
GroundBgFreeAll = Symbol(
|
|
19736
|
+
None,
|
|
19737
|
+
None,
|
|
19738
|
+
None,
|
|
19739
|
+
"GroundBgFreeAll",
|
|
19740
|
+
"Frees memory and closes any open files in the ground_bg struct.\n\nr0: ground_bg struct pointer",
|
|
19741
|
+
None,
|
|
19742
|
+
)
|
|
19743
|
+
|
|
19744
|
+
GroundBgCloseOpenedFiles = Symbol(
|
|
19745
|
+
None,
|
|
19746
|
+
None,
|
|
19747
|
+
None,
|
|
19748
|
+
"GroundBgCloseOpenedFiles",
|
|
19749
|
+
"Closes any open files in the ground_bg struct.\n\nr0: ground_bg struct pointer",
|
|
19750
|
+
None,
|
|
19751
|
+
)
|
|
19752
|
+
|
|
18943
19753
|
LoadMapType10 = Symbol(
|
|
18944
19754
|
None,
|
|
18945
19755
|
None,
|
|
@@ -18958,6 +19768,15 @@ class EuItcmOverlay11Functions:
|
|
|
18958
19768
|
None,
|
|
18959
19769
|
)
|
|
18960
19770
|
|
|
19771
|
+
BmaLayerNrlDecompressor = Symbol(
|
|
19772
|
+
None,
|
|
19773
|
+
None,
|
|
19774
|
+
None,
|
|
19775
|
+
"BmaLayerNrlDecompressor",
|
|
19776
|
+
"Decompresses the NRL-compressed data in a .bma file.\n\nr0: [output] Array to hold the decompressed data\nr1: Pointer to the start of the compressed .bma data to decompress\nr2: Unknown ground_bg sub-struct (offset 0x52C)\nr3: .bma file header\nreturn: Pointer at the end of the .bma data",
|
|
19777
|
+
None,
|
|
19778
|
+
)
|
|
19779
|
+
|
|
18961
19780
|
GetSpecialLayoutBackground = Symbol(
|
|
18962
19781
|
None,
|
|
18963
19782
|
None,
|
|
@@ -19867,6 +20686,15 @@ class EuItcmOverlay11Functions:
|
|
|
19867
20686
|
None,
|
|
19868
20687
|
)
|
|
19869
20688
|
|
|
20689
|
+
SwapShopInventoryManager = Symbol(
|
|
20690
|
+
None,
|
|
20691
|
+
None,
|
|
20692
|
+
None,
|
|
20693
|
+
"SwapShopInventoryManager",
|
|
20694
|
+
"Called primarily handle the display and preparation of the swap shop inventory list, exclusive items list, and the item trade list. \nCreates a swap_shop_inventory_data struct if one does not already exist. \nIs the child function to SwapShopDialogueManager.\n\nr0: switch case index for the function: 0 = Swap List Inventory, 1 = Unknown, 2 = Species Exclusive Item List, 3 = Item Trade Away Selection List.\nr1: Depends on r0. If case 2: ID of the monster to retrieve an exclusive item list for. If case 3: Number of Exclusive Items the player owns.",
|
|
20695
|
+
None,
|
|
20696
|
+
)
|
|
20697
|
+
|
|
19870
20698
|
HandleControlsTopScreenGround = Symbol(
|
|
19871
20699
|
None,
|
|
19872
20700
|
None,
|
|
@@ -20043,6 +20871,15 @@ class EuItcmOverlay11Data:
|
|
|
20043
20871
|
"struct monster_id_16[22]",
|
|
20044
20872
|
)
|
|
20045
20873
|
|
|
20874
|
+
POSITION_ZERO = Symbol(
|
|
20875
|
+
None,
|
|
20876
|
+
None,
|
|
20877
|
+
None,
|
|
20878
|
+
"POSITION_ZERO",
|
|
20879
|
+
"A pixel_position struct initialized at position (0, 0). Used to initialize the camera_pixel_position field in the ground_bg struct.\n\ntype: struct pixel_position",
|
|
20880
|
+
"struct pixel_position",
|
|
20881
|
+
)
|
|
20882
|
+
|
|
20046
20883
|
LEVEL_TILEMAP_LIST = Symbol(
|
|
20047
20884
|
None,
|
|
20048
20885
|
None,
|
|
@@ -20130,6 +20967,15 @@ class EuItcmOverlay11Data:
|
|
|
20130
20967
|
"struct main_ground_data",
|
|
20131
20968
|
)
|
|
20132
20969
|
|
|
20970
|
+
SWAP_SHOP_INVENTORY_PTRS = Symbol(
|
|
20971
|
+
None,
|
|
20972
|
+
None,
|
|
20973
|
+
None,
|
|
20974
|
+
"SWAP_SHOP_INVENTORY_PTRS",
|
|
20975
|
+
"Host pointers to multiple structures used for performing internal Swap Shop checks.",
|
|
20976
|
+
"struct swap_shop_inventory_ptrs",
|
|
20977
|
+
)
|
|
20978
|
+
|
|
20133
20979
|
WORLD_MAP_MODE = Symbol(
|
|
20134
20980
|
None, None, None, "WORLD_MAP_MODE", "The current world map", "uint32_t"
|
|
20135
20981
|
)
|
|
@@ -22012,7 +22858,68 @@ class EuItcmOverlay20Section:
|
|
|
22012
22858
|
|
|
22013
22859
|
class EuItcmOverlay21Functions:
|
|
22014
22860
|
|
|
22015
|
-
|
|
22861
|
+
SwapShopDialogueManager = Symbol(
|
|
22862
|
+
None,
|
|
22863
|
+
None,
|
|
22864
|
+
None,
|
|
22865
|
+
"SwapShopDialogueManager",
|
|
22866
|
+
"Called primarily to fill dialogue boxes or display portraits, this function exists to print the next portrait, dialogue, or input for the Swap Shop. \nConsistently writes the provided input to shared_switch_case, and occasionally writes to next_switch_case. \nOften calls SwapShopInventoryManager, and is often called by SwapShopMainManager.\n\nr0: New current_switch_case value.",
|
|
22867
|
+
None,
|
|
22868
|
+
)
|
|
22869
|
+
|
|
22870
|
+
GetFirstExclusivePrerequisite = Symbol(
|
|
22871
|
+
None,
|
|
22872
|
+
None,
|
|
22873
|
+
None,
|
|
22874
|
+
"GetFirstExclusivePrerequisite",
|
|
22875
|
+
"Retrieves the item ID of the first item needed to trade for the specified item. There are hardcoded exceptions for the Eeveelution/Hitmontrio items,\nbut outside of that, the output will be as follows.\n output_id = input_id - ((input_id - 0x1FA) % 4)\n\nr0: item ID of the exclusive item to be checked.\nreturn: item ID of the first exclusive item required to trade for the input.",
|
|
22876
|
+
None,
|
|
22877
|
+
)
|
|
22878
|
+
|
|
22879
|
+
SwapShopEntryPoint = Symbol(
|
|
22880
|
+
None,
|
|
22881
|
+
None,
|
|
22882
|
+
None,
|
|
22883
|
+
"SwapShopEntryPoint",
|
|
22884
|
+
"Is the entrypoint of the overlay_load_entry, and seems to run once to initiate the Swap Shop. Is not called anywhere else.\nAllocates space for swap_shop_menu_data, and initializes many of its fields.\n\nreturn: Always returns 1.",
|
|
22885
|
+
None,
|
|
22886
|
+
)
|
|
22887
|
+
|
|
22888
|
+
SwapShopDestructor = Symbol(
|
|
22889
|
+
None,
|
|
22890
|
+
None,
|
|
22891
|
+
None,
|
|
22892
|
+
"SwapShopDestructor",
|
|
22893
|
+
"Is the destructor of the overlay_load_entry, and seems to run once on closing the Swap Shop. Is not called anywhere else.\nFrees up the allocated space for swap_shop_menu_data if it is not already empty.\n\nNo params.",
|
|
22894
|
+
None,
|
|
22895
|
+
)
|
|
22896
|
+
|
|
22897
|
+
SwapShopMainManager = Symbol(
|
|
22898
|
+
None,
|
|
22899
|
+
None,
|
|
22900
|
+
None,
|
|
22901
|
+
"SwapShopMainManager",
|
|
22902
|
+
"Called every frame the Croagunk Swap Shop is open, acting as a parent function for the various processes the Swap Shop is responsible for. \nPrimarily handles displaying dialogue boxes, retrieving menu selections, and contributing updates to the various switch case indices.\nOften calls SwapShopDialogueManager, either with an immediate or with the designated next_switch_case value. \n\nreturn: Typically returns 1, but seems to return 4 to exit the Swap Shop. Possibly related to the explorerscript output?",
|
|
22903
|
+
None,
|
|
22904
|
+
)
|
|
22905
|
+
|
|
22906
|
+
CloseTextboxAndSimpleMenu = Symbol(
|
|
22907
|
+
None,
|
|
22908
|
+
None,
|
|
22909
|
+
None,
|
|
22910
|
+
"CloseTextboxAndSimpleMenu",
|
|
22911
|
+
"Checks both the text_window_id and menu_window_id for -2. If either are not -2, close the textbox/simple menu, and assign the id to -2.\n\nNo params.",
|
|
22912
|
+
None,
|
|
22913
|
+
)
|
|
22914
|
+
|
|
22915
|
+
SwapShopPrintCurrentGold = Symbol(
|
|
22916
|
+
None,
|
|
22917
|
+
None,
|
|
22918
|
+
None,
|
|
22919
|
+
"SwapShopPrintCurrentGold",
|
|
22920
|
+
"A text box callback function containing the player's current gold using SWAP_SHOP_GOLD_STRING, as seen on the Swap Shop main menu.\n\nr0: window_id of the textbox",
|
|
22921
|
+
None,
|
|
22922
|
+
)
|
|
22016
22923
|
|
|
22017
22924
|
|
|
22018
22925
|
class EuItcmOverlay21Data:
|
|
@@ -22022,7 +22929,7 @@ class EuItcmOverlay21Data:
|
|
|
22022
22929
|
None,
|
|
22023
22930
|
None,
|
|
22024
22931
|
"SWAP_SHOP_WINDOW_PARAMS_1",
|
|
22025
|
-
"
|
|
22932
|
+
"Used with SwapShopPrintCurrentGold for a simple textbox.",
|
|
22026
22933
|
"struct window_params",
|
|
22027
22934
|
)
|
|
22028
22935
|
|
|
@@ -22031,7 +22938,7 @@ class EuItcmOverlay21Data:
|
|
|
22031
22938
|
None,
|
|
22032
22939
|
None,
|
|
22033
22940
|
"SWAP_SHOP_MENU_ITEMS_CONFIRM",
|
|
22034
|
-
"",
|
|
22941
|
+
"Used with SWAP_SHOP_WINDOW_PARAMS_7.",
|
|
22035
22942
|
"struct simple_menu_id_item[3]",
|
|
22036
22943
|
)
|
|
22037
22944
|
|
|
@@ -22040,7 +22947,7 @@ class EuItcmOverlay21Data:
|
|
|
22040
22947
|
None,
|
|
22041
22948
|
None,
|
|
22042
22949
|
"SWAP_SHOP_SUBMENU_ITEMS_1",
|
|
22043
|
-
"",
|
|
22950
|
+
"Used with SWAP_SHOP_WINDOW_PARAMS_6.",
|
|
22044
22951
|
"struct simple_menu_id_item[3]",
|
|
22045
22952
|
)
|
|
22046
22953
|
|
|
@@ -22049,7 +22956,7 @@ class EuItcmOverlay21Data:
|
|
|
22049
22956
|
None,
|
|
22050
22957
|
None,
|
|
22051
22958
|
"SWAP_SHOP_SUBMENU_ITEMS_2",
|
|
22052
|
-
"",
|
|
22959
|
+
"Used with SWAP_SHOP_WINDOW_PARAMS_7.",
|
|
22053
22960
|
"struct simple_menu_id_item[4]",
|
|
22054
22961
|
)
|
|
22055
22962
|
|
|
@@ -22058,7 +22965,7 @@ class EuItcmOverlay21Data:
|
|
|
22058
22965
|
None,
|
|
22059
22966
|
None,
|
|
22060
22967
|
"SWAP_SHOP_MAIN_MENU_ITEMS_1",
|
|
22061
|
-
"",
|
|
22968
|
+
"Used with SWAP_SHOP_WINDOW_PARAMS_6.",
|
|
22062
22969
|
"struct simple_menu_id_item[4]",
|
|
22063
22970
|
)
|
|
22064
22971
|
|
|
@@ -22067,7 +22974,7 @@ class EuItcmOverlay21Data:
|
|
|
22067
22974
|
None,
|
|
22068
22975
|
None,
|
|
22069
22976
|
"SWAP_SHOP_MAIN_MENU_ITEMS_2",
|
|
22070
|
-
"",
|
|
22977
|
+
"Used alongside SWAP_SHOP_WINDOW_PARAMS_5.",
|
|
22071
22978
|
"struct simple_menu_id_item[5]",
|
|
22072
22979
|
)
|
|
22073
22980
|
|
|
@@ -22076,7 +22983,7 @@ class EuItcmOverlay21Data:
|
|
|
22076
22983
|
None,
|
|
22077
22984
|
None,
|
|
22078
22985
|
"SWAP_SHOP_SUBMENU_ITEMS_3",
|
|
22079
|
-
"",
|
|
22986
|
+
"Used alongside SWAP_SHOP_WINDOW_PARAMS_9.",
|
|
22080
22987
|
"struct simple_menu_id_item[6]",
|
|
22081
22988
|
)
|
|
22082
22989
|
|
|
@@ -22085,8 +22992,8 @@ class EuItcmOverlay21Data:
|
|
|
22085
22992
|
None,
|
|
22086
22993
|
None,
|
|
22087
22994
|
"OVERLAY21_UNKNOWN_STRING_IDS",
|
|
22088
|
-
"
|
|
22089
|
-
"",
|
|
22995
|
+
"Seem to be completely unused by the Swap Shop, but the strings are 1:1 for the ones that are in use elsewhere in the shop.",
|
|
22996
|
+
"int16_t[24]",
|
|
22090
22997
|
)
|
|
22091
22998
|
|
|
22092
22999
|
SWAP_SHOP_WINDOW_PARAMS_2 = Symbol(
|
|
@@ -22094,7 +23001,7 @@ class EuItcmOverlay21Data:
|
|
|
22094
23001
|
None,
|
|
22095
23002
|
None,
|
|
22096
23003
|
"SWAP_SHOP_WINDOW_PARAMS_2",
|
|
22097
|
-
"
|
|
23004
|
+
"Seem to be completely unused by the Swap Shop.",
|
|
22098
23005
|
"struct window_params",
|
|
22099
23006
|
)
|
|
22100
23007
|
|
|
@@ -22103,7 +23010,7 @@ class EuItcmOverlay21Data:
|
|
|
22103
23010
|
None,
|
|
22104
23011
|
None,
|
|
22105
23012
|
"SWAP_SHOP_WINDOW_PARAMS_3",
|
|
22106
|
-
"
|
|
23013
|
+
"Seem to be completely unused by the Swap Shop.",
|
|
22107
23014
|
"struct window_params",
|
|
22108
23015
|
)
|
|
22109
23016
|
|
|
@@ -22112,7 +23019,7 @@ class EuItcmOverlay21Data:
|
|
|
22112
23019
|
None,
|
|
22113
23020
|
None,
|
|
22114
23021
|
"SWAP_SHOP_WINDOW_PARAMS_4",
|
|
22115
|
-
"
|
|
23022
|
+
"Seem to be completely unused by the Swap Shop.",
|
|
22116
23023
|
"struct window_params",
|
|
22117
23024
|
)
|
|
22118
23025
|
|
|
@@ -22121,7 +23028,7 @@ class EuItcmOverlay21Data:
|
|
|
22121
23028
|
None,
|
|
22122
23029
|
None,
|
|
22123
23030
|
"SWAP_SHOP_WINDOW_PARAMS_5",
|
|
22124
|
-
"
|
|
23031
|
+
"Used alongside SWAP_SHOP_MAIN_MENU_ITEMS_2.",
|
|
22125
23032
|
"struct window_params",
|
|
22126
23033
|
)
|
|
22127
23034
|
|
|
@@ -22130,7 +23037,7 @@ class EuItcmOverlay21Data:
|
|
|
22130
23037
|
None,
|
|
22131
23038
|
None,
|
|
22132
23039
|
"SWAP_SHOP_WINDOW_PARAMS_6",
|
|
22133
|
-
"
|
|
23040
|
+
"Used alongside both SWAP_SHOP_MAIN_MENU_ITEMS_1 and SWAP_SHOP_SUBMENU_ITEMS_1.",
|
|
22134
23041
|
"struct window_params",
|
|
22135
23042
|
)
|
|
22136
23043
|
|
|
@@ -22139,7 +23046,7 @@ class EuItcmOverlay21Data:
|
|
|
22139
23046
|
None,
|
|
22140
23047
|
None,
|
|
22141
23048
|
"SWAP_SHOP_WINDOW_PARAMS_7",
|
|
22142
|
-
"
|
|
23049
|
+
"Used alongside both SWAP_SHOP_MENU_ITEMS_CONFIRM and SWAP_SHOP_SUBMENU_ITEMS_2.",
|
|
22143
23050
|
"struct window_params",
|
|
22144
23051
|
)
|
|
22145
23052
|
|
|
@@ -22148,7 +23055,7 @@ class EuItcmOverlay21Data:
|
|
|
22148
23055
|
None,
|
|
22149
23056
|
None,
|
|
22150
23057
|
"SWAP_SHOP_WINDOW_PARAMS_8",
|
|
22151
|
-
"
|
|
23058
|
+
"Used alone, seemingly for the exclusive item description window.",
|
|
22152
23059
|
"struct window_params",
|
|
22153
23060
|
)
|
|
22154
23061
|
|
|
@@ -22157,11 +23064,242 @@ class EuItcmOverlay21Data:
|
|
|
22157
23064
|
None,
|
|
22158
23065
|
None,
|
|
22159
23066
|
"SWAP_SHOP_WINDOW_PARAMS_9",
|
|
22160
|
-
"
|
|
23067
|
+
"Used alongside SWAP_SHOP_SUBMENU_ITEMS_3.",
|
|
22161
23068
|
"struct window_params",
|
|
22162
23069
|
)
|
|
22163
23070
|
|
|
22164
|
-
|
|
23071
|
+
SWAP_SHOP_TALK_WELCOME_DEBUG_STRING = Symbol(
|
|
23072
|
+
None,
|
|
23073
|
+
None,
|
|
23074
|
+
None,
|
|
23075
|
+
"SWAP_SHOP_TALK_WELCOME_DEBUG_STRING",
|
|
23076
|
+
"MENU_SYNTHESIS_MODE_START:\n",
|
|
23077
|
+
"char[28]",
|
|
23078
|
+
)
|
|
23079
|
+
|
|
23080
|
+
SWAP_SHOP_MAIN_MENU_OPTIONS_DEBUG_STRING = Symbol(
|
|
23081
|
+
None,
|
|
23082
|
+
None,
|
|
23083
|
+
None,
|
|
23084
|
+
"SWAP_SHOP_MAIN_MENU_OPTIONS_DEBUG_STRING",
|
|
23085
|
+
"MENU_SYNTHESIS_MODE_SELECTMENU:\n",
|
|
23086
|
+
"char[33]",
|
|
23087
|
+
)
|
|
23088
|
+
|
|
23089
|
+
SWAP_SHOP_TALK_CONTINUE_SWAP_DEBUG_STRING = Symbol(
|
|
23090
|
+
None,
|
|
23091
|
+
None,
|
|
23092
|
+
None,
|
|
23093
|
+
"SWAP_SHOP_TALK_CONTINUE_SWAP_DEBUG_STRING",
|
|
23094
|
+
"MENU_SYNTHESIS_MODE_RESTART:\n",
|
|
23095
|
+
"char[30]",
|
|
23096
|
+
)
|
|
23097
|
+
|
|
23098
|
+
SWAP_SHOP_TALK_SUBINFO_DEBUG_STRING = Symbol(
|
|
23099
|
+
None,
|
|
23100
|
+
None,
|
|
23101
|
+
None,
|
|
23102
|
+
"SWAP_SHOP_TALK_SUBINFO_DEBUG_STRING",
|
|
23103
|
+
"MENU_SYNTHESIS_MODE_EXPLANATION:\n",
|
|
23104
|
+
"char[34]",
|
|
23105
|
+
)
|
|
23106
|
+
|
|
23107
|
+
SWAP_SHOP_TALK_COME_AGAIN_DEBUG_STRING = Symbol(
|
|
23108
|
+
None,
|
|
23109
|
+
None,
|
|
23110
|
+
None,
|
|
23111
|
+
"SWAP_SHOP_TALK_COME_AGAIN_DEBUG_STRING",
|
|
23112
|
+
"MENU_SYNTHESIS_MODE_THANKS:\n",
|
|
23113
|
+
"char[29]",
|
|
23114
|
+
)
|
|
23115
|
+
|
|
23116
|
+
SWAP_SHOP_TALK_LACKING_SWAP_ITEMS_DEBUG_STRING = Symbol(
|
|
23117
|
+
None,
|
|
23118
|
+
None,
|
|
23119
|
+
None,
|
|
23120
|
+
"SWAP_SHOP_TALK_LACKING_SWAP_ITEMS_DEBUG_STRING",
|
|
23121
|
+
"MENU_SYNTHESIS_MODE_ITEM_NON:\n",
|
|
23122
|
+
"char[31]",
|
|
23123
|
+
)
|
|
23124
|
+
|
|
23125
|
+
SWAP_SHOP_TALK_SWAP_BROKE_DEBUG_STRING = Symbol(
|
|
23126
|
+
None,
|
|
23127
|
+
None,
|
|
23128
|
+
None,
|
|
23129
|
+
"SWAP_SHOP_TALK_SWAP_BROKE_DEBUG_STRING",
|
|
23130
|
+
"MENU_SYNTHESIS_MODE_GOLD_NON\n",
|
|
23131
|
+
"char[30]",
|
|
23132
|
+
)
|
|
23133
|
+
|
|
23134
|
+
SWAP_SHOP_TALK_SWAP_POOR_DEBUG_STRING = Symbol(
|
|
23135
|
+
None,
|
|
23136
|
+
None,
|
|
23137
|
+
None,
|
|
23138
|
+
"SWAP_SHOP_TALK_SWAP_POOR_DEBUG_STRING",
|
|
23139
|
+
"MENU_SYNTHESIS_GOLD",
|
|
23140
|
+
"char[19]",
|
|
23141
|
+
)
|
|
23142
|
+
|
|
23143
|
+
SWAP_SHOP_UNK_8_DEBUG_STRING = Symbol(
|
|
23144
|
+
None,
|
|
23145
|
+
None,
|
|
23146
|
+
None,
|
|
23147
|
+
"SWAP_SHOP_UNK_8_DEBUG_STRING",
|
|
23148
|
+
"MENU_SYNTHESIS_MODE_SELECT_FULL:\n",
|
|
23149
|
+
"char[34]",
|
|
23150
|
+
)
|
|
23151
|
+
|
|
23152
|
+
SWAP_SHOP_CLOSE_SHOP_DEBUG_STRING = Symbol(
|
|
23153
|
+
None,
|
|
23154
|
+
None,
|
|
23155
|
+
None,
|
|
23156
|
+
"SWAP_SHOP_CLOSE_SHOP_DEBUG_STRING",
|
|
23157
|
+
"MENU_SYNTHESIS_MODE_QUIT\n",
|
|
23158
|
+
"char[26]",
|
|
23159
|
+
)
|
|
23160
|
+
|
|
23161
|
+
SWAP_SHOP_TALK_WHAT_ITEMS_DEBUG_STRING = Symbol(
|
|
23162
|
+
None,
|
|
23163
|
+
None,
|
|
23164
|
+
None,
|
|
23165
|
+
"SWAP_SHOP_TALK_WHAT_ITEMS_DEBUG_STRING",
|
|
23166
|
+
"MENU_SYNTHESIS_MODE_SELECT_START:\n",
|
|
23167
|
+
"char[35]",
|
|
23168
|
+
)
|
|
23169
|
+
|
|
23170
|
+
SWAP_SHOP_TALK_VALUABLE_SWAP_DEBUG_STRING = Symbol(
|
|
23171
|
+
None,
|
|
23172
|
+
None,
|
|
23173
|
+
None,
|
|
23174
|
+
"SWAP_SHOP_TALK_VALUABLE_SWAP_DEBUG_STRING",
|
|
23175
|
+
"MENU_SYNTHESIS_MODE__RESTART:\n",
|
|
23176
|
+
"char[31]",
|
|
23177
|
+
)
|
|
23178
|
+
|
|
23179
|
+
SWAP_SHOP_INIT_SWAP_ITEMS_MENU_DEBUG_STRING = Symbol(
|
|
23180
|
+
None,
|
|
23181
|
+
None,
|
|
23182
|
+
None,
|
|
23183
|
+
"SWAP_SHOP_INIT_SWAP_ITEMS_MENU_DEBUG_STRING",
|
|
23184
|
+
"MENU_SYNTHESIS_MODE_SELECT_INIT:\n",
|
|
23185
|
+
"char[34]",
|
|
23186
|
+
)
|
|
23187
|
+
|
|
23188
|
+
SWAP_SHOP_SWAP_ITEMS_MENU_DEBUG_STRING = Symbol(
|
|
23189
|
+
None,
|
|
23190
|
+
None,
|
|
23191
|
+
None,
|
|
23192
|
+
"SWAP_SHOP_SWAP_ITEMS_MENU_DEBUG_STRING",
|
|
23193
|
+
"MENU_SYNTHESIS_MODE_SELECT_SELECT:\n",
|
|
23194
|
+
"char[36]",
|
|
23195
|
+
)
|
|
23196
|
+
|
|
23197
|
+
SWAP_SHOP_RETURN_SWAP_ITEMS_MENU_DEBUG_STRING = Symbol(
|
|
23198
|
+
None,
|
|
23199
|
+
None,
|
|
23200
|
+
None,
|
|
23201
|
+
"SWAP_SHOP_RETURN_SWAP_ITEMS_MENU_DEBUG_STRING",
|
|
23202
|
+
"MENU_SYNTHESIS_MODE_SELECT_RESELECT:\n",
|
|
23203
|
+
"char[38]",
|
|
23204
|
+
)
|
|
23205
|
+
|
|
23206
|
+
SWAP_SHOP_SELECT_SWAP_ITEM_OPTIONS_DEBUG_STRING = Symbol(
|
|
23207
|
+
None,
|
|
23208
|
+
None,
|
|
23209
|
+
None,
|
|
23210
|
+
"SWAP_SHOP_SELECT_SWAP_ITEM_OPTIONS_DEBUG_STRING",
|
|
23211
|
+
"\tMENU_SYNTHESIS_MODE_SELECT_SUB_MENU:\n",
|
|
23212
|
+
"char[40]",
|
|
23213
|
+
)
|
|
23214
|
+
|
|
23215
|
+
SWAP_SHOP_SWAP_ITEM_GET_INFO_DEBUG_STRING = Symbol(
|
|
23216
|
+
None,
|
|
23217
|
+
None,
|
|
23218
|
+
None,
|
|
23219
|
+
"SWAP_SHOP_SWAP_ITEM_GET_INFO_DEBUG_STRING",
|
|
23220
|
+
"MENU_SYNTHESIS_MODE_SELECT_EXPLA\n",
|
|
23221
|
+
"char[34]",
|
|
23222
|
+
)
|
|
23223
|
+
|
|
23224
|
+
SWAP_SHOP_ITEM_ZERO_STRING = Symbol(
|
|
23225
|
+
None, None, None, "SWAP_SHOP_ITEM_ZERO_STRING", "[item:0]", "char[8]"
|
|
23226
|
+
)
|
|
23227
|
+
|
|
23228
|
+
SWAP_SHOP_TALK_CONFIRM_SWAP_DEBUG_STRING = Symbol(
|
|
23229
|
+
None,
|
|
23230
|
+
None,
|
|
23231
|
+
None,
|
|
23232
|
+
"SWAP_SHOP_TALK_CONFIRM_SWAP_DEBUG_STRING",
|
|
23233
|
+
"MENU_SYNTHESIS_MODE_SELECT_CONFIRM_1:\n",
|
|
23234
|
+
"char[39]",
|
|
23235
|
+
)
|
|
23236
|
+
|
|
23237
|
+
SWAP_SHOP_CONFIRM_CHOICE_DEBUG_STRING = Symbol(
|
|
23238
|
+
None,
|
|
23239
|
+
None,
|
|
23240
|
+
None,
|
|
23241
|
+
"SWAP_SHOP_CONFIRM_CHOICE_DEBUG_STRING",
|
|
23242
|
+
"_SELL_CONFIRM NEW_1\n",
|
|
23243
|
+
"char[21]",
|
|
23244
|
+
)
|
|
23245
|
+
|
|
23246
|
+
SWAP_SHOP_INIT_SCRIPT_ACTION_1_DEBUG_STRING = Symbol(
|
|
23247
|
+
None,
|
|
23248
|
+
None,
|
|
23249
|
+
None,
|
|
23250
|
+
"SWAP_SHOP_INIT_SCRIPT_ACTION_1_DEBUG_STRING",
|
|
23251
|
+
"MENU_SYNTHESIS_MODE_SELECT_THANKS_ACTION:\n",
|
|
23252
|
+
"char[43]",
|
|
23253
|
+
)
|
|
23254
|
+
|
|
23255
|
+
SWAP_SHOP_INIT_SCRIPT_ACTION_2_DEBUG_STRING = Symbol(
|
|
23256
|
+
None,
|
|
23257
|
+
None,
|
|
23258
|
+
None,
|
|
23259
|
+
"SWAP_SHOP_INIT_SCRIPT_ACTION_2_DEBUG_STRING",
|
|
23260
|
+
"MENU_SYNTHESIS_MODE_SELECT_THANKS_ACTION2:\n",
|
|
23261
|
+
"char[44]",
|
|
23262
|
+
)
|
|
23263
|
+
|
|
23264
|
+
SWAP_SHOP_INIT_SCRIPT_ACTION_3_DEBUG_STRING = Symbol(
|
|
23265
|
+
None,
|
|
23266
|
+
None,
|
|
23267
|
+
None,
|
|
23268
|
+
"SWAP_SHOP_INIT_SCRIPT_ACTION_3_DEBUG_STRING",
|
|
23269
|
+
"MENU_SYNTHESIS_MODE_SELECT_THANKS_ACTION3:\n",
|
|
23270
|
+
"char[44]",
|
|
23271
|
+
)
|
|
23272
|
+
|
|
23273
|
+
SWAP_SHOP_TEXT_PUT_IN_CAULDRON_DEBUG_STRING = Symbol(
|
|
23274
|
+
None,
|
|
23275
|
+
None,
|
|
23276
|
+
None,
|
|
23277
|
+
"SWAP_SHOP_TEXT_PUT_IN_CAULDRON_DEBUG_STRING",
|
|
23278
|
+
"MENU_SYNTHESIS_MODE_SELECT_THANKS_1:\n",
|
|
23279
|
+
"char[38]",
|
|
23280
|
+
)
|
|
23281
|
+
|
|
23282
|
+
SWAP_SHOP_DO_SWAP_THEN_TALK_DEBUG_STRING = Symbol(
|
|
23283
|
+
None,
|
|
23284
|
+
None,
|
|
23285
|
+
None,
|
|
23286
|
+
"SWAP_SHOP_DO_SWAP_THEN_TALK_DEBUG_STRING",
|
|
23287
|
+
"MENU_SYNTHESIS_MODE_SELECT_THANKS:\n",
|
|
23288
|
+
"char[36]",
|
|
23289
|
+
)
|
|
23290
|
+
|
|
23291
|
+
OVERLAY21_JP_STRING = Symbol(
|
|
23292
|
+
None,
|
|
23293
|
+
None,
|
|
23294
|
+
None,
|
|
23295
|
+
"OVERLAY21_JP_STRING",
|
|
23296
|
+
"合成:(synthesis in Japanese)",
|
|
23297
|
+
"wchar_t[3]",
|
|
23298
|
+
)
|
|
23299
|
+
|
|
23300
|
+
SWAP_SHOP_GOLD_STRING = Symbol(
|
|
23301
|
+
None, None, None, "SWAP_SHOP_GOLD_STRING", "[CS:V][gold:0][CR]", "char[18]"
|
|
23302
|
+
)
|
|
22165
23303
|
|
|
22166
23304
|
OVERLAY21_RESERVED_SPACE = Symbol(
|
|
22167
23305
|
None,
|
|
@@ -22169,16 +23307,16 @@ class EuItcmOverlay21Data:
|
|
|
22169
23307
|
None,
|
|
22170
23308
|
"OVERLAY21_RESERVED_SPACE",
|
|
22171
23309
|
"Note: unverified, ported from Irdkwia's notes",
|
|
22172
|
-
"",
|
|
23310
|
+
"undefined[8]",
|
|
22173
23311
|
)
|
|
22174
23312
|
|
|
22175
|
-
|
|
23313
|
+
SWAP_SHOP_MENU_DATA_PTR = Symbol(
|
|
22176
23314
|
None,
|
|
22177
23315
|
None,
|
|
22178
23316
|
None,
|
|
22179
|
-
"
|
|
22180
|
-
"
|
|
22181
|
-
"",
|
|
23317
|
+
"SWAP_SHOP_MENU_DATA_PTR",
|
|
23318
|
+
"Pointer to the swap_shop_menu_data that governs the operations of most overlay_21 functions.",
|
|
23319
|
+
"struct swap_shop_menu_data*",
|
|
22182
23320
|
)
|
|
22183
23321
|
|
|
22184
23322
|
OVERLAY21_UNKNOWN_POINTER__NA_238CF44 = Symbol(
|
|
@@ -22187,7 +23325,7 @@ class EuItcmOverlay21Data:
|
|
|
22187
23325
|
None,
|
|
22188
23326
|
"OVERLAY21_UNKNOWN_POINTER__NA_238CF44",
|
|
22189
23327
|
"Note: unverified, ported from Irdkwia's notes",
|
|
22190
|
-
"",
|
|
23328
|
+
"undefined*",
|
|
22191
23329
|
)
|
|
22192
23330
|
|
|
22193
23331
|
|
|
@@ -23204,6 +24342,15 @@ class EuItcmOverlay29Functions:
|
|
|
23204
24342
|
None,
|
|
23205
24343
|
)
|
|
23206
24344
|
|
|
24345
|
+
FloorSecondaryTerrainIsChasm = Symbol(
|
|
24346
|
+
None,
|
|
24347
|
+
None,
|
|
24348
|
+
None,
|
|
24349
|
+
"FloorSecondaryTerrainIsChasm",
|
|
24350
|
+
"Returns true if the current floor has a chasm secondary terrain, checking first if floor_generation_status::has_chasms_as_secondary_terrain is true\nand if not, whether the tileset's entry in SECONDARY_TERRAIN_TYPES is SECONDARY_TERRAIN_CHASM.\n\nr0: tileset id\nreturn: bool",
|
|
24351
|
+
None,
|
|
24352
|
+
)
|
|
24353
|
+
|
|
23207
24354
|
GetFloorType = Symbol(
|
|
23208
24355
|
None,
|
|
23209
24356
|
None,
|
|
@@ -23285,6 +24432,24 @@ class EuItcmOverlay29Functions:
|
|
|
23285
24432
|
None,
|
|
23286
24433
|
)
|
|
23287
24434
|
|
|
24435
|
+
SetDungeonEscapeFields = Symbol(
|
|
24436
|
+
None,
|
|
24437
|
+
None,
|
|
24438
|
+
None,
|
|
24439
|
+
"SetDungeonEscapeFields",
|
|
24440
|
+
"Sets the successful_exit_tracker and end_floor_no_death_check_flag fields of the dungeon struct.\n\nr0: new successful_exit_tracker\nr1: new end_floor_no_death_check_flag",
|
|
24441
|
+
None,
|
|
24442
|
+
)
|
|
24443
|
+
|
|
24444
|
+
GetSuccessfulExitTracker = Symbol(
|
|
24445
|
+
None,
|
|
24446
|
+
None,
|
|
24447
|
+
None,
|
|
24448
|
+
"GetSuccessfulExitTracker",
|
|
24449
|
+
"Returns the successful_exit_tracker field of the dungeon struct.\n\nreturn: successful_exit_tracker",
|
|
24450
|
+
None,
|
|
24451
|
+
)
|
|
24452
|
+
|
|
23288
24453
|
CheckTouchscreenArea = Symbol(
|
|
23289
24454
|
None,
|
|
23290
24455
|
None,
|
|
@@ -23452,7 +24617,7 @@ class EuItcmOverlay29Functions:
|
|
|
23452
24617
|
None,
|
|
23453
24618
|
None,
|
|
23454
24619
|
"SubstitutePlaceholderStringTags",
|
|
23455
|
-
"Replaces instances of a given placeholder tag by the string representation of the given entity.\n\nFrom the eos-move-effects docs (which are somewhat nebulous): 'Replaces the string at StringID [r0] by the string representation of the target [r1] (aka its name). Any message with the string manipulator '[string:StringID]' will use that string'.\n\nThe game uses various placeholder tags in its strings, which you can read about here: https://textbox.skytemple.org/.\n\nr0: string ID (unclear what this means)\nr1: entity pointer\nr2:
|
|
24620
|
+
"Replaces instances of a given placeholder tag by the string representation of the given entity.\n\nFrom the eos-move-effects docs (which are somewhat nebulous): 'Replaces the string at StringID [r0] by the string representation of the target [r1] (aka its name). Any message with the string manipulator '[string:StringID]' will use that string'.\n\nThe game uses various placeholder tags in its strings, which you can read about here: https://textbox.skytemple.org/.\n\nr0: string ID (unclear what this means)\nr1: entity pointer\nr2: unused",
|
|
23456
24621
|
None,
|
|
23457
24622
|
)
|
|
23458
24623
|
|
|
@@ -23591,6 +24756,15 @@ class EuItcmOverlay29Functions:
|
|
|
23591
24756
|
None,
|
|
23592
24757
|
)
|
|
23593
24758
|
|
|
24759
|
+
PlayParalysisEffect = Symbol(
|
|
24760
|
+
None,
|
|
24761
|
+
None,
|
|
24762
|
+
None,
|
|
24763
|
+
"PlayParalysisEffect",
|
|
24764
|
+
"Displays the graphical effect on a monster that just became paralyzed.\n\nr0: entity pointer",
|
|
24765
|
+
None,
|
|
24766
|
+
)
|
|
24767
|
+
|
|
23594
24768
|
PlayEffectAnimationEntityStandard = Symbol(
|
|
23595
24769
|
None,
|
|
23596
24770
|
None,
|
|
@@ -23600,6 +24774,24 @@ class EuItcmOverlay29Functions:
|
|
|
23600
24774
|
None,
|
|
23601
24775
|
)
|
|
23602
24776
|
|
|
24777
|
+
PlaySpeedUpEffect = Symbol(
|
|
24778
|
+
None,
|
|
24779
|
+
None,
|
|
24780
|
+
None,
|
|
24781
|
+
"PlaySpeedUpEffect",
|
|
24782
|
+
"Displays the graphical effect on a monster that just raised movement speed.\n\nr0: entity pointer",
|
|
24783
|
+
None,
|
|
24784
|
+
)
|
|
24785
|
+
|
|
24786
|
+
PlaySpeedDownEffect = Symbol(
|
|
24787
|
+
None,
|
|
24788
|
+
None,
|
|
24789
|
+
None,
|
|
24790
|
+
"PlaySpeedDownEffect",
|
|
24791
|
+
"Displays the graphical effect on a monster that just lowered movement speed.\n\nr0: entity pointer",
|
|
24792
|
+
None,
|
|
24793
|
+
)
|
|
24794
|
+
|
|
23603
24795
|
ShowPpRestoreEffect = Symbol(
|
|
23604
24796
|
None,
|
|
23605
24797
|
None,
|
|
@@ -23609,6 +24801,105 @@ class EuItcmOverlay29Functions:
|
|
|
23609
24801
|
None,
|
|
23610
24802
|
)
|
|
23611
24803
|
|
|
24804
|
+
PlayOffensiveStatDownEffect = Symbol(
|
|
24805
|
+
None,
|
|
24806
|
+
None,
|
|
24807
|
+
None,
|
|
24808
|
+
"PlayOffensiveStatDownEffect",
|
|
24809
|
+
"Displays the graphical effect on a monster that just lowered an offensive stat.\n\nr0: entity pointer\nr1: stat index",
|
|
24810
|
+
None,
|
|
24811
|
+
)
|
|
24812
|
+
|
|
24813
|
+
PlayDefensiveStatDownEffect = Symbol(
|
|
24814
|
+
None,
|
|
24815
|
+
None,
|
|
24816
|
+
None,
|
|
24817
|
+
"PlayDefensiveStatDownEffect",
|
|
24818
|
+
"Displays the graphical effect on a monster that just lowered a defensive stat.\n\nr0: entity pointer\nr1: stat index",
|
|
24819
|
+
None,
|
|
24820
|
+
)
|
|
24821
|
+
|
|
24822
|
+
PlayOffensiveStatUpEffect = Symbol(
|
|
24823
|
+
None,
|
|
24824
|
+
None,
|
|
24825
|
+
None,
|
|
24826
|
+
"PlayOffensiveStatUpEffect",
|
|
24827
|
+
"Displays the graphical effect on a monster that just raised an offensive stat.\n\nr0: entity pointer\nr1: stat index",
|
|
24828
|
+
None,
|
|
24829
|
+
)
|
|
24830
|
+
|
|
24831
|
+
PlayDefensiveStatUpEffect = Symbol(
|
|
24832
|
+
None,
|
|
24833
|
+
None,
|
|
24834
|
+
None,
|
|
24835
|
+
"PlayDefensiveStatUpEffect",
|
|
24836
|
+
"Displays the graphical effect on a monster that just raised a defensive stat.\n\nr0: entity pointer\nr1: stat index",
|
|
24837
|
+
None,
|
|
24838
|
+
)
|
|
24839
|
+
|
|
24840
|
+
PlayOffensiveStatMultiplierUpEffect = Symbol(
|
|
24841
|
+
None,
|
|
24842
|
+
None,
|
|
24843
|
+
None,
|
|
24844
|
+
"PlayOffensiveStatMultiplierUpEffect",
|
|
24845
|
+
"Displays the graphical effect on a monster that just raised an offensive stat multiplier.\n\nr0: entity pointer\nr1: stat index",
|
|
24846
|
+
None,
|
|
24847
|
+
)
|
|
24848
|
+
|
|
24849
|
+
PlayOffensiveStatMultiplierDownEffect = Symbol(
|
|
24850
|
+
None,
|
|
24851
|
+
None,
|
|
24852
|
+
None,
|
|
24853
|
+
"PlayOffensiveStatMultiplierDownEffect",
|
|
24854
|
+
"Displays the graphical effect on a monster that just lowered an offensive stat multiplier.\n\nr0: entity pointer\nr1: stat index",
|
|
24855
|
+
None,
|
|
24856
|
+
)
|
|
24857
|
+
|
|
24858
|
+
PlayDefensiveStatMultiplierUpEffect = Symbol(
|
|
24859
|
+
None,
|
|
24860
|
+
None,
|
|
24861
|
+
None,
|
|
24862
|
+
"PlayDefensiveStatMultiplierUpEffect",
|
|
24863
|
+
"Displays the graphical effect on a monster that just raised a defensive stat multiplier.\n\nr0: entity pointer\nr1: stat index",
|
|
24864
|
+
None,
|
|
24865
|
+
)
|
|
24866
|
+
|
|
24867
|
+
PlayDefensiveStatMultiplierDownEffect = Symbol(
|
|
24868
|
+
None,
|
|
24869
|
+
None,
|
|
24870
|
+
None,
|
|
24871
|
+
"PlayDefensiveStatMultiplierDownEffect",
|
|
24872
|
+
"Displays the graphical effect on a monster that just lowered a defensive stat multiplier.\n\nr0: entity pointer\nr1: stat index",
|
|
24873
|
+
None,
|
|
24874
|
+
)
|
|
24875
|
+
|
|
24876
|
+
PlayHitChanceUpEffect = Symbol(
|
|
24877
|
+
None,
|
|
24878
|
+
None,
|
|
24879
|
+
None,
|
|
24880
|
+
"PlayHitChanceUpEffect",
|
|
24881
|
+
"Displays the graphical effect on a monster that just raised a hit chance stat.\n\nr0: entity pointer\nr1: stat index",
|
|
24882
|
+
None,
|
|
24883
|
+
)
|
|
24884
|
+
|
|
24885
|
+
PlayHitChanceDownEffect = Symbol(
|
|
24886
|
+
None,
|
|
24887
|
+
None,
|
|
24888
|
+
None,
|
|
24889
|
+
"PlayHitChanceDownEffect",
|
|
24890
|
+
"Displays the graphical effect on a monster that just lowered a hit chance stat.\n\nr0: entity pointer\nr1: stat index",
|
|
24891
|
+
None,
|
|
24892
|
+
)
|
|
24893
|
+
|
|
24894
|
+
PlaySeByIdIfShouldDisplayEntity = Symbol(
|
|
24895
|
+
None,
|
|
24896
|
+
None,
|
|
24897
|
+
None,
|
|
24898
|
+
"PlaySeByIdIfShouldDisplayEntity",
|
|
24899
|
+
"Plays the specified sound effect if ShouldDisplayEntityAdvanced returns true for the entity (or if the entity pointer is null).\n\nr0: entity pointer\nr1: Sound effect ID",
|
|
24900
|
+
None,
|
|
24901
|
+
)
|
|
24902
|
+
|
|
23612
24903
|
ShouldDisplayEntityAdvanced = Symbol(
|
|
23613
24904
|
None,
|
|
23614
24905
|
None,
|
|
@@ -23654,6 +24945,15 @@ class EuItcmOverlay29Functions:
|
|
|
23654
24945
|
None,
|
|
23655
24946
|
)
|
|
23656
24947
|
|
|
24948
|
+
GetRandomTrapId = Symbol(
|
|
24949
|
+
None,
|
|
24950
|
+
None,
|
|
24951
|
+
None,
|
|
24952
|
+
"GetRandomTrapId",
|
|
24953
|
+
"Gets the id of the trap to be used as the effect of a Random Trap.\n\nreturn: trap id",
|
|
24954
|
+
None,
|
|
24955
|
+
)
|
|
24956
|
+
|
|
23657
24957
|
GetItemIdToSpawn = Symbol(
|
|
23658
24958
|
None,
|
|
23659
24959
|
None,
|
|
@@ -23816,6 +25116,15 @@ class EuItcmOverlay29Functions:
|
|
|
23816
25116
|
None,
|
|
23817
25117
|
)
|
|
23818
25118
|
|
|
25119
|
+
IsPositionWithinTwoTiles = Symbol(
|
|
25120
|
+
None,
|
|
25121
|
+
None,
|
|
25122
|
+
None,
|
|
25123
|
+
"IsPositionWithinTwoTiles",
|
|
25124
|
+
"Checks if a given target position is within two tiles of a given origin position.\n\nr0: Origin position\nr1: Target position\nreturn: True if the target position within two tiles of the origin position.",
|
|
25125
|
+
None,
|
|
25126
|
+
)
|
|
25127
|
+
|
|
23819
25128
|
GetLeader = Symbol(
|
|
23820
25129
|
None,
|
|
23821
25130
|
None,
|
|
@@ -24023,6 +25332,15 @@ class EuItcmOverlay29Functions:
|
|
|
24023
25332
|
None,
|
|
24024
25333
|
)
|
|
24025
25334
|
|
|
25335
|
+
PlaySeByIdIfNotSilence = Symbol(
|
|
25336
|
+
None,
|
|
25337
|
+
None,
|
|
25338
|
+
None,
|
|
25339
|
+
"PlaySeByIdIfNotSilence",
|
|
25340
|
+
"Plays the specified sound effect if it is not the designated silence value (0x3F00).\n\nr0: Sound effect ID",
|
|
25341
|
+
None,
|
|
25342
|
+
)
|
|
25343
|
+
|
|
24026
25344
|
MusicTableIdxToMusicId = Symbol(
|
|
24027
25345
|
None,
|
|
24028
25346
|
None,
|
|
@@ -24050,6 +25368,15 @@ class EuItcmOverlay29Functions:
|
|
|
24050
25368
|
None,
|
|
24051
25369
|
)
|
|
24052
25370
|
|
|
25371
|
+
ResetLeaderActionFields = Symbol(
|
|
25372
|
+
None,
|
|
25373
|
+
None,
|
|
25374
|
+
None,
|
|
25375
|
+
"ResetLeaderActionFields",
|
|
25376
|
+
"Resets the leader monster's action_id fields to 0.\n\nr0: whether to also set the action_use_idx fields of the action_parameters structs and the arc_item_target_pos fields to 0",
|
|
25377
|
+
None,
|
|
25378
|
+
)
|
|
25379
|
+
|
|
24053
25380
|
SetLeaderActionFields = Symbol(
|
|
24054
25381
|
None,
|
|
24055
25382
|
None,
|
|
@@ -24266,6 +25593,15 @@ class EuItcmOverlay29Functions:
|
|
|
24266
25593
|
None,
|
|
24267
25594
|
)
|
|
24268
25595
|
|
|
25596
|
+
SpawnTraps = Symbol(
|
|
25597
|
+
None,
|
|
25598
|
+
None,
|
|
25599
|
+
None,
|
|
25600
|
+
"SpawnTraps",
|
|
25601
|
+
"Spawns a new dungeon floor's traps.\n\nNo params.",
|
|
25602
|
+
None,
|
|
25603
|
+
)
|
|
25604
|
+
|
|
24269
25605
|
SpawnEnemyTrapAtPos = Symbol(
|
|
24270
25606
|
None,
|
|
24271
25607
|
None,
|
|
@@ -24284,6 +25620,15 @@ class EuItcmOverlay29Functions:
|
|
|
24284
25620
|
None,
|
|
24285
25621
|
)
|
|
24286
25622
|
|
|
25623
|
+
CanLayTrap = Symbol(
|
|
25624
|
+
None,
|
|
25625
|
+
None,
|
|
25626
|
+
None,
|
|
25627
|
+
"CanLayTrap",
|
|
25628
|
+
"Checks if a trap can be placed on the tile.\n\nr0: position\nreturn: true if a trap can be spawned at the given position.",
|
|
25629
|
+
None,
|
|
25630
|
+
)
|
|
25631
|
+
|
|
24287
25632
|
TrySpawnTrap = Symbol(
|
|
24288
25633
|
None,
|
|
24289
25634
|
None,
|
|
@@ -24311,6 +25656,33 @@ class EuItcmOverlay29Functions:
|
|
|
24311
25656
|
None,
|
|
24312
25657
|
)
|
|
24313
25658
|
|
|
25659
|
+
TryRevealAttackedTrap = Symbol(
|
|
25660
|
+
None,
|
|
25661
|
+
None,
|
|
25662
|
+
None,
|
|
25663
|
+
"TryRevealAttackedTrap",
|
|
25664
|
+
"Reveals the trap given by the position if the dungeon struct's regular_attack_reveal_traps field is true.\n\nIs also activated on a tile if a fainted monster drops an item on it.\n\nr0: position struct pointer\nr1: boolean for whether to update trap visibility afterwards (always 1 in practice)\nreturn: true if there is a trap on the position",
|
|
25665
|
+
None,
|
|
25666
|
+
)
|
|
25667
|
+
|
|
25668
|
+
SubstitutePlaceholderTrapTags2 = Symbol(
|
|
25669
|
+
None,
|
|
25670
|
+
None,
|
|
25671
|
+
None,
|
|
25672
|
+
"SubstitutePlaceholderTrapTags2",
|
|
25673
|
+
"Used in TryTriggerTrap. Has the same functionality as SubstitutePlaceholderTrapTags.\n\nr1: tag id\nr2: trap id",
|
|
25674
|
+
None,
|
|
25675
|
+
)
|
|
25676
|
+
|
|
25677
|
+
SubstitutePlaceholderTrapTags = Symbol(
|
|
25678
|
+
None,
|
|
25679
|
+
None,
|
|
25680
|
+
None,
|
|
25681
|
+
"SubstitutePlaceholderTrapTags",
|
|
25682
|
+
"Used in SubstitutePlaceholderStringTags. Substitutes a [trap:r1] tag in a message log message for the name of a trap.\n\nr0: preprocessor_args pointer (in practice, always the global struct used for the message log)\nr1: tag id\nr2: trap id",
|
|
25683
|
+
None,
|
|
25684
|
+
)
|
|
25685
|
+
|
|
24314
25686
|
TryTriggerTrap = Symbol(
|
|
24315
25687
|
None,
|
|
24316
25688
|
None,
|
|
@@ -24437,6 +25809,15 @@ class EuItcmOverlay29Functions:
|
|
|
24437
25809
|
None,
|
|
24438
25810
|
)
|
|
24439
25811
|
|
|
25812
|
+
SpawnMonstersAroundPos = Symbol(
|
|
25813
|
+
None,
|
|
25814
|
+
None,
|
|
25815
|
+
None,
|
|
25816
|
+
"SpawnMonstersAroundPos",
|
|
25817
|
+
"Spawns a given number of monsters around a position. Used by the Summon Trap and Grudge Trap.\n\nr0: entity pointer (unused)\nr1: position\nr2: number of enemies to spawn\nreturn: number of enemies that have actually been spawned",
|
|
25818
|
+
None,
|
|
25819
|
+
)
|
|
25820
|
+
|
|
24440
25821
|
RevealTrapsNearby = Symbol(
|
|
24441
25822
|
None,
|
|
24442
25823
|
None,
|
|
@@ -24473,6 +25854,15 @@ class EuItcmOverlay29Functions:
|
|
|
24473
25854
|
None,
|
|
24474
25855
|
)
|
|
24475
25856
|
|
|
25857
|
+
IsBehaviorLoneOutlaw = Symbol(
|
|
25858
|
+
None,
|
|
25859
|
+
None,
|
|
25860
|
+
None,
|
|
25861
|
+
"IsBehaviorLoneOutlaw",
|
|
25862
|
+
"Checks if a behavior ID corresponds to one of the outlaw types that are not from an outlaw team. I.e., BEHAVIOR_OUTLAW, BEHAVIOR_HIDDEN_OUTLAW, or BEHAVIOR_FLEEING_OUTLAW.\n\nr0: monster behavior ID\nreturn: bool",
|
|
25863
|
+
None,
|
|
25864
|
+
)
|
|
25865
|
+
|
|
24476
25866
|
IsSecretBazaarNpcBehavior = Symbol(
|
|
24477
25867
|
None,
|
|
24478
25868
|
None,
|
|
@@ -24491,6 +25881,15 @@ class EuItcmOverlay29Functions:
|
|
|
24491
25881
|
None,
|
|
24492
25882
|
)
|
|
24493
25883
|
|
|
25884
|
+
GetLeaderActionId = Symbol(
|
|
25885
|
+
None,
|
|
25886
|
+
None,
|
|
25887
|
+
None,
|
|
25888
|
+
"GetLeaderActionId",
|
|
25889
|
+
"Gets the current action id of the leader monster's action data.\n\nreturn: action_id",
|
|
25890
|
+
None,
|
|
25891
|
+
)
|
|
25892
|
+
|
|
24494
25893
|
GetEntityTouchscreenArea = Symbol(
|
|
24495
25894
|
None,
|
|
24496
25895
|
None,
|
|
@@ -24545,6 +25944,15 @@ class EuItcmOverlay29Functions:
|
|
|
24545
25944
|
None,
|
|
24546
25945
|
)
|
|
24547
25946
|
|
|
25947
|
+
HandleHeldItemSwaps = Symbol(
|
|
25948
|
+
None,
|
|
25949
|
+
None,
|
|
25950
|
+
None,
|
|
25951
|
+
"HandleHeldItemSwaps",
|
|
25952
|
+
"Handles giving/taking held items to/from a party member (and likely other things).\n\nr0: entity pointer",
|
|
25953
|
+
None,
|
|
25954
|
+
)
|
|
25955
|
+
|
|
24548
25956
|
UseSingleUseItemWrapper = Symbol(
|
|
24549
25957
|
None,
|
|
24550
25958
|
None,
|
|
@@ -24743,12 +26151,12 @@ class EuItcmOverlay29Functions:
|
|
|
24743
26151
|
None,
|
|
24744
26152
|
)
|
|
24745
26153
|
|
|
24746
|
-
|
|
26154
|
+
CreateMonsterSummaryFromEntity = Symbol(
|
|
24747
26155
|
None,
|
|
24748
26156
|
None,
|
|
24749
26157
|
None,
|
|
24750
|
-
"
|
|
24751
|
-
"Creates a snapshot of the condition of a monster struct in a monster_summary struct.\n\nr0: [output] monster_summary\nr1:
|
|
26158
|
+
"CreateMonsterSummaryFromEntity",
|
|
26159
|
+
"Creates a snapshot of the condition of a monster struct in a monster_summary struct.\n\nr0: [output] monster_summary\nr1: monster_entity",
|
|
24752
26160
|
None,
|
|
24753
26161
|
)
|
|
24754
26162
|
|
|
@@ -25031,6 +26439,33 @@ class EuItcmOverlay29Functions:
|
|
|
25031
26439
|
None,
|
|
25032
26440
|
)
|
|
25033
26441
|
|
|
26442
|
+
IsHero = Symbol(
|
|
26443
|
+
None,
|
|
26444
|
+
None,
|
|
26445
|
+
None,
|
|
26446
|
+
"IsHero",
|
|
26447
|
+
"Checks if an entity is the hero, returning true if the 'Joined At' field of its monster struct is DUNGEON_JOINED_AT_QUESTION_MARKS (reserved for the hero).\n\nr0: entity pointer\nreturn: bool",
|
|
26448
|
+
None,
|
|
26449
|
+
)
|
|
26450
|
+
|
|
26451
|
+
IsSpecialStoryAllyOrClient = Symbol(
|
|
26452
|
+
None,
|
|
26453
|
+
None,
|
|
26454
|
+
None,
|
|
26455
|
+
"IsSpecialStoryAllyOrClient",
|
|
26456
|
+
"Same as IsSpecialStoryAlly, except taking an entity pointer and also checking if it is a client.\n\nr0: entity pointer\nreturn: bool",
|
|
26457
|
+
None,
|
|
26458
|
+
)
|
|
26459
|
+
|
|
26460
|
+
ResetTriggerFlags = Symbol(
|
|
26461
|
+
None,
|
|
26462
|
+
None,
|
|
26463
|
+
None,
|
|
26464
|
+
"ResetTriggerFlags",
|
|
26465
|
+
"Resets a monster's contact_ability_trigger_bitflags and exclusive_item_trigger_bitflags fields to 0.\n\nr0: entity pointer",
|
|
26466
|
+
None,
|
|
26467
|
+
)
|
|
26468
|
+
|
|
25034
26469
|
IsSpecialStoryAlly = Symbol(
|
|
25035
26470
|
None,
|
|
25036
26471
|
None,
|
|
@@ -25049,6 +26484,33 @@ class EuItcmOverlay29Functions:
|
|
|
25049
26484
|
None,
|
|
25050
26485
|
)
|
|
25051
26486
|
|
|
26487
|
+
IsMonsterLoneOutlaw = Symbol(
|
|
26488
|
+
None,
|
|
26489
|
+
None,
|
|
26490
|
+
None,
|
|
26491
|
+
"IsMonsterLoneOutlaw",
|
|
26492
|
+
"Checks if a monster's behavior corresponds to one of the outlaw types that are not from an outlaw team. I.e., BEHAVIOR_OUTLAW, BEHAVIOR_HIDDEN_OUTLAW, or BEHAVIOR_FLEEING_OUTLAW.\n\nr0: monster pointer\nreturn: bool",
|
|
26493
|
+
None,
|
|
26494
|
+
)
|
|
26495
|
+
|
|
26496
|
+
IsSecretBazaarNpc = Symbol(
|
|
26497
|
+
None,
|
|
26498
|
+
None,
|
|
26499
|
+
None,
|
|
26500
|
+
"IsSecretBazaarNpc",
|
|
26501
|
+
"Checks if an entity is a Secret Bazaar NPCs.\n\nr0: entity pointer\nreturn: bool",
|
|
26502
|
+
None,
|
|
26503
|
+
)
|
|
26504
|
+
|
|
26505
|
+
IsTeamMemberOnFirstTurnInFixedRoom = Symbol(
|
|
26506
|
+
None,
|
|
26507
|
+
None,
|
|
26508
|
+
None,
|
|
26509
|
+
"IsTeamMemberOnFirstTurnInFixedRoom",
|
|
26510
|
+
"Returns true if a monster is a team member, it is the first turn of the current floor, and the floor is a fixed room.\n\nr0: monster pointer\nreturn: bool",
|
|
26511
|
+
None,
|
|
26512
|
+
)
|
|
26513
|
+
|
|
25052
26514
|
InitOtherMonsterData = Symbol(
|
|
25053
26515
|
None,
|
|
25054
26516
|
None,
|
|
@@ -25247,6 +26709,15 @@ class EuItcmOverlay29Functions:
|
|
|
25247
26709
|
None,
|
|
25248
26710
|
)
|
|
25249
26711
|
|
|
26712
|
+
CanMoveThroughWalls = Symbol(
|
|
26713
|
+
None,
|
|
26714
|
+
None,
|
|
26715
|
+
None,
|
|
26716
|
+
"CanMoveThroughWalls",
|
|
26717
|
+
"Checks if a given monster can move through walls, including both the innate ability of Ghost types and outside modifiers like Mobile Scarf/Orb.\n\nr0: Entity pointer\nreturn: True if the monster can move through walls.",
|
|
26718
|
+
None,
|
|
26719
|
+
)
|
|
26720
|
+
|
|
25250
26721
|
CannotStandOnTile = Symbol(
|
|
25251
26722
|
None,
|
|
25252
26723
|
None,
|
|
@@ -25288,7 +26759,7 @@ class EuItcmOverlay29Functions:
|
|
|
25288
26759
|
None,
|
|
25289
26760
|
None,
|
|
25290
26761
|
"GetMonsterDisplayNameType",
|
|
25291
|
-
"Determines how the name of a monster should be displayed.\n\nr0:
|
|
26762
|
+
"Determines how the name of a monster should be displayed.\n\nr0: Monster pointer\nreturn: Display name type",
|
|
25292
26763
|
None,
|
|
25293
26764
|
)
|
|
25294
26765
|
|
|
@@ -25310,6 +26781,15 @@ class EuItcmOverlay29Functions:
|
|
|
25310
26781
|
None,
|
|
25311
26782
|
)
|
|
25312
26783
|
|
|
26784
|
+
SetPreprocessorArgsStringToName = Symbol(
|
|
26785
|
+
None,
|
|
26786
|
+
None,
|
|
26787
|
+
None,
|
|
26788
|
+
"SetPreprocessorArgsStringToName",
|
|
26789
|
+
"Sets a strings element in a preprocessor_args struct to the name of a monster.\n\nr0: preprocessor_args pointer (if this is null, will use the global message log preprocessor_args struct)\nr1: position in strings array\nr2: monster pointer\nr3: unused\nstack[0]: if 0, will call GetMonsterName; if 1, will call GetMonsterNameWithGender; the 2 case is unknown and seemingly unused.",
|
|
26790
|
+
None,
|
|
26791
|
+
)
|
|
26792
|
+
|
|
25313
26793
|
IsMonsterDrowsy = Symbol(
|
|
25314
26794
|
None,
|
|
25315
26795
|
None,
|
|
@@ -25418,6 +26898,15 @@ class EuItcmOverlay29Functions:
|
|
|
25418
26898
|
None,
|
|
25419
26899
|
)
|
|
25420
26900
|
|
|
26901
|
+
MonsterHasQuarterHp = Symbol(
|
|
26902
|
+
None,
|
|
26903
|
+
None,
|
|
26904
|
+
None,
|
|
26905
|
+
"MonsterHasQuarterHp",
|
|
26906
|
+
"Checks if a monster has a quarter or less HP remaining.\n\nr0: entity pointer\nreturn: bool",
|
|
26907
|
+
None,
|
|
26908
|
+
)
|
|
26909
|
+
|
|
25421
26910
|
CheckVariousStatuses2 = Symbol(
|
|
25422
26911
|
None,
|
|
25423
26912
|
None,
|
|
@@ -25508,6 +26997,24 @@ class EuItcmOverlay29Functions:
|
|
|
25508
26997
|
None,
|
|
25509
26998
|
)
|
|
25510
26999
|
|
|
27000
|
+
IsAtJunction = Symbol(
|
|
27001
|
+
None,
|
|
27002
|
+
None,
|
|
27003
|
+
None,
|
|
27004
|
+
"IsAtJunction",
|
|
27005
|
+
"Checks if the tile the given monster is on is considered a junction for the purposes of AI movement. This is affected by what types of terrain the monster can cross.\n\nr0: Entity pointer\nreturn: True if tile the monster is on is a junction.",
|
|
27006
|
+
None,
|
|
27007
|
+
)
|
|
27008
|
+
|
|
27009
|
+
ShouldAvoidFirstHit = Symbol(
|
|
27010
|
+
None,
|
|
27011
|
+
None,
|
|
27012
|
+
None,
|
|
27013
|
+
"ShouldAvoidFirstHit",
|
|
27014
|
+
"Checks whether an AI-controlled monster should try to avoid the first hit in battle.\n\nr0: Entity pointer\nr1: If false, this function always returns false.\nreturn: True if the monster should try to avoid the first hit in battle.",
|
|
27015
|
+
None,
|
|
27016
|
+
)
|
|
27017
|
+
|
|
25511
27018
|
ShouldMonsterRunAway = Symbol(
|
|
25512
27019
|
None,
|
|
25513
27020
|
None,
|
|
@@ -25544,6 +27051,15 @@ class EuItcmOverlay29Functions:
|
|
|
25544
27051
|
None,
|
|
25545
27052
|
)
|
|
25546
27053
|
|
|
27054
|
+
GetTreatmentBetweenMonstersIgnoreStatus = Symbol(
|
|
27055
|
+
None,
|
|
27056
|
+
None,
|
|
27057
|
+
None,
|
|
27058
|
+
"GetTreatmentBetweenMonstersIgnoreStatus",
|
|
27059
|
+
"Called to check if a monster should treat another as an ally, enemy, or ignore it. Similar to GetTreatmentBetweenMonsters, except temporary statuses (decoy, invisible, petrified) are ignored.\n\nr0: Pointer to entity 1\nr1: Pointer to entity 2\nreturn: Treatment that monster 1 should apply to monster 2",
|
|
27060
|
+
None,
|
|
27061
|
+
)
|
|
27062
|
+
|
|
25547
27063
|
SafeguardIsActive = Symbol(
|
|
25548
27064
|
None,
|
|
25549
27065
|
None,
|
|
@@ -25688,6 +27204,15 @@ class EuItcmOverlay29Functions:
|
|
|
25688
27204
|
None,
|
|
25689
27205
|
)
|
|
25690
27206
|
|
|
27207
|
+
CanSeeTeammate = Symbol(
|
|
27208
|
+
None,
|
|
27209
|
+
None,
|
|
27210
|
+
None,
|
|
27211
|
+
"CanSeeTeammate",
|
|
27212
|
+
"Checks if an allied monster can see any other teammate (via CanSeeTarget). Always returns false for enemy monsters.\n\nr0: monster pointer\nreturn: True if the monster is an allied monster that can see another teammate.",
|
|
27213
|
+
None,
|
|
27214
|
+
)
|
|
27215
|
+
|
|
25691
27216
|
GetMoveTypeForMonster = Symbol(
|
|
25692
27217
|
None,
|
|
25693
27218
|
None,
|
|
@@ -25778,6 +27303,15 @@ class EuItcmOverlay29Functions:
|
|
|
25778
27303
|
None,
|
|
25779
27304
|
)
|
|
25780
27305
|
|
|
27306
|
+
DungeonTmLearnMove = Symbol(
|
|
27307
|
+
None,
|
|
27308
|
+
None,
|
|
27309
|
+
None,
|
|
27310
|
+
"DungeonTmLearnMove",
|
|
27311
|
+
"Makes a team member learn a given move, or prompts them to forget one first if their move list is full. Used when activating a TM in dungeon mode.\n\nr0: user entity pointer\nr1: move id\nreturn: whether the move was successfully learned",
|
|
27312
|
+
None,
|
|
27313
|
+
)
|
|
27314
|
+
|
|
25781
27315
|
GetMonsterMoves = Symbol(
|
|
25782
27316
|
None,
|
|
25783
27317
|
None,
|
|
@@ -26012,6 +27546,15 @@ class EuItcmOverlay29Functions:
|
|
|
26012
27546
|
None,
|
|
26013
27547
|
)
|
|
26014
27548
|
|
|
27549
|
+
TryEndPetrifiedOrSleepStatus = Symbol(
|
|
27550
|
+
None,
|
|
27551
|
+
None,
|
|
27552
|
+
None,
|
|
27553
|
+
"TryEndPetrifiedOrSleepStatus",
|
|
27554
|
+
"Ends the target's petrified status unconditionally, and the target's sleep status if the status turns have run out.\n\nr0: user entity who attacked the target\nr1: target entity to try ending a status for.\nreturn: Whether or not the target's status ended.",
|
|
27555
|
+
None,
|
|
27556
|
+
)
|
|
27557
|
+
|
|
26015
27558
|
EndFrozenStatus = Symbol(
|
|
26016
27559
|
None,
|
|
26017
27560
|
None,
|
|
@@ -26057,6 +27600,15 @@ class EuItcmOverlay29Functions:
|
|
|
26057
27600
|
None,
|
|
26058
27601
|
)
|
|
26059
27602
|
|
|
27603
|
+
GetLeaderIfVisible = Symbol(
|
|
27604
|
+
None,
|
|
27605
|
+
None,
|
|
27606
|
+
None,
|
|
27607
|
+
"GetLeaderIfVisible",
|
|
27608
|
+
"For allied monsters, gets the leader monster if they are visible to the ally. Always returns null for enemy monsters.\n\nr0: Pointer to monster\nreturn: Pointer to the leader monster if visible, null otherwise.",
|
|
27609
|
+
None,
|
|
27610
|
+
)
|
|
27611
|
+
|
|
26060
27612
|
RunMonsterAi = Symbol(
|
|
26061
27613
|
None,
|
|
26062
27614
|
None,
|
|
@@ -26147,6 +27699,15 @@ class EuItcmOverlay29Functions:
|
|
|
26147
27699
|
None,
|
|
26148
27700
|
)
|
|
26149
27701
|
|
|
27702
|
+
WeightWeakTypePicker = Symbol(
|
|
27703
|
+
None,
|
|
27704
|
+
None,
|
|
27705
|
+
None,
|
|
27706
|
+
"WeightWeakTypePicker",
|
|
27707
|
+
"Calculates a move weight used for deciding which target the move should be used on.\nThis function is used to calculate move weight when the attacker has the IQ skill Weak-Type Picker,\nwhich weights moves higher depending on type effectiveness.\n\nr0: attacker pointer\nr2: defender pointer\nr3: attack type\nreturn: Move weight for deciding move targeting.",
|
|
27708
|
+
None,
|
|
27709
|
+
)
|
|
27710
|
+
|
|
26150
27711
|
CalcDamage = Symbol(
|
|
26151
27712
|
None,
|
|
26152
27713
|
None,
|
|
@@ -26354,6 +27915,15 @@ class EuItcmOverlay29Functions:
|
|
|
26354
27915
|
None,
|
|
26355
27916
|
)
|
|
26356
27917
|
|
|
27918
|
+
FindDirectionOfAdjacentMonsterWithItem = Symbol(
|
|
27919
|
+
None,
|
|
27920
|
+
None,
|
|
27921
|
+
None,
|
|
27922
|
+
"FindDirectionOfAdjacentMonsterWithItem",
|
|
27923
|
+
"Given a monster, looks for an adjacent monster with the specified held item and returns the direction of that monster. Returns DIR_NONE if no monster is found. If there are multiple monsters with the specified held item, start in the direction the monster is facing and rotate in the order of DIRECTIONS_XY, picking the first direction with an eligible monster.\n\nr0: entity to look for an adjacent monster around it\nr1: held item to search for on adjacent monsters\nreturn: direction of an adjacent monster with the specified held item, or DIR_NONE if there are none.",
|
|
27924
|
+
None,
|
|
27925
|
+
)
|
|
27926
|
+
|
|
26357
27927
|
TrySpawnEnemyItemDrop = Symbol(
|
|
26358
27928
|
None,
|
|
26359
27929
|
None,
|
|
@@ -26449,7 +28019,7 @@ class EuItcmOverlay29Functions:
|
|
|
26449
28019
|
None,
|
|
26450
28020
|
None,
|
|
26451
28021
|
"TryInflictPausedStatus",
|
|
26452
|
-
"Inflicts the Paused status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2:
|
|
28022
|
+
"Inflicts the Paused status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: bool for whether status should not be inflicted if Safeguard is active\nr3: number of turns\nstack[0]: flag to log a message on failure\nstack[1]: flag to only perform the check for inflicting without actually inflicting\nreturn: Whether or not the status could be inflicted",
|
|
26453
28023
|
None,
|
|
26454
28024
|
)
|
|
26455
28025
|
|
|
@@ -26701,7 +28271,7 @@ class EuItcmOverlay29Functions:
|
|
|
26701
28271
|
None,
|
|
26702
28272
|
None,
|
|
26703
28273
|
"TrySealMove",
|
|
26704
|
-
"Seals one of the target monster's moves. The move to be sealed is randomly selected.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: flag to
|
|
28274
|
+
"Seals one of the target monster's moves. The move to be sealed is randomly selected.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: flag to only perform the check for inflicting without actually inflicting\nreturn: Whether or not a move was sealed",
|
|
26705
28275
|
None,
|
|
26706
28276
|
)
|
|
26707
28277
|
|
|
@@ -26845,7 +28415,7 @@ class EuItcmOverlay29Functions:
|
|
|
26845
28415
|
None,
|
|
26846
28416
|
None,
|
|
26847
28417
|
"TryInflictSureShotStatus",
|
|
26848
|
-
"Inflicts the Sure Shot status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer",
|
|
28418
|
+
"Inflicts the Sure Shot status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: number of turns the status will last for",
|
|
26849
28419
|
None,
|
|
26850
28420
|
)
|
|
26851
28421
|
|
|
@@ -26854,7 +28424,7 @@ class EuItcmOverlay29Functions:
|
|
|
26854
28424
|
None,
|
|
26855
28425
|
None,
|
|
26856
28426
|
"TryInflictWhifferStatus",
|
|
26857
|
-
"Inflicts the Whiffer status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer",
|
|
28427
|
+
"Inflicts the Whiffer status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: number of turns the status will last for\nr3: flag to only perform the check for inflicting without actually inflicting",
|
|
26858
28428
|
None,
|
|
26859
28429
|
)
|
|
26860
28430
|
|
|
@@ -26881,7 +28451,7 @@ class EuItcmOverlay29Functions:
|
|
|
26881
28451
|
None,
|
|
26882
28452
|
None,
|
|
26883
28453
|
"TryInflictDecoyStatus",
|
|
26884
|
-
"Inflicts the Decoy status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nreturn: Whether or not the status could be inflicted",
|
|
28454
|
+
"Inflicts the Decoy status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: value to set the target monster's unk_decoy_tracker field to\nr3: flag to log a message\nstack[0]: flag to only perform the check for inflicting without actually inflicting\nreturn: Whether or not the status could be inflicted",
|
|
26885
28455
|
None,
|
|
26886
28456
|
)
|
|
26887
28457
|
|
|
@@ -26908,7 +28478,7 @@ class EuItcmOverlay29Functions:
|
|
|
26908
28478
|
None,
|
|
26909
28479
|
None,
|
|
26910
28480
|
"TryInflictTauntStatus",
|
|
26911
|
-
"Inflicts the Taunt status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nreturn: Whether or not the status could be inflicted",
|
|
28481
|
+
"Inflicts the Taunt status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: flag to only perform the check for inflicting without actually inflicting\nreturn: Whether or not the status could be inflicted",
|
|
26912
28482
|
None,
|
|
26913
28483
|
)
|
|
26914
28484
|
|
|
@@ -27016,7 +28586,7 @@ class EuItcmOverlay29Functions:
|
|
|
27016
28586
|
None,
|
|
27017
28587
|
None,
|
|
27018
28588
|
"TryInflictBlinkerStatus",
|
|
27019
|
-
"Inflicts the Blinker status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: flag to only perform the check for inflicting without actually inflicting\nr3: flag to
|
|
28589
|
+
"Inflicts the Blinker status condition on a target monster if possible.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: flag to only perform the check for inflicting without actually inflicting\nr3: flag to make the status permanent (always 0 in the base game)\nreturn: Whether or not the status could be inflicted",
|
|
27020
28590
|
None,
|
|
27021
28591
|
)
|
|
27022
28592
|
|
|
@@ -27254,6 +28824,15 @@ class EuItcmOverlay29Functions:
|
|
|
27254
28824
|
None,
|
|
27255
28825
|
)
|
|
27256
28826
|
|
|
28827
|
+
SetReflectStatus = Symbol(
|
|
28828
|
+
None,
|
|
28829
|
+
None,
|
|
28830
|
+
None,
|
|
28831
|
+
"SetReflectStatus",
|
|
28832
|
+
"Sets a target monster's reflect status to the specified value. \n\nIf it already has the Counter, Mini Counter or Metal Burst status, its remaining turn counter will remain the same.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: reflect status",
|
|
28833
|
+
None,
|
|
28834
|
+
)
|
|
28835
|
+
|
|
27257
28836
|
TryInflictSafeguardStatus = Symbol(
|
|
27258
28837
|
None,
|
|
27259
28838
|
None,
|
|
@@ -27736,7 +29315,7 @@ class EuItcmOverlay29Functions:
|
|
|
27736
29315
|
None,
|
|
27737
29316
|
None,
|
|
27738
29317
|
"IsAdjacentToEnemy",
|
|
27739
|
-
"Called to check if a hostile entity is present in any of the tiles adjacent to an entity.\n\nr0: Pointer to entity\nreturn: True if yes, false if no",
|
|
29318
|
+
"Called to check if a hostile entity is present in any of the tiles adjacent to an entity. This function uses GetTreatmentBetweenMonsters to determine whether an adjacent entity is hostile, which has special handling for the decoy, petrified, and invisible statuses.\n\nr0: Pointer to entity\nreturn: True if yes, false if no",
|
|
27740
29319
|
None,
|
|
27741
29320
|
)
|
|
27742
29321
|
|
|
@@ -27758,6 +29337,15 @@ class EuItcmOverlay29Functions:
|
|
|
27758
29337
|
None,
|
|
27759
29338
|
)
|
|
27760
29339
|
|
|
29340
|
+
InitMoveWrapper = Symbol(
|
|
29341
|
+
None,
|
|
29342
|
+
None,
|
|
29343
|
+
None,
|
|
29344
|
+
"InitMoveWrapper",
|
|
29345
|
+
"Wrapper for InitMove which takes a superfluous parameter.\n\nr0: unused\nr1: [output] pointer to move to initialize\nr2: move ID",
|
|
29346
|
+
None,
|
|
29347
|
+
)
|
|
29348
|
+
|
|
27761
29349
|
MoveIsNotPhysical = Symbol(
|
|
27762
29350
|
None,
|
|
27763
29351
|
None,
|
|
@@ -27776,6 +29364,24 @@ class EuItcmOverlay29Functions:
|
|
|
27776
29364
|
None,
|
|
27777
29365
|
)
|
|
27778
29366
|
|
|
29367
|
+
MakeFloorOneRoom = Symbol(
|
|
29368
|
+
None,
|
|
29369
|
+
None,
|
|
29370
|
+
None,
|
|
29371
|
+
"MakeFloorOneRoom",
|
|
29372
|
+
"Removes all walls to make the floor one room.\n\nr0: user entity pointer",
|
|
29373
|
+
None,
|
|
29374
|
+
)
|
|
29375
|
+
|
|
29376
|
+
TryHurl = Symbol(
|
|
29377
|
+
None,
|
|
29378
|
+
None,
|
|
29379
|
+
None,
|
|
29380
|
+
"TryHurl",
|
|
29381
|
+
"Attempts to hurl the target monster at another monster, or to an unoccupied tile if there is no valid one in range.\n\nr0: user entity pointer\nr1: target entity pointer",
|
|
29382
|
+
None,
|
|
29383
|
+
)
|
|
29384
|
+
|
|
27779
29385
|
TryDrought = Symbol(
|
|
27780
29386
|
None,
|
|
27781
29387
|
None,
|
|
@@ -27785,6 +29391,15 @@ class EuItcmOverlay29Functions:
|
|
|
27785
29391
|
None,
|
|
27786
29392
|
)
|
|
27787
29393
|
|
|
29394
|
+
TryTrawl = Symbol(
|
|
29395
|
+
None,
|
|
29396
|
+
None,
|
|
29397
|
+
None,
|
|
29398
|
+
"TryTrawl",
|
|
29399
|
+
"Attempts to pull all items on the floor towards the user.\n\nFails if the floor is a fixed room on which Trawl Orbs are disabled.\n\nr0: user entity pointer",
|
|
29400
|
+
None,
|
|
29401
|
+
)
|
|
29402
|
+
|
|
27788
29403
|
TryPounce = Symbol(
|
|
27789
29404
|
None,
|
|
27790
29405
|
None,
|
|
@@ -28096,7 +29711,25 @@ class EuItcmOverlay29Functions:
|
|
|
28096
29711
|
None,
|
|
28097
29712
|
None,
|
|
28098
29713
|
"StatusCheckerCheck",
|
|
28099
|
-
"Determines if using a given move against its intended targets would be redundant because all of them already have the effect caused by said move.\n\nr0: Pointer to the entity that is considering using the move\nr1: Move pointer\nreturn: True if it makes sense to use the move, false if it would be redundant given the effects it causes and the effects that all the targets already have.",
|
|
29714
|
+
"Determines if using a given move against its intended targets would be redundant because all of them already have the effect caused by said move. Used for moves that affect the user or allies.\n\nr0: Pointer to the entity that is considering using the move\nr1: Move pointer\nreturn: True if it makes sense to use the move, false if it would be redundant given the effects it causes and the effects that all the targets already have.",
|
|
29715
|
+
None,
|
|
29716
|
+
)
|
|
29717
|
+
|
|
29718
|
+
StatusCheckerCheckOnTarget = Symbol(
|
|
29719
|
+
None,
|
|
29720
|
+
None,
|
|
29721
|
+
None,
|
|
29722
|
+
"StatusCheckerCheckOnTarget",
|
|
29723
|
+
"Determines if using a given move against its intended target would be redundant because all of them already have the effect caused by said move. Used for moves that affect enemies.\n\nr0: Pointer to the entity that is considering using the move\nr2: Pointer to the entity being targeted by the move\nr1: Move pointer\nreturn: True if it makes sense to use the move, false if it would be redundant given the effects it causes and the effects that the target already has.",
|
|
29724
|
+
None,
|
|
29725
|
+
)
|
|
29726
|
+
|
|
29727
|
+
HasLastUsedMove = Symbol(
|
|
29728
|
+
None,
|
|
29729
|
+
None,
|
|
29730
|
+
None,
|
|
29731
|
+
"HasLastUsedMove",
|
|
29732
|
+
"Determines whether a monster has used any of its moves on this floor.\nThis function takes in the monster's move list and checks if any moves have the f_last_used flag set.\n\nr0: Pointer to the monster's moves.\nreturn: True if the move list has any moves with the f_last_used flag set, false otherwise.",
|
|
28100
29733
|
None,
|
|
28101
29734
|
)
|
|
28102
29735
|
|
|
@@ -28352,6 +29985,15 @@ class EuItcmOverlay29Functions:
|
|
|
28352
29985
|
None,
|
|
28353
29986
|
)
|
|
28354
29987
|
|
|
29988
|
+
IsTileGround = Symbol(
|
|
29989
|
+
None,
|
|
29990
|
+
None,
|
|
29991
|
+
None,
|
|
29992
|
+
"IsTileGround",
|
|
29993
|
+
"Returns true if the given position is a ground tile, meaning that Dig can be used and Dive cannot be used.\nThis depends on the terrain type of the position and the dungeon tileset.\n\nr0: Position\nreturn: True if the current tile is a ground tile.",
|
|
29994
|
+
None,
|
|
29995
|
+
)
|
|
29996
|
+
|
|
28355
29997
|
IsWaterTileset = Symbol(
|
|
28356
29998
|
None,
|
|
28357
29999
|
None,
|
|
@@ -28379,6 +30021,24 @@ class EuItcmOverlay29Functions:
|
|
|
28379
30021
|
None,
|
|
28380
30022
|
)
|
|
28381
30023
|
|
|
30024
|
+
FindAdjacentEnemy = Symbol(
|
|
30025
|
+
None,
|
|
30026
|
+
None,
|
|
30027
|
+
None,
|
|
30028
|
+
"FindAdjacentEnemy",
|
|
30029
|
+
"Finds a hostile entity adjacent to the given entity. Hostility is based on whether the monster->is_not_team_member flag does not match. If there are multiple adjacent hostile enemies, the first one is returned based on the order of directions in DIRECTION_XY.\n\nr0: Pointer to entity\nreturn: A hostile entity adjacent to the given entity, or null if there aren't any.",
|
|
30030
|
+
None,
|
|
30031
|
+
)
|
|
30032
|
+
|
|
30033
|
+
IsAdjacentToEnemyIgnoreTreatment = Symbol(
|
|
30034
|
+
None,
|
|
30035
|
+
None,
|
|
30036
|
+
None,
|
|
30037
|
+
"IsAdjacentToEnemyIgnoreTreatment",
|
|
30038
|
+
"Called to check if a hostile entity is present in any of the tiles adjacent to an entity. Unlike IsAdjacentToEnemy, this function uses monster->is_not_team_member to determine if an adjacent enemy is hostile rather than GetTreatmentBetweenMonsters, which means it doesn't take decoy, petrified, and invisible statuses into account.\n\nr0: Pointer to entity\nreturn: True if yes, false if no",
|
|
30039
|
+
None,
|
|
30040
|
+
)
|
|
30041
|
+
|
|
28382
30042
|
ResetGravity = Symbol(
|
|
28383
30043
|
None,
|
|
28384
30044
|
None,
|
|
@@ -28406,6 +30066,15 @@ class EuItcmOverlay29Functions:
|
|
|
28406
30066
|
None,
|
|
28407
30067
|
)
|
|
28408
30068
|
|
|
30069
|
+
RevealAttackedTile = Symbol(
|
|
30070
|
+
None,
|
|
30071
|
+
None,
|
|
30072
|
+
None,
|
|
30073
|
+
"RevealAttackedTile",
|
|
30074
|
+
"Reveals the tile given by the position.\n\nIs also activated on a tile if a fainted monster drops an item on it.\n\nr0: position struct pointer",
|
|
30075
|
+
None,
|
|
30076
|
+
)
|
|
30077
|
+
|
|
28409
30078
|
ShouldBoostKecleonShopSpawnChance = Symbol(
|
|
28410
30079
|
None,
|
|
28411
30080
|
None,
|
|
@@ -29329,7 +30998,7 @@ class EuItcmOverlay29Functions:
|
|
|
29329
30998
|
None,
|
|
29330
30999
|
None,
|
|
29331
31000
|
"AreLateGameTrapsEnabled",
|
|
29332
|
-
"Check if late-game traps (Summon, Pitfall, and Pokémon traps) work in the given fixed room.\n\
|
|
31001
|
+
"Check if late-game traps (Summon, Pitfall, and Pokémon traps) work in the given fixed room.\n\nr0: fixed room ID\nreturn: True if late-game traps are enabled, false if they are disabled.",
|
|
29333
31002
|
None,
|
|
29334
31003
|
)
|
|
29335
31004
|
|
|
@@ -29396,6 +31065,24 @@ class EuItcmOverlay29Functions:
|
|
|
29396
31065
|
None,
|
|
29397
31066
|
)
|
|
29398
31067
|
|
|
31068
|
+
PrepareItemForPrinting = Symbol(
|
|
31069
|
+
None,
|
|
31070
|
+
None,
|
|
31071
|
+
None,
|
|
31072
|
+
"PrepareItemForPrinting",
|
|
31073
|
+
"Calls functions to prepare an item to be printed in place of the [item:r0] tag in a message log message.\n\nr0: tag id\nr1: item struct pointer",
|
|
31074
|
+
None,
|
|
31075
|
+
)
|
|
31076
|
+
|
|
31077
|
+
PrepareItemForPrinting2 = Symbol(
|
|
31078
|
+
None,
|
|
31079
|
+
None,
|
|
31080
|
+
None,
|
|
31081
|
+
"PrepareItemForPrinting2",
|
|
31082
|
+
"Used in SubstitutePlaceholderStringTags. Has the same functionality as PrepareItemForPrinting, except the message log preprocessor_args struct is passed as a parameter.\n\nr0: preprocessor_args pointer (in practice, always the global struct used for the message log)\nr1: tag id\nr2: item pointer",
|
|
31083
|
+
None,
|
|
31084
|
+
)
|
|
31085
|
+
|
|
29399
31086
|
GenerateStandardItem = Symbol(
|
|
29400
31087
|
None,
|
|
29401
31088
|
None,
|
|
@@ -29522,6 +31209,15 @@ class EuItcmOverlay29Functions:
|
|
|
29522
31209
|
None,
|
|
29523
31210
|
)
|
|
29524
31211
|
|
|
31212
|
+
HandleCurvedProjectileThrow = Symbol(
|
|
31213
|
+
None,
|
|
31214
|
+
None,
|
|
31215
|
+
None,
|
|
31216
|
+
"HandleCurvedProjectileThrow",
|
|
31217
|
+
"Throws an item in a curved arc, like a Gravelerock.\n\nr0: monster entity throwing the item\nr1: item being thrown\nr2: position to start throwing the item from\nr3: position to throw the item to\nstack[0]: Metadata about the item being thrown",
|
|
31218
|
+
None,
|
|
31219
|
+
)
|
|
31220
|
+
|
|
29525
31221
|
DoesProjectileHitTarget = Symbol(
|
|
29526
31222
|
None,
|
|
29527
31223
|
None,
|
|
@@ -29558,6 +31254,15 @@ class EuItcmOverlay29Functions:
|
|
|
29558
31254
|
None,
|
|
29559
31255
|
)
|
|
29560
31256
|
|
|
31257
|
+
IsItemUnkMissionItem2 = Symbol(
|
|
31258
|
+
None,
|
|
31259
|
+
None,
|
|
31260
|
+
None,
|
|
31261
|
+
"IsItemUnkMissionItem2",
|
|
31262
|
+
"Checks if an item is a special target item with flag item::f_unk_mission_item2 set.\n\nr0: item pointer\nreturn: True if the item is a special target item with flag item::f_unk_mission_item2 set.",
|
|
31263
|
+
None,
|
|
31264
|
+
)
|
|
31265
|
+
|
|
29561
31266
|
CheckActiveChallengeRequest = Symbol(
|
|
29562
31267
|
None,
|
|
29563
31268
|
None,
|
|
@@ -29810,12 +31515,129 @@ class EuItcmOverlay29Functions:
|
|
|
29810
31515
|
None,
|
|
29811
31516
|
)
|
|
29812
31517
|
|
|
29813
|
-
|
|
31518
|
+
InitAlertBoxInfo = Symbol(
|
|
31519
|
+
None,
|
|
31520
|
+
None,
|
|
31521
|
+
None,
|
|
31522
|
+
"InitAlertBoxInfo",
|
|
31523
|
+
"Initializes the heap-allocated alert_box_info struct in MESSAGE_LOG_INFO.\n\nNo params.",
|
|
31524
|
+
None,
|
|
31525
|
+
)
|
|
31526
|
+
|
|
31527
|
+
FreeAlertBoxInfo = Symbol(
|
|
31528
|
+
None,
|
|
31529
|
+
None,
|
|
31530
|
+
None,
|
|
31531
|
+
"FreeAlertBoxInfo",
|
|
31532
|
+
"Frees the heap-allocated alert_box_info struct in MESSAGE_LOG_INFO.\n\nNo params.",
|
|
31533
|
+
None,
|
|
31534
|
+
)
|
|
31535
|
+
|
|
31536
|
+
SetMessageLogGroupStartFlag = Symbol(
|
|
31537
|
+
None,
|
|
31538
|
+
None,
|
|
31539
|
+
None,
|
|
31540
|
+
"SetMessageLogGroupStartFlag",
|
|
31541
|
+
"Sets whether the next message in the message log should be the start of a new group separated by a horizontal line.\n\nr0: bool",
|
|
31542
|
+
None,
|
|
31543
|
+
)
|
|
31544
|
+
|
|
31545
|
+
GetMessageLogPreprocessorArgs = Symbol(
|
|
31546
|
+
None,
|
|
31547
|
+
None,
|
|
31548
|
+
None,
|
|
31549
|
+
"GetMessageLogPreprocessorArgs",
|
|
31550
|
+
"Gets a pointer to the global preprocessor_args struct used for the message log.\n\nreturn: preprocessor_args pointer",
|
|
31551
|
+
None,
|
|
31552
|
+
)
|
|
31553
|
+
|
|
31554
|
+
InitMessageLogPreprocessorArgs = Symbol(
|
|
31555
|
+
None,
|
|
31556
|
+
None,
|
|
31557
|
+
None,
|
|
31558
|
+
"InitMessageLogPreprocessorArgs",
|
|
31559
|
+
"Initializes the global preprocessor_args struct used for the message log.\n\nNo params.",
|
|
31560
|
+
None,
|
|
31561
|
+
)
|
|
31562
|
+
|
|
31563
|
+
SetMessageLogPreprocessorArgsFlagVal = Symbol(
|
|
31564
|
+
None,
|
|
31565
|
+
None,
|
|
31566
|
+
None,
|
|
31567
|
+
"SetMessageLogPreprocessorArgsFlagVal",
|
|
31568
|
+
"Sets a flag_vals element in the global preprocessor_args struct used for the message log to a specified value.\n\nr0: position in flag_vals array\nr1: value",
|
|
31569
|
+
None,
|
|
31570
|
+
)
|
|
31571
|
+
|
|
31572
|
+
SetMessageLogPreprocessorArgsIdVal = Symbol(
|
|
31573
|
+
None,
|
|
31574
|
+
None,
|
|
31575
|
+
None,
|
|
31576
|
+
"SetMessageLogPreprocessorArgsIdVal",
|
|
31577
|
+
"Sets an id_vals element in the global preprocessor_args struct used for the message log to a specified value.\n\nr0: position in id_vals array\nr1: value",
|
|
31578
|
+
None,
|
|
31579
|
+
)
|
|
31580
|
+
|
|
31581
|
+
SetMessageLogPreprocessorArgsNumberVal = Symbol(
|
|
31582
|
+
None,
|
|
31583
|
+
None,
|
|
31584
|
+
None,
|
|
31585
|
+
"SetMessageLogPreprocessorArgsNumberVal",
|
|
31586
|
+
"Sets a number_vals element in the global preprocessor_args struct used for the message log to a specified value.\n\nr0: position in number_vals array\nr1: value",
|
|
31587
|
+
None,
|
|
31588
|
+
)
|
|
31589
|
+
|
|
31590
|
+
SetMessageLogPreprocessorArgsString = Symbol(
|
|
31591
|
+
None,
|
|
31592
|
+
None,
|
|
31593
|
+
None,
|
|
31594
|
+
"SetMessageLogPreprocessorArgsString",
|
|
31595
|
+
"Sets a strings element in the global preprocessor_args struct used for the message log to a specified string.\n\nr0: position in strings array\nr1: string pointer",
|
|
31596
|
+
None,
|
|
31597
|
+
)
|
|
31598
|
+
|
|
31599
|
+
SetMessageLogPreprocessorArgsStringToName = Symbol(
|
|
31600
|
+
None,
|
|
31601
|
+
None,
|
|
31602
|
+
None,
|
|
31603
|
+
"SetMessageLogPreprocessorArgsStringToName",
|
|
31604
|
+
"Sets a strings element in the global preprocessor_args struct used for the message log to the name of a monster.\n\nr0: position in strings array\nr1: monster_id",
|
|
31605
|
+
None,
|
|
31606
|
+
)
|
|
31607
|
+
|
|
31608
|
+
SetMessageLogPreprocessorArgsSpeakerId = Symbol(
|
|
31609
|
+
None,
|
|
31610
|
+
None,
|
|
31611
|
+
None,
|
|
31612
|
+
"SetMessageLogPreprocessorArgsSpeakerId",
|
|
31613
|
+
"Sets the speaker_id in the global preprocessor_args struct used for the message log to the id of a monster.\n\nr0: monster_id",
|
|
31614
|
+
None,
|
|
31615
|
+
)
|
|
31616
|
+
|
|
31617
|
+
SetMessageLogPreprocessorArgsSpeakerId0x30000 = Symbol(
|
|
31618
|
+
None,
|
|
31619
|
+
None,
|
|
31620
|
+
None,
|
|
31621
|
+
"SetMessageLogPreprocessorArgsSpeakerId0x30000",
|
|
31622
|
+
"Sets the speaker_id in the global preprocessor_args struct used for the message log to a monster's team index, ORed with 0x30000.\n\nr0: team_index",
|
|
31623
|
+
None,
|
|
31624
|
+
)
|
|
31625
|
+
|
|
31626
|
+
LogMessageByIdWithPopupAndAbility = Symbol(
|
|
29814
31627
|
None,
|
|
29815
31628
|
None,
|
|
29816
31629
|
None,
|
|
29817
|
-
"
|
|
29818
|
-
"Logs the appropriate message based on the participating entites; this function calls LogMessageByIdWithPopupCheckUserTarget is both the user and target pointers are non-null, otherwise it calls LogMessageByIdWithPopupCheckUser if the user pointer is non-null, otherwise doesn't log anything.\n\nThis function also
|
|
31630
|
+
"LogMessageByIdWithPopupAndAbility",
|
|
31631
|
+
"Logs the appropriate message based on the participating entites; this function calls LogMessageByIdWithPopupCheckUserTarget is both the user and target pointers are non-null, otherwise it calls LogMessageByIdWithPopupCheckUser if the user pointer is non-null, otherwise doesn't log anything.\n\nThis function also replaces the [c_i:r3] tag by setting an id_vals element in the global preprocessor_args struct used for the message log to an ability.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: message ID\nr3: position in id_vals array\nstack[0]: value (in practice, always the ability, although could be used for any other text tag that uses id_vals)",
|
|
31632
|
+
None,
|
|
31633
|
+
)
|
|
31634
|
+
|
|
31635
|
+
WaitUntilAlertBoxTextIsLoadedWrapper = Symbol(
|
|
31636
|
+
None,
|
|
31637
|
+
None,
|
|
31638
|
+
None,
|
|
31639
|
+
"WaitUntilAlertBoxTextIsLoadedWrapper",
|
|
31640
|
+
"Calls WaitUntilAlertBoxTextIsLoaded with r0 = 0x50.\n\nNo params.",
|
|
29819
31641
|
None,
|
|
29820
31642
|
)
|
|
29821
31643
|
|
|
@@ -29927,6 +31749,24 @@ class EuItcmOverlay29Functions:
|
|
|
29927
31749
|
None,
|
|
29928
31750
|
)
|
|
29929
31751
|
|
|
31752
|
+
AlertBoxIsScrolling = Symbol(
|
|
31753
|
+
None,
|
|
31754
|
+
None,
|
|
31755
|
+
None,
|
|
31756
|
+
"AlertBoxIsScrolling",
|
|
31757
|
+
"Returns true if the alert box is currently scrolling (i.e. a message is being loaded).\n\nreturn: bool",
|
|
31758
|
+
None,
|
|
31759
|
+
)
|
|
31760
|
+
|
|
31761
|
+
WaitUntilAlertBoxTextIsLoaded = Symbol(
|
|
31762
|
+
None,
|
|
31763
|
+
None,
|
|
31764
|
+
None,
|
|
31765
|
+
"WaitUntilAlertBoxTextIsLoaded",
|
|
31766
|
+
"Calls AdvanceFrame in a loop until the dungeon alert box has finished scrolling.\n\nr0: value to pass to AdvanceFrame (unused by the function)",
|
|
31767
|
+
None,
|
|
31768
|
+
)
|
|
31769
|
+
|
|
29930
31770
|
InitPortraitDungeon = Symbol(
|
|
29931
31771
|
None,
|
|
29932
31772
|
None,
|
|
@@ -30075,6 +31915,15 @@ class EuItcmOverlay29Functions:
|
|
|
30075
31915
|
None,
|
|
30076
31916
|
)
|
|
30077
31917
|
|
|
31918
|
+
StairsMenuAfterStep = Symbol(
|
|
31919
|
+
None,
|
|
31920
|
+
None,
|
|
31921
|
+
None,
|
|
31922
|
+
"StairsMenuAfterStep",
|
|
31923
|
+
"Opens the stairs menu after stepping on a stairs tile.\n\nr0: Entity pointer (in practice, always the leader)\nr1: whether to not open minimap upon menu close",
|
|
31924
|
+
None,
|
|
31925
|
+
)
|
|
31926
|
+
|
|
30078
31927
|
DungeonModeSetupAndShowNameKeyboard = Symbol(
|
|
30079
31928
|
None,
|
|
30080
31929
|
None,
|
|
@@ -30102,10 +31951,24 @@ class EuItcmOverlay29Functions:
|
|
|
30102
31951
|
None,
|
|
30103
31952
|
)
|
|
30104
31953
|
|
|
31954
|
+
CreateMonsterSummaryFromMonster = _Deprecated(
|
|
31955
|
+
"CreateMonsterSummaryFromMonster", CreateMonsterSummaryFromEntity
|
|
31956
|
+
)
|
|
31957
|
+
|
|
30105
31958
|
ShouldMonsterRunAwayVariation = _Deprecated(
|
|
30106
31959
|
"ShouldMonsterRunAwayVariation", ShouldMonsterRunAwayAndShowEffect
|
|
30107
31960
|
)
|
|
30108
31961
|
|
|
31962
|
+
GetFlashFireStatus = _Deprecated("GetFlashFireStatus", FlashFireShouldActivate)
|
|
31963
|
+
|
|
31964
|
+
SetPreprocessorArgsIdVal = _Deprecated(
|
|
31965
|
+
"SetPreprocessorArgsIdVal", SetMessageLogPreprocessorArgsIdVal
|
|
31966
|
+
)
|
|
31967
|
+
|
|
31968
|
+
LogMessageByIdWithPopupCheckParticipants = _Deprecated(
|
|
31969
|
+
"LogMessageByIdWithPopupCheckParticipants", LogMessageByIdWithPopupAndAbility
|
|
31970
|
+
)
|
|
31971
|
+
|
|
30109
31972
|
|
|
30110
31973
|
class EuItcmOverlay29Data:
|
|
30111
31974
|
|
|
@@ -30640,6 +32503,15 @@ class EuItcmOverlay29Data:
|
|
|
30640
32503
|
"int16_t[8][2]",
|
|
30641
32504
|
)
|
|
30642
32505
|
|
|
32506
|
+
FACING_DIRECTION_INCREMENTS = Symbol(
|
|
32507
|
+
None,
|
|
32508
|
+
None,
|
|
32509
|
+
None,
|
|
32510
|
+
"FACING_DIRECTION_INCREMENTS",
|
|
32511
|
+
"An array of direction offsets from a monster's current facing direction, each increasingly farther away from the current direction.\n\nFor example, the array starts with [0, 1, -1, 2...]. If the monster's current direction is DIR_UP, the first four array elements\nare each added to the current direction, corresponding to DIR_UP, DIR_UP_LEFT, DIR_UP_RIGHT, DIR_LEFT.",
|
|
32512
|
+
"int[8]",
|
|
32513
|
+
)
|
|
32514
|
+
|
|
30643
32515
|
DISPLACEMENTS_WITHIN_2_LARGEST_FIRST = Symbol(
|
|
30644
32516
|
None,
|
|
30645
32517
|
None,
|
|
@@ -30793,6 +32665,15 @@ class EuItcmOverlay29Data:
|
|
|
30793
32665
|
"struct fx64_16",
|
|
30794
32666
|
)
|
|
30795
32667
|
|
|
32668
|
+
WEAK_TYPE_PICKER_MATCHUP_MULTIPLIERS = Symbol(
|
|
32669
|
+
None,
|
|
32670
|
+
None,
|
|
32671
|
+
None,
|
|
32672
|
+
"WEAK_TYPE_PICKER_MATCHUP_MULTIPLIERS",
|
|
32673
|
+
"Array of multipliers to a move's AI weight when Weak-Type Picker is in effect, based on the move's type matchup against its target. Array indexes correspond to enum type_matchup.",
|
|
32674
|
+
"int[4]",
|
|
32675
|
+
)
|
|
32676
|
+
|
|
30796
32677
|
TYPE_DAMAGE_NEGATING_EXCLUSIVE_ITEM_EFFECTS = Symbol(
|
|
30797
32678
|
None,
|
|
30798
32679
|
None,
|
|
@@ -31036,6 +32917,15 @@ class EuItcmOverlay29Data:
|
|
|
31036
32917
|
"void*",
|
|
31037
32918
|
)
|
|
31038
32919
|
|
|
32920
|
+
MESSAGE_LOG_INFO = Symbol(
|
|
32921
|
+
None,
|
|
32922
|
+
None,
|
|
32923
|
+
None,
|
|
32924
|
+
"MESSAGE_LOG_INFO",
|
|
32925
|
+
"[Runtime] Struct containing information and state for logged messages.",
|
|
32926
|
+
"struct message_log_info",
|
|
32927
|
+
)
|
|
32928
|
+
|
|
31039
32929
|
DUNGEON_FADES_PTR = Symbol(
|
|
31040
32930
|
None,
|
|
31041
32931
|
None,
|
|
@@ -31144,12 +33034,12 @@ class EuItcmOverlay30Section:
|
|
|
31144
33034
|
|
|
31145
33035
|
class EuItcmOverlay31Functions:
|
|
31146
33036
|
|
|
31147
|
-
|
|
33037
|
+
InitDungeonMenu = Symbol(
|
|
31148
33038
|
None,
|
|
31149
33039
|
None,
|
|
31150
33040
|
None,
|
|
31151
|
-
"
|
|
31152
|
-
"
|
|
33041
|
+
"InitDungeonMenu",
|
|
33042
|
+
"Initializes the main dungeon menu and allocates a struct on the heap with information for HandleDungeonMenu.\n\nNo params.",
|
|
31153
33043
|
None,
|
|
31154
33044
|
)
|
|
31155
33045
|
|
|
@@ -31171,12 +33061,39 @@ class EuItcmOverlay31Functions:
|
|
|
31171
33061
|
None,
|
|
31172
33062
|
)
|
|
31173
33063
|
|
|
31174
|
-
|
|
33064
|
+
DungeonMenuLoop = Symbol(
|
|
31175
33065
|
None,
|
|
31176
33066
|
None,
|
|
31177
33067
|
None,
|
|
31178
|
-
"
|
|
31179
|
-
"
|
|
33068
|
+
"DungeonMenuLoop",
|
|
33069
|
+
"Handles displaying the main dungeon menu and is called on each frame while it is open.\n\nUses a switch statement based on a state field of the struct allocated in InitDungeonMenu to determine what actions to take.\n\nreturn: 4 if should close main dungeon menu (including when switching menus), 1 otherwise",
|
|
33070
|
+
None,
|
|
33071
|
+
)
|
|
33072
|
+
|
|
33073
|
+
FreeDungeonMenu = Symbol(
|
|
33074
|
+
None,
|
|
33075
|
+
None,
|
|
33076
|
+
None,
|
|
33077
|
+
"FreeDungeonMenu",
|
|
33078
|
+
"Closes the main dungeon menu and frees the heap-allocated struct initialized in InitDungeonMenu.\n\nNo params.",
|
|
33079
|
+
None,
|
|
33080
|
+
)
|
|
33081
|
+
|
|
33082
|
+
StairsMenu = Symbol(
|
|
33083
|
+
None,
|
|
33084
|
+
None,
|
|
33085
|
+
None,
|
|
33086
|
+
"StairsMenu",
|
|
33087
|
+
"Called when the stairs menu is open. Does not return until the menu is closed.\n\nr0: Entity pointer (in practice, always the leader)\nr1: whether to not open minimap upon menu close",
|
|
33088
|
+
None,
|
|
33089
|
+
)
|
|
33090
|
+
|
|
33091
|
+
InitStairsMenu = Symbol(
|
|
33092
|
+
None,
|
|
33093
|
+
None,
|
|
33094
|
+
None,
|
|
33095
|
+
"InitStairsMenu",
|
|
33096
|
+
"Called when the leader steps on any stairs tile (regular, warp zone, rescue point, hidden stairs).\n\nInitializes the stairs menu and allocates a stairs_menu struct on the heap with information for HandleStairsMenu, which will be pointed to by STAIRS_MENU_PTR.\n\nr0: Entity pointer (in practice, always the leader)",
|
|
31180
33097
|
None,
|
|
31181
33098
|
)
|
|
31182
33099
|
|
|
@@ -31189,12 +33106,48 @@ class EuItcmOverlay31Functions:
|
|
|
31189
33106
|
None,
|
|
31190
33107
|
)
|
|
31191
33108
|
|
|
31192
|
-
|
|
33109
|
+
StairsMenuLoop = Symbol(
|
|
31193
33110
|
None,
|
|
31194
33111
|
None,
|
|
31195
33112
|
None,
|
|
31196
|
-
"
|
|
31197
|
-
"Handles displaying the stairs menu and is called on each frame while it is open, also updating the leader's action fields.\n\nUses a switch statement based on the state field in stairs_menu to determine what actions to take.\n\nreturn:
|
|
33113
|
+
"StairsMenuLoop",
|
|
33114
|
+
"Handles displaying the stairs menu and is called on each frame while it is open, also updating the leader's action fields.\n\nUses a switch statement based on the state field in stairs_menu to determine what actions to take.\n\nreturn: 4 if should close stairs menu entirely, 1 otherwise (including when switching between main/info menus)",
|
|
33115
|
+
None,
|
|
33116
|
+
)
|
|
33117
|
+
|
|
33118
|
+
CloseMainStairsMenu = Symbol(
|
|
33119
|
+
None,
|
|
33120
|
+
None,
|
|
33121
|
+
None,
|
|
33122
|
+
"CloseMainStairsMenu",
|
|
33123
|
+
"Closes the main stairs menu. Used both when closing it entirely as well as when switching to the info menu.\n\nNo params.",
|
|
33124
|
+
None,
|
|
33125
|
+
)
|
|
33126
|
+
|
|
33127
|
+
FreeStairsMenu = Symbol(
|
|
33128
|
+
None,
|
|
33129
|
+
None,
|
|
33130
|
+
None,
|
|
33131
|
+
"FreeStairsMenu",
|
|
33132
|
+
"Closes the main stairs menu and frees the heap-allocated stairs_menu struct pointed to by STAIRS_MENU_PTR.\n\nNo params.",
|
|
33133
|
+
None,
|
|
33134
|
+
)
|
|
33135
|
+
|
|
33136
|
+
EntityIsValidOverlay31 = Symbol(
|
|
33137
|
+
None,
|
|
33138
|
+
None,
|
|
33139
|
+
None,
|
|
33140
|
+
"EntityIsValidOverlay31",
|
|
33141
|
+
"See overlay29.yml::EntityIsValid",
|
|
33142
|
+
None,
|
|
33143
|
+
)
|
|
33144
|
+
|
|
33145
|
+
ItemsMenu = Symbol(
|
|
33146
|
+
None,
|
|
33147
|
+
None,
|
|
33148
|
+
None,
|
|
33149
|
+
"ItemsMenu",
|
|
33150
|
+
"Called when the in-dungeon 'items' menu is open. Does not return until the menu is closed.\n\nr0: Pointer to the leader's entity struct\nr1: ?\nreturn: ?",
|
|
31198
33151
|
None,
|
|
31199
33152
|
)
|
|
31200
33153
|
|
|
@@ -31261,6 +33214,15 @@ class EuItcmOverlay31Functions:
|
|
|
31261
33214
|
None,
|
|
31262
33215
|
)
|
|
31263
33216
|
|
|
33217
|
+
DrawDungeonHintContents = Symbol(
|
|
33218
|
+
None,
|
|
33219
|
+
None,
|
|
33220
|
+
None,
|
|
33221
|
+
"DrawDungeonHintContents",
|
|
33222
|
+
"Draws the contents of the current dungeon hint that is to be displayed in the Dungeon Hints menu.\n\nr0: window id",
|
|
33223
|
+
None,
|
|
33224
|
+
)
|
|
33225
|
+
|
|
31264
33226
|
HelpMenuLoop = Symbol(
|
|
31265
33227
|
None,
|
|
31266
33228
|
None,
|
|
@@ -31270,6 +33232,12 @@ class EuItcmOverlay31Functions:
|
|
|
31270
33232
|
None,
|
|
31271
33233
|
)
|
|
31272
33234
|
|
|
33235
|
+
EntryOverlay31 = _Deprecated("EntryOverlay31", InitDungeonMenu)
|
|
33236
|
+
|
|
33237
|
+
CreateStairsMenuState = _Deprecated("CreateStairsMenuState", InitStairsMenu)
|
|
33238
|
+
|
|
33239
|
+
HandleStairsMenu = _Deprecated("HandleStairsMenu", StairsMenuLoop)
|
|
33240
|
+
|
|
31273
33241
|
|
|
31274
33242
|
class EuItcmOverlay31Data:
|
|
31275
33243
|
|
|
@@ -31362,20 +33330,40 @@ class EuItcmOverlay31Data:
|
|
|
31362
33330
|
"struct window_params",
|
|
31363
33331
|
)
|
|
31364
33332
|
|
|
31365
|
-
|
|
31366
|
-
None,
|
|
33333
|
+
STAIRS_MENU_ITEMS_NORMAL = Symbol(
|
|
33334
|
+
None,
|
|
33335
|
+
None,
|
|
33336
|
+
None,
|
|
33337
|
+
"STAIRS_MENU_ITEMS_NORMAL",
|
|
33338
|
+
"List of 4 simple_menu_id_items for the normal stairs menu.",
|
|
33339
|
+
"struct simple_menu_id_item[4]",
|
|
31367
33340
|
)
|
|
31368
33341
|
|
|
31369
|
-
|
|
31370
|
-
None,
|
|
33342
|
+
STAIRS_MENU_ITEMS_WARP_ZONE = Symbol(
|
|
33343
|
+
None,
|
|
33344
|
+
None,
|
|
33345
|
+
None,
|
|
33346
|
+
"STAIRS_MENU_ITEMS_WARP_ZONE",
|
|
33347
|
+
"List of 4 simple_menu_id_items for the Warp Zone stairs menu.",
|
|
33348
|
+
"struct simple_menu_id_item[4]",
|
|
31371
33349
|
)
|
|
31372
33350
|
|
|
31373
|
-
|
|
31374
|
-
None,
|
|
33351
|
+
STAIRS_MENU_ITEMS_RESCUE_POINT = Symbol(
|
|
33352
|
+
None,
|
|
33353
|
+
None,
|
|
33354
|
+
None,
|
|
33355
|
+
"STAIRS_MENU_ITEMS_RESCUE_POINT",
|
|
33356
|
+
"List of 4 simple_menu_id_items for the Rescue Point stairs menu.",
|
|
33357
|
+
"struct simple_menu_id_item[4]",
|
|
31375
33358
|
)
|
|
31376
33359
|
|
|
31377
|
-
|
|
31378
|
-
None,
|
|
33360
|
+
STAIRS_MENU_ITEMS_HIDDEN_STAIRS = Symbol(
|
|
33361
|
+
None,
|
|
33362
|
+
None,
|
|
33363
|
+
None,
|
|
33364
|
+
"STAIRS_MENU_ITEMS_HIDDEN_STAIRS",
|
|
33365
|
+
"List of 4 simple_menu_id_items for the hidden stairs menu.",
|
|
33366
|
+
"struct simple_menu_id_item[4]",
|
|
31379
33367
|
)
|
|
31380
33368
|
|
|
31381
33369
|
OVERLAY31_UNKNOWN_STRUCT__NA_2389EF0 = Symbol(
|
|
@@ -31773,6 +33761,22 @@ class EuItcmOverlay31Data:
|
|
|
31773
33761
|
"",
|
|
31774
33762
|
)
|
|
31775
33763
|
|
|
33764
|
+
DUNGEON_SUBMENU_ITEMS_1 = _Deprecated(
|
|
33765
|
+
"DUNGEON_SUBMENU_ITEMS_1", STAIRS_MENU_ITEMS_NORMAL
|
|
33766
|
+
)
|
|
33767
|
+
|
|
33768
|
+
DUNGEON_SUBMENU_ITEMS_2 = _Deprecated(
|
|
33769
|
+
"DUNGEON_SUBMENU_ITEMS_2", STAIRS_MENU_ITEMS_WARP_ZONE
|
|
33770
|
+
)
|
|
33771
|
+
|
|
33772
|
+
DUNGEON_SUBMENU_ITEMS_3 = _Deprecated(
|
|
33773
|
+
"DUNGEON_SUBMENU_ITEMS_3", STAIRS_MENU_ITEMS_RESCUE_POINT
|
|
33774
|
+
)
|
|
33775
|
+
|
|
33776
|
+
DUNGEON_SUBMENU_ITEMS_4 = _Deprecated(
|
|
33777
|
+
"DUNGEON_SUBMENU_ITEMS_4", STAIRS_MENU_ITEMS_HIDDEN_STAIRS
|
|
33778
|
+
)
|
|
33779
|
+
|
|
31776
33780
|
|
|
31777
33781
|
class EuItcmOverlay31Section:
|
|
31778
33782
|
name = "overlay31"
|
|
@@ -32885,6 +34889,15 @@ class EuItcmRamData:
|
|
|
32885
34889
|
"int",
|
|
32886
34890
|
)
|
|
32887
34891
|
|
|
34892
|
+
DEFAULT_TILE_COPY = Symbol(
|
|
34893
|
+
None,
|
|
34894
|
+
None,
|
|
34895
|
+
None,
|
|
34896
|
+
"DEFAULT_TILE_COPY",
|
|
34897
|
+
"A copy of DEFAULT_TILE. Used to hold the default tile returned from GetTileSafe.",
|
|
34898
|
+
"struct tile",
|
|
34899
|
+
)
|
|
34900
|
+
|
|
32888
34901
|
FLOOR_GENERATION_STATUS = Symbol(
|
|
32889
34902
|
None,
|
|
32890
34903
|
None,
|