pmdsky-debug-py 10.0.15__py3-none-any.whl → 10.0.17__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 +148 -3
- pmdsky_debug_py/eu_itcm.py +150 -3
- pmdsky_debug_py/jp.py +148 -3
- pmdsky_debug_py/jp_itcm.py +150 -3
- pmdsky_debug_py/na.py +148 -3
- pmdsky_debug_py/na_itcm.py +150 -3
- {pmdsky_debug_py-10.0.15.dist-info → pmdsky_debug_py-10.0.17.dist-info}/METADATA +1 -1
- pmdsky_debug_py-10.0.17.dist-info/RECORD +14 -0
- {pmdsky_debug_py-10.0.15.dist-info → pmdsky_debug_py-10.0.17.dist-info}/WHEEL +1 -1
- pmdsky_debug_py-10.0.15.dist-info/RECORD +0 -14
- {pmdsky_debug_py-10.0.15.dist-info → pmdsky_debug_py-10.0.17.dist-info}/top_level.txt +0 -0
pmdsky_debug_py/_release.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
RELEASE = "v0.10.0+
|
|
1
|
+
RELEASE = "v0.10.0+4f361d8590"
|
pmdsky_debug_py/eu.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from .protocol import Symbol
|
|
2
|
+
import warnings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class _Deprecated:
|
|
6
|
+
def __init__(self, oldname, symbol):
|
|
7
|
+
self.oldname = oldname
|
|
8
|
+
self.symbol = symbol
|
|
9
|
+
|
|
10
|
+
def __get__(self, _obj, _objtype=None):
|
|
11
|
+
warnings.warn(
|
|
12
|
+
f"symbol {self.oldname} has been renamed to {self.symbol.name}",
|
|
13
|
+
category=DeprecationWarning,
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|
|
16
|
+
return self.symbol
|
|
2
17
|
|
|
3
18
|
|
|
4
19
|
class EuArm7Functions:
|
|
@@ -162,6 +177,12 @@ class EuArm7Functions:
|
|
|
162
177
|
None,
|
|
163
178
|
)
|
|
164
179
|
|
|
180
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
181
|
+
|
|
182
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
183
|
+
|
|
184
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
185
|
+
|
|
165
186
|
|
|
166
187
|
class EuArm7Data:
|
|
167
188
|
|
|
@@ -8824,6 +8845,80 @@ class EuArm9Functions:
|
|
|
8824
8845
|
None,
|
|
8825
8846
|
)
|
|
8826
8847
|
|
|
8848
|
+
FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
|
|
8849
|
+
|
|
8850
|
+
FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
|
|
8851
|
+
|
|
8852
|
+
FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
|
|
8853
|
+
|
|
8854
|
+
FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
|
|
8855
|
+
|
|
8856
|
+
FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
|
|
8857
|
+
|
|
8858
|
+
FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
|
|
8859
|
+
|
|
8860
|
+
Debug_Init = _Deprecated("Debug_Init", InitDebug)
|
|
8861
|
+
|
|
8862
|
+
Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
|
|
8863
|
+
|
|
8864
|
+
Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
|
|
8865
|
+
|
|
8866
|
+
Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
|
|
8867
|
+
|
|
8868
|
+
Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
|
|
8869
|
+
|
|
8870
|
+
Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
|
|
8871
|
+
|
|
8872
|
+
Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
|
|
8873
|
+
|
|
8874
|
+
Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
|
|
8875
|
+
|
|
8876
|
+
Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
|
|
8877
|
+
|
|
8878
|
+
Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
|
|
8879
|
+
|
|
8880
|
+
Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
|
|
8881
|
+
|
|
8882
|
+
Debug_Print = _Deprecated("Debug_Print", DebugPrint)
|
|
8883
|
+
|
|
8884
|
+
Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
|
|
8885
|
+
|
|
8886
|
+
Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
|
|
8887
|
+
|
|
8888
|
+
Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
|
|
8889
|
+
|
|
8890
|
+
Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
|
|
8891
|
+
|
|
8892
|
+
Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
|
|
8893
|
+
|
|
8894
|
+
DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
|
|
8895
|
+
"DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
|
|
8896
|
+
)
|
|
8897
|
+
|
|
8898
|
+
DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
|
|
8899
|
+
"DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
|
|
8900
|
+
)
|
|
8901
|
+
|
|
8902
|
+
DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
|
|
8903
|
+
"DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
|
|
8904
|
+
)
|
|
8905
|
+
|
|
8906
|
+
DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
|
|
8907
|
+
"DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
|
|
8908
|
+
)
|
|
8909
|
+
|
|
8910
|
+
DirectoryFile_ExtractDirectoryFile = _Deprecated(
|
|
8911
|
+
"DirectoryFile_ExtractDirectoryFile", OpenPackFile
|
|
8912
|
+
)
|
|
8913
|
+
|
|
8914
|
+
DirectoryFile_GetDirectoryFileSize = _Deprecated(
|
|
8915
|
+
"DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
|
|
8916
|
+
)
|
|
8917
|
+
|
|
8918
|
+
DirectoryFile_LoadDirectoryFile = _Deprecated(
|
|
8919
|
+
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
8920
|
+
)
|
|
8921
|
+
|
|
8827
8922
|
|
|
8828
8923
|
class EuArm9Data:
|
|
8829
8924
|
|
|
@@ -9558,7 +9653,12 @@ class EuArm9Data:
|
|
|
9558
9653
|
)
|
|
9559
9654
|
|
|
9560
9655
|
MIN_IQ_EXCLUSIVE_MOVE_USER = Symbol(
|
|
9561
|
-
[0xA1E10],
|
|
9656
|
+
[0xA1E10],
|
|
9657
|
+
[0x20A1E10],
|
|
9658
|
+
0x4,
|
|
9659
|
+
"MIN_IQ_EXCLUSIVE_MOVE_USER",
|
|
9660
|
+
"Minimum IQ required for enemies to use Exclusive-Move User",
|
|
9661
|
+
"int32_t",
|
|
9562
9662
|
)
|
|
9563
9663
|
|
|
9564
9664
|
WONDER_GUMMI_IQ_GAIN = Symbol(
|
|
@@ -9580,7 +9680,12 @@ class EuArm9Data:
|
|
|
9580
9680
|
)
|
|
9581
9681
|
|
|
9582
9682
|
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9583
|
-
[0xA1E28],
|
|
9683
|
+
[0xA1E28],
|
|
9684
|
+
[0x20A1E28],
|
|
9685
|
+
0x4,
|
|
9686
|
+
"MIN_IQ_ITEM_MASTER",
|
|
9687
|
+
"Minimum IQ required for enemies to use Item Master",
|
|
9688
|
+
"int32_t",
|
|
9584
9689
|
)
|
|
9585
9690
|
|
|
9586
9691
|
DEF_SCARF_STAT_BOOST = Symbol(
|
|
@@ -10754,6 +10859,18 @@ class EuArm9Data:
|
|
|
10754
10859
|
"struct data_processing_instruction",
|
|
10755
10860
|
)
|
|
10756
10861
|
|
|
10862
|
+
EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
|
|
10863
|
+
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
10864
|
+
)
|
|
10865
|
+
|
|
10866
|
+
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
10867
|
+
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
10868
|
+
)
|
|
10869
|
+
|
|
10870
|
+
DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
|
|
10871
|
+
|
|
10872
|
+
TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
|
|
10873
|
+
|
|
10757
10874
|
|
|
10758
10875
|
class EuArm9Section:
|
|
10759
10876
|
name = "arm9"
|
|
@@ -13248,6 +13365,32 @@ class EuLibsFunctions:
|
|
|
13248
13365
|
None,
|
|
13249
13366
|
)
|
|
13250
13367
|
|
|
13368
|
+
DseUtil_GetRandomNumber = _Deprecated(
|
|
13369
|
+
"DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
|
|
13370
|
+
)
|
|
13371
|
+
|
|
13372
|
+
__addsf3 = _Deprecated("__addsf3", _fadd)
|
|
13373
|
+
|
|
13374
|
+
__divsf3 = _Deprecated("__divsf3", _fdiv)
|
|
13375
|
+
|
|
13376
|
+
__extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
|
|
13377
|
+
|
|
13378
|
+
__fixsfsi = _Deprecated("__fixsfsi", _ffix)
|
|
13379
|
+
|
|
13380
|
+
__floatsisf = _Deprecated("__floatsisf", _fflt)
|
|
13381
|
+
|
|
13382
|
+
__floatunsisf = _Deprecated("__floatunsisf", _ffltu)
|
|
13383
|
+
|
|
13384
|
+
__mulsf3 = _Deprecated("__mulsf3", _fmul)
|
|
13385
|
+
|
|
13386
|
+
__subsf3 = _Deprecated("__subsf3", _fsub)
|
|
13387
|
+
|
|
13388
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
13389
|
+
|
|
13390
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
13391
|
+
|
|
13392
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
13393
|
+
|
|
13251
13394
|
|
|
13252
13395
|
class EuLibsData:
|
|
13253
13396
|
|
|
@@ -17479,7 +17622,7 @@ class EuOverlay10Data:
|
|
|
17479
17622
|
[0x22C5018],
|
|
17480
17623
|
0x2,
|
|
17481
17624
|
"GINSENG_CHANCE_3",
|
|
17482
|
-
"The percentage chance for
|
|
17625
|
+
"The percentage chance for Ginseng to boost a move's power by 3 (12%).",
|
|
17483
17626
|
"int16_t",
|
|
17484
17627
|
)
|
|
17485
17628
|
|
|
@@ -18830,6 +18973,8 @@ class EuOverlay11Functions:
|
|
|
18830
18973
|
None,
|
|
18831
18974
|
)
|
|
18832
18975
|
|
|
18976
|
+
ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
|
|
18977
|
+
|
|
18833
18978
|
|
|
18834
18979
|
class EuOverlay11Data:
|
|
18835
18980
|
|
pmdsky_debug_py/eu_itcm.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from .protocol import Symbol
|
|
2
|
+
import warnings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class _Deprecated:
|
|
6
|
+
def __init__(self, oldname, symbol):
|
|
7
|
+
self.oldname = oldname
|
|
8
|
+
self.symbol = symbol
|
|
9
|
+
|
|
10
|
+
def __get__(self, _obj, _objtype=None):
|
|
11
|
+
warnings.warn(
|
|
12
|
+
f"symbol {self.oldname} has been renamed to {self.symbol.name}",
|
|
13
|
+
category=DeprecationWarning,
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|
|
16
|
+
return self.symbol
|
|
2
17
|
|
|
3
18
|
|
|
4
19
|
class EuItcmArm7Functions:
|
|
@@ -162,6 +177,12 @@ class EuItcmArm7Functions:
|
|
|
162
177
|
None,
|
|
163
178
|
)
|
|
164
179
|
|
|
180
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
181
|
+
|
|
182
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
183
|
+
|
|
184
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
185
|
+
|
|
165
186
|
|
|
166
187
|
class EuItcmArm7Data:
|
|
167
188
|
|
|
@@ -8778,6 +8799,80 @@ class EuItcmArm9Functions:
|
|
|
8778
8799
|
None,
|
|
8779
8800
|
)
|
|
8780
8801
|
|
|
8802
|
+
FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
|
|
8803
|
+
|
|
8804
|
+
FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
|
|
8805
|
+
|
|
8806
|
+
FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
|
|
8807
|
+
|
|
8808
|
+
FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
|
|
8809
|
+
|
|
8810
|
+
FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
|
|
8811
|
+
|
|
8812
|
+
FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
|
|
8813
|
+
|
|
8814
|
+
Debug_Init = _Deprecated("Debug_Init", InitDebug)
|
|
8815
|
+
|
|
8816
|
+
Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
|
|
8817
|
+
|
|
8818
|
+
Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
|
|
8819
|
+
|
|
8820
|
+
Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
|
|
8821
|
+
|
|
8822
|
+
Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
|
|
8823
|
+
|
|
8824
|
+
Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
|
|
8825
|
+
|
|
8826
|
+
Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
|
|
8827
|
+
|
|
8828
|
+
Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
|
|
8829
|
+
|
|
8830
|
+
Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
|
|
8831
|
+
|
|
8832
|
+
Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
|
|
8833
|
+
|
|
8834
|
+
Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
|
|
8835
|
+
|
|
8836
|
+
Debug_Print = _Deprecated("Debug_Print", DebugPrint)
|
|
8837
|
+
|
|
8838
|
+
Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
|
|
8839
|
+
|
|
8840
|
+
Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
|
|
8841
|
+
|
|
8842
|
+
Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
|
|
8843
|
+
|
|
8844
|
+
Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
|
|
8845
|
+
|
|
8846
|
+
Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
|
|
8847
|
+
|
|
8848
|
+
DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
|
|
8849
|
+
"DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
|
|
8850
|
+
)
|
|
8851
|
+
|
|
8852
|
+
DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
|
|
8853
|
+
"DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
|
|
8854
|
+
)
|
|
8855
|
+
|
|
8856
|
+
DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
|
|
8857
|
+
"DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
|
|
8858
|
+
)
|
|
8859
|
+
|
|
8860
|
+
DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
|
|
8861
|
+
"DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
|
|
8862
|
+
)
|
|
8863
|
+
|
|
8864
|
+
DirectoryFile_ExtractDirectoryFile = _Deprecated(
|
|
8865
|
+
"DirectoryFile_ExtractDirectoryFile", OpenPackFile
|
|
8866
|
+
)
|
|
8867
|
+
|
|
8868
|
+
DirectoryFile_GetDirectoryFileSize = _Deprecated(
|
|
8869
|
+
"DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
|
|
8870
|
+
)
|
|
8871
|
+
|
|
8872
|
+
DirectoryFile_LoadDirectoryFile = _Deprecated(
|
|
8873
|
+
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
8874
|
+
)
|
|
8875
|
+
|
|
8781
8876
|
|
|
8782
8877
|
class EuItcmArm9Data:
|
|
8783
8878
|
|
|
@@ -9503,7 +9598,12 @@ class EuItcmArm9Data:
|
|
|
9503
9598
|
)
|
|
9504
9599
|
|
|
9505
9600
|
MIN_IQ_EXCLUSIVE_MOVE_USER = Symbol(
|
|
9506
|
-
None,
|
|
9601
|
+
None,
|
|
9602
|
+
None,
|
|
9603
|
+
None,
|
|
9604
|
+
"MIN_IQ_EXCLUSIVE_MOVE_USER",
|
|
9605
|
+
"Minimum IQ required for enemies to use Exclusive-Move User",
|
|
9606
|
+
"int32_t",
|
|
9507
9607
|
)
|
|
9508
9608
|
|
|
9509
9609
|
WONDER_GUMMI_IQ_GAIN = Symbol(
|
|
@@ -9524,7 +9624,14 @@ class EuItcmArm9Data:
|
|
|
9524
9624
|
"int16_t",
|
|
9525
9625
|
)
|
|
9526
9626
|
|
|
9527
|
-
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9627
|
+
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9628
|
+
None,
|
|
9629
|
+
None,
|
|
9630
|
+
None,
|
|
9631
|
+
"MIN_IQ_ITEM_MASTER",
|
|
9632
|
+
"Minimum IQ required for enemies to use Item Master",
|
|
9633
|
+
"int32_t",
|
|
9634
|
+
)
|
|
9528
9635
|
|
|
9529
9636
|
DEF_SCARF_STAT_BOOST = Symbol(
|
|
9530
9637
|
None,
|
|
@@ -10686,6 +10793,18 @@ class EuItcmArm9Data:
|
|
|
10686
10793
|
"struct data_processing_instruction",
|
|
10687
10794
|
)
|
|
10688
10795
|
|
|
10796
|
+
EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
|
|
10797
|
+
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
10798
|
+
)
|
|
10799
|
+
|
|
10800
|
+
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
10801
|
+
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
10802
|
+
)
|
|
10803
|
+
|
|
10804
|
+
DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
|
|
10805
|
+
|
|
10806
|
+
TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
|
|
10807
|
+
|
|
10689
10808
|
|
|
10690
10809
|
class EuItcmArm9Section:
|
|
10691
10810
|
name = "arm9"
|
|
@@ -13005,6 +13124,32 @@ class EuItcmLibsFunctions:
|
|
|
13005
13124
|
None,
|
|
13006
13125
|
)
|
|
13007
13126
|
|
|
13127
|
+
DseUtil_GetRandomNumber = _Deprecated(
|
|
13128
|
+
"DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
|
|
13129
|
+
)
|
|
13130
|
+
|
|
13131
|
+
__addsf3 = _Deprecated("__addsf3", _fadd)
|
|
13132
|
+
|
|
13133
|
+
__divsf3 = _Deprecated("__divsf3", _fdiv)
|
|
13134
|
+
|
|
13135
|
+
__extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
|
|
13136
|
+
|
|
13137
|
+
__fixsfsi = _Deprecated("__fixsfsi", _ffix)
|
|
13138
|
+
|
|
13139
|
+
__floatsisf = _Deprecated("__floatsisf", _fflt)
|
|
13140
|
+
|
|
13141
|
+
__floatunsisf = _Deprecated("__floatunsisf", _ffltu)
|
|
13142
|
+
|
|
13143
|
+
__mulsf3 = _Deprecated("__mulsf3", _fmul)
|
|
13144
|
+
|
|
13145
|
+
__subsf3 = _Deprecated("__subsf3", _fsub)
|
|
13146
|
+
|
|
13147
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
13148
|
+
|
|
13149
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
13150
|
+
|
|
13151
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
13152
|
+
|
|
13008
13153
|
|
|
13009
13154
|
class EuItcmLibsData:
|
|
13010
13155
|
|
|
@@ -17221,7 +17366,7 @@ class EuItcmOverlay10Data:
|
|
|
17221
17366
|
None,
|
|
17222
17367
|
None,
|
|
17223
17368
|
"GINSENG_CHANCE_3",
|
|
17224
|
-
"The percentage chance for
|
|
17369
|
+
"The percentage chance for Ginseng to boost a move's power by 3 (12%).",
|
|
17225
17370
|
"int16_t",
|
|
17226
17371
|
)
|
|
17227
17372
|
|
|
@@ -18558,6 +18703,8 @@ class EuItcmOverlay11Functions:
|
|
|
18558
18703
|
None,
|
|
18559
18704
|
)
|
|
18560
18705
|
|
|
18706
|
+
ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
|
|
18707
|
+
|
|
18561
18708
|
|
|
18562
18709
|
class EuItcmOverlay11Data:
|
|
18563
18710
|
|
pmdsky_debug_py/jp.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from .protocol import Symbol
|
|
2
|
+
import warnings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class _Deprecated:
|
|
6
|
+
def __init__(self, oldname, symbol):
|
|
7
|
+
self.oldname = oldname
|
|
8
|
+
self.symbol = symbol
|
|
9
|
+
|
|
10
|
+
def __get__(self, _obj, _objtype=None):
|
|
11
|
+
warnings.warn(
|
|
12
|
+
f"symbol {self.oldname} has been renamed to {self.symbol.name}",
|
|
13
|
+
category=DeprecationWarning,
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|
|
16
|
+
return self.symbol
|
|
2
17
|
|
|
3
18
|
|
|
4
19
|
class JpArm7Functions:
|
|
@@ -162,6 +177,12 @@ class JpArm7Functions:
|
|
|
162
177
|
None,
|
|
163
178
|
)
|
|
164
179
|
|
|
180
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
181
|
+
|
|
182
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
183
|
+
|
|
184
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
185
|
+
|
|
165
186
|
|
|
166
187
|
class JpArm7Data:
|
|
167
188
|
|
|
@@ -8820,6 +8841,80 @@ class JpArm9Functions:
|
|
|
8820
8841
|
None,
|
|
8821
8842
|
)
|
|
8822
8843
|
|
|
8844
|
+
FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
|
|
8845
|
+
|
|
8846
|
+
FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
|
|
8847
|
+
|
|
8848
|
+
FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
|
|
8849
|
+
|
|
8850
|
+
FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
|
|
8851
|
+
|
|
8852
|
+
FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
|
|
8853
|
+
|
|
8854
|
+
FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
|
|
8855
|
+
|
|
8856
|
+
Debug_Init = _Deprecated("Debug_Init", InitDebug)
|
|
8857
|
+
|
|
8858
|
+
Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
|
|
8859
|
+
|
|
8860
|
+
Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
|
|
8861
|
+
|
|
8862
|
+
Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
|
|
8863
|
+
|
|
8864
|
+
Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
|
|
8865
|
+
|
|
8866
|
+
Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
|
|
8867
|
+
|
|
8868
|
+
Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
|
|
8869
|
+
|
|
8870
|
+
Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
|
|
8871
|
+
|
|
8872
|
+
Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
|
|
8873
|
+
|
|
8874
|
+
Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
|
|
8875
|
+
|
|
8876
|
+
Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
|
|
8877
|
+
|
|
8878
|
+
Debug_Print = _Deprecated("Debug_Print", DebugPrint)
|
|
8879
|
+
|
|
8880
|
+
Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
|
|
8881
|
+
|
|
8882
|
+
Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
|
|
8883
|
+
|
|
8884
|
+
Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
|
|
8885
|
+
|
|
8886
|
+
Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
|
|
8887
|
+
|
|
8888
|
+
Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
|
|
8889
|
+
|
|
8890
|
+
DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
|
|
8891
|
+
"DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
|
|
8892
|
+
)
|
|
8893
|
+
|
|
8894
|
+
DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
|
|
8895
|
+
"DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
|
|
8896
|
+
)
|
|
8897
|
+
|
|
8898
|
+
DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
|
|
8899
|
+
"DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
|
|
8900
|
+
)
|
|
8901
|
+
|
|
8902
|
+
DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
|
|
8903
|
+
"DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
|
|
8904
|
+
)
|
|
8905
|
+
|
|
8906
|
+
DirectoryFile_ExtractDirectoryFile = _Deprecated(
|
|
8907
|
+
"DirectoryFile_ExtractDirectoryFile", OpenPackFile
|
|
8908
|
+
)
|
|
8909
|
+
|
|
8910
|
+
DirectoryFile_GetDirectoryFileSize = _Deprecated(
|
|
8911
|
+
"DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
|
|
8912
|
+
)
|
|
8913
|
+
|
|
8914
|
+
DirectoryFile_LoadDirectoryFile = _Deprecated(
|
|
8915
|
+
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
8916
|
+
)
|
|
8917
|
+
|
|
8823
8918
|
|
|
8824
8919
|
class JpArm9Data:
|
|
8825
8920
|
|
|
@@ -9545,7 +9640,12 @@ class JpArm9Data:
|
|
|
9545
9640
|
)
|
|
9546
9641
|
|
|
9547
9642
|
MIN_IQ_EXCLUSIVE_MOVE_USER = Symbol(
|
|
9548
|
-
[0xA2C60],
|
|
9643
|
+
[0xA2C60],
|
|
9644
|
+
[0x20A2C60],
|
|
9645
|
+
0x4,
|
|
9646
|
+
"MIN_IQ_EXCLUSIVE_MOVE_USER",
|
|
9647
|
+
"Minimum IQ required for enemies to use Exclusive-Move User",
|
|
9648
|
+
"int32_t",
|
|
9549
9649
|
)
|
|
9550
9650
|
|
|
9551
9651
|
WONDER_GUMMI_IQ_GAIN = Symbol(
|
|
@@ -9567,7 +9667,12 @@ class JpArm9Data:
|
|
|
9567
9667
|
)
|
|
9568
9668
|
|
|
9569
9669
|
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9570
|
-
[0xA2C78],
|
|
9670
|
+
[0xA2C78],
|
|
9671
|
+
[0x20A2C78],
|
|
9672
|
+
0x4,
|
|
9673
|
+
"MIN_IQ_ITEM_MASTER",
|
|
9674
|
+
"Minimum IQ required for enemies to use Item Master",
|
|
9675
|
+
"int32_t",
|
|
9571
9676
|
)
|
|
9572
9677
|
|
|
9573
9678
|
DEF_SCARF_STAT_BOOST = Symbol(
|
|
@@ -10739,6 +10844,18 @@ class JpArm9Data:
|
|
|
10739
10844
|
"struct data_processing_instruction",
|
|
10740
10845
|
)
|
|
10741
10846
|
|
|
10847
|
+
EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
|
|
10848
|
+
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
10849
|
+
)
|
|
10850
|
+
|
|
10851
|
+
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
10852
|
+
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
10853
|
+
)
|
|
10854
|
+
|
|
10855
|
+
DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
|
|
10856
|
+
|
|
10857
|
+
TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
|
|
10858
|
+
|
|
10742
10859
|
|
|
10743
10860
|
class JpArm9Section:
|
|
10744
10861
|
name = "arm9"
|
|
@@ -13219,6 +13336,32 @@ class JpLibsFunctions:
|
|
|
13219
13336
|
None,
|
|
13220
13337
|
)
|
|
13221
13338
|
|
|
13339
|
+
DseUtil_GetRandomNumber = _Deprecated(
|
|
13340
|
+
"DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
|
|
13341
|
+
)
|
|
13342
|
+
|
|
13343
|
+
__addsf3 = _Deprecated("__addsf3", _fadd)
|
|
13344
|
+
|
|
13345
|
+
__divsf3 = _Deprecated("__divsf3", _fdiv)
|
|
13346
|
+
|
|
13347
|
+
__extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
|
|
13348
|
+
|
|
13349
|
+
__fixsfsi = _Deprecated("__fixsfsi", _ffix)
|
|
13350
|
+
|
|
13351
|
+
__floatsisf = _Deprecated("__floatsisf", _fflt)
|
|
13352
|
+
|
|
13353
|
+
__floatunsisf = _Deprecated("__floatunsisf", _ffltu)
|
|
13354
|
+
|
|
13355
|
+
__mulsf3 = _Deprecated("__mulsf3", _fmul)
|
|
13356
|
+
|
|
13357
|
+
__subsf3 = _Deprecated("__subsf3", _fsub)
|
|
13358
|
+
|
|
13359
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
13360
|
+
|
|
13361
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
13362
|
+
|
|
13363
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
13364
|
+
|
|
13222
13365
|
|
|
13223
13366
|
class JpLibsData:
|
|
13224
13367
|
|
|
@@ -17445,7 +17588,7 @@ class JpOverlay10Data:
|
|
|
17445
17588
|
[0x22C5DA8],
|
|
17446
17589
|
0x2,
|
|
17447
17590
|
"GINSENG_CHANCE_3",
|
|
17448
|
-
"The percentage chance for
|
|
17591
|
+
"The percentage chance for Ginseng to boost a move's power by 3 (12%).",
|
|
17449
17592
|
"int16_t",
|
|
17450
17593
|
)
|
|
17451
17594
|
|
|
@@ -18796,6 +18939,8 @@ class JpOverlay11Functions:
|
|
|
18796
18939
|
None,
|
|
18797
18940
|
)
|
|
18798
18941
|
|
|
18942
|
+
ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
|
|
18943
|
+
|
|
18799
18944
|
|
|
18800
18945
|
class JpOverlay11Data:
|
|
18801
18946
|
|
pmdsky_debug_py/jp_itcm.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from .protocol import Symbol
|
|
2
|
+
import warnings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class _Deprecated:
|
|
6
|
+
def __init__(self, oldname, symbol):
|
|
7
|
+
self.oldname = oldname
|
|
8
|
+
self.symbol = symbol
|
|
9
|
+
|
|
10
|
+
def __get__(self, _obj, _objtype=None):
|
|
11
|
+
warnings.warn(
|
|
12
|
+
f"symbol {self.oldname} has been renamed to {self.symbol.name}",
|
|
13
|
+
category=DeprecationWarning,
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|
|
16
|
+
return self.symbol
|
|
2
17
|
|
|
3
18
|
|
|
4
19
|
class JpItcmArm7Functions:
|
|
@@ -162,6 +177,12 @@ class JpItcmArm7Functions:
|
|
|
162
177
|
None,
|
|
163
178
|
)
|
|
164
179
|
|
|
180
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
181
|
+
|
|
182
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
183
|
+
|
|
184
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
185
|
+
|
|
165
186
|
|
|
166
187
|
class JpItcmArm7Data:
|
|
167
188
|
|
|
@@ -8778,6 +8799,80 @@ class JpItcmArm9Functions:
|
|
|
8778
8799
|
None,
|
|
8779
8800
|
)
|
|
8780
8801
|
|
|
8802
|
+
FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
|
|
8803
|
+
|
|
8804
|
+
FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
|
|
8805
|
+
|
|
8806
|
+
FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
|
|
8807
|
+
|
|
8808
|
+
FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
|
|
8809
|
+
|
|
8810
|
+
FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
|
|
8811
|
+
|
|
8812
|
+
FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
|
|
8813
|
+
|
|
8814
|
+
Debug_Init = _Deprecated("Debug_Init", InitDebug)
|
|
8815
|
+
|
|
8816
|
+
Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
|
|
8817
|
+
|
|
8818
|
+
Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
|
|
8819
|
+
|
|
8820
|
+
Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
|
|
8821
|
+
|
|
8822
|
+
Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
|
|
8823
|
+
|
|
8824
|
+
Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
|
|
8825
|
+
|
|
8826
|
+
Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
|
|
8827
|
+
|
|
8828
|
+
Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
|
|
8829
|
+
|
|
8830
|
+
Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
|
|
8831
|
+
|
|
8832
|
+
Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
|
|
8833
|
+
|
|
8834
|
+
Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
|
|
8835
|
+
|
|
8836
|
+
Debug_Print = _Deprecated("Debug_Print", DebugPrint)
|
|
8837
|
+
|
|
8838
|
+
Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
|
|
8839
|
+
|
|
8840
|
+
Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
|
|
8841
|
+
|
|
8842
|
+
Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
|
|
8843
|
+
|
|
8844
|
+
Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
|
|
8845
|
+
|
|
8846
|
+
Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
|
|
8847
|
+
|
|
8848
|
+
DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
|
|
8849
|
+
"DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
|
|
8850
|
+
)
|
|
8851
|
+
|
|
8852
|
+
DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
|
|
8853
|
+
"DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
|
|
8854
|
+
)
|
|
8855
|
+
|
|
8856
|
+
DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
|
|
8857
|
+
"DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
|
|
8858
|
+
)
|
|
8859
|
+
|
|
8860
|
+
DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
|
|
8861
|
+
"DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
|
|
8862
|
+
)
|
|
8863
|
+
|
|
8864
|
+
DirectoryFile_ExtractDirectoryFile = _Deprecated(
|
|
8865
|
+
"DirectoryFile_ExtractDirectoryFile", OpenPackFile
|
|
8866
|
+
)
|
|
8867
|
+
|
|
8868
|
+
DirectoryFile_GetDirectoryFileSize = _Deprecated(
|
|
8869
|
+
"DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
|
|
8870
|
+
)
|
|
8871
|
+
|
|
8872
|
+
DirectoryFile_LoadDirectoryFile = _Deprecated(
|
|
8873
|
+
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
8874
|
+
)
|
|
8875
|
+
|
|
8781
8876
|
|
|
8782
8877
|
class JpItcmArm9Data:
|
|
8783
8878
|
|
|
@@ -9503,7 +9598,12 @@ class JpItcmArm9Data:
|
|
|
9503
9598
|
)
|
|
9504
9599
|
|
|
9505
9600
|
MIN_IQ_EXCLUSIVE_MOVE_USER = Symbol(
|
|
9506
|
-
None,
|
|
9601
|
+
None,
|
|
9602
|
+
None,
|
|
9603
|
+
None,
|
|
9604
|
+
"MIN_IQ_EXCLUSIVE_MOVE_USER",
|
|
9605
|
+
"Minimum IQ required for enemies to use Exclusive-Move User",
|
|
9606
|
+
"int32_t",
|
|
9507
9607
|
)
|
|
9508
9608
|
|
|
9509
9609
|
WONDER_GUMMI_IQ_GAIN = Symbol(
|
|
@@ -9524,7 +9624,14 @@ class JpItcmArm9Data:
|
|
|
9524
9624
|
"int16_t",
|
|
9525
9625
|
)
|
|
9526
9626
|
|
|
9527
|
-
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9627
|
+
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9628
|
+
None,
|
|
9629
|
+
None,
|
|
9630
|
+
None,
|
|
9631
|
+
"MIN_IQ_ITEM_MASTER",
|
|
9632
|
+
"Minimum IQ required for enemies to use Item Master",
|
|
9633
|
+
"int32_t",
|
|
9634
|
+
)
|
|
9528
9635
|
|
|
9529
9636
|
DEF_SCARF_STAT_BOOST = Symbol(
|
|
9530
9637
|
None,
|
|
@@ -10686,6 +10793,18 @@ class JpItcmArm9Data:
|
|
|
10686
10793
|
"struct data_processing_instruction",
|
|
10687
10794
|
)
|
|
10688
10795
|
|
|
10796
|
+
EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
|
|
10797
|
+
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
10798
|
+
)
|
|
10799
|
+
|
|
10800
|
+
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
10801
|
+
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
10802
|
+
)
|
|
10803
|
+
|
|
10804
|
+
DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
|
|
10805
|
+
|
|
10806
|
+
TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
|
|
10807
|
+
|
|
10689
10808
|
|
|
10690
10809
|
class JpItcmArm9Section:
|
|
10691
10810
|
name = "arm9"
|
|
@@ -13005,6 +13124,32 @@ class JpItcmLibsFunctions:
|
|
|
13005
13124
|
None,
|
|
13006
13125
|
)
|
|
13007
13126
|
|
|
13127
|
+
DseUtil_GetRandomNumber = _Deprecated(
|
|
13128
|
+
"DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
|
|
13129
|
+
)
|
|
13130
|
+
|
|
13131
|
+
__addsf3 = _Deprecated("__addsf3", _fadd)
|
|
13132
|
+
|
|
13133
|
+
__divsf3 = _Deprecated("__divsf3", _fdiv)
|
|
13134
|
+
|
|
13135
|
+
__extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
|
|
13136
|
+
|
|
13137
|
+
__fixsfsi = _Deprecated("__fixsfsi", _ffix)
|
|
13138
|
+
|
|
13139
|
+
__floatsisf = _Deprecated("__floatsisf", _fflt)
|
|
13140
|
+
|
|
13141
|
+
__floatunsisf = _Deprecated("__floatunsisf", _ffltu)
|
|
13142
|
+
|
|
13143
|
+
__mulsf3 = _Deprecated("__mulsf3", _fmul)
|
|
13144
|
+
|
|
13145
|
+
__subsf3 = _Deprecated("__subsf3", _fsub)
|
|
13146
|
+
|
|
13147
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
13148
|
+
|
|
13149
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
13150
|
+
|
|
13151
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
13152
|
+
|
|
13008
13153
|
|
|
13009
13154
|
class JpItcmLibsData:
|
|
13010
13155
|
|
|
@@ -17221,7 +17366,7 @@ class JpItcmOverlay10Data:
|
|
|
17221
17366
|
None,
|
|
17222
17367
|
None,
|
|
17223
17368
|
"GINSENG_CHANCE_3",
|
|
17224
|
-
"The percentage chance for
|
|
17369
|
+
"The percentage chance for Ginseng to boost a move's power by 3 (12%).",
|
|
17225
17370
|
"int16_t",
|
|
17226
17371
|
)
|
|
17227
17372
|
|
|
@@ -18558,6 +18703,8 @@ class JpItcmOverlay11Functions:
|
|
|
18558
18703
|
None,
|
|
18559
18704
|
)
|
|
18560
18705
|
|
|
18706
|
+
ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
|
|
18707
|
+
|
|
18561
18708
|
|
|
18562
18709
|
class JpItcmOverlay11Data:
|
|
18563
18710
|
|
pmdsky_debug_py/na.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from .protocol import Symbol
|
|
2
|
+
import warnings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class _Deprecated:
|
|
6
|
+
def __init__(self, oldname, symbol):
|
|
7
|
+
self.oldname = oldname
|
|
8
|
+
self.symbol = symbol
|
|
9
|
+
|
|
10
|
+
def __get__(self, _obj, _objtype=None):
|
|
11
|
+
warnings.warn(
|
|
12
|
+
f"symbol {self.oldname} has been renamed to {self.symbol.name}",
|
|
13
|
+
category=DeprecationWarning,
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|
|
16
|
+
return self.symbol
|
|
2
17
|
|
|
3
18
|
|
|
4
19
|
class NaArm7Functions:
|
|
@@ -162,6 +177,12 @@ class NaArm7Functions:
|
|
|
162
177
|
None,
|
|
163
178
|
)
|
|
164
179
|
|
|
180
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
181
|
+
|
|
182
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
183
|
+
|
|
184
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
185
|
+
|
|
165
186
|
|
|
166
187
|
class NaArm7Data:
|
|
167
188
|
|
|
@@ -8824,6 +8845,80 @@ class NaArm9Functions:
|
|
|
8824
8845
|
None,
|
|
8825
8846
|
)
|
|
8826
8847
|
|
|
8848
|
+
FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
|
|
8849
|
+
|
|
8850
|
+
FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
|
|
8851
|
+
|
|
8852
|
+
FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
|
|
8853
|
+
|
|
8854
|
+
FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
|
|
8855
|
+
|
|
8856
|
+
FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
|
|
8857
|
+
|
|
8858
|
+
FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
|
|
8859
|
+
|
|
8860
|
+
Debug_Init = _Deprecated("Debug_Init", InitDebug)
|
|
8861
|
+
|
|
8862
|
+
Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
|
|
8863
|
+
|
|
8864
|
+
Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
|
|
8865
|
+
|
|
8866
|
+
Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
|
|
8867
|
+
|
|
8868
|
+
Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
|
|
8869
|
+
|
|
8870
|
+
Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
|
|
8871
|
+
|
|
8872
|
+
Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
|
|
8873
|
+
|
|
8874
|
+
Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
|
|
8875
|
+
|
|
8876
|
+
Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
|
|
8877
|
+
|
|
8878
|
+
Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
|
|
8879
|
+
|
|
8880
|
+
Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
|
|
8881
|
+
|
|
8882
|
+
Debug_Print = _Deprecated("Debug_Print", DebugPrint)
|
|
8883
|
+
|
|
8884
|
+
Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
|
|
8885
|
+
|
|
8886
|
+
Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
|
|
8887
|
+
|
|
8888
|
+
Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
|
|
8889
|
+
|
|
8890
|
+
Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
|
|
8891
|
+
|
|
8892
|
+
Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
|
|
8893
|
+
|
|
8894
|
+
DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
|
|
8895
|
+
"DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
|
|
8896
|
+
)
|
|
8897
|
+
|
|
8898
|
+
DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
|
|
8899
|
+
"DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
|
|
8900
|
+
)
|
|
8901
|
+
|
|
8902
|
+
DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
|
|
8903
|
+
"DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
|
|
8904
|
+
)
|
|
8905
|
+
|
|
8906
|
+
DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
|
|
8907
|
+
"DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
|
|
8908
|
+
)
|
|
8909
|
+
|
|
8910
|
+
DirectoryFile_ExtractDirectoryFile = _Deprecated(
|
|
8911
|
+
"DirectoryFile_ExtractDirectoryFile", OpenPackFile
|
|
8912
|
+
)
|
|
8913
|
+
|
|
8914
|
+
DirectoryFile_GetDirectoryFileSize = _Deprecated(
|
|
8915
|
+
"DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
|
|
8916
|
+
)
|
|
8917
|
+
|
|
8918
|
+
DirectoryFile_LoadDirectoryFile = _Deprecated(
|
|
8919
|
+
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
8920
|
+
)
|
|
8921
|
+
|
|
8827
8922
|
|
|
8828
8923
|
class NaArm9Data:
|
|
8829
8924
|
|
|
@@ -9558,7 +9653,12 @@ class NaArm9Data:
|
|
|
9558
9653
|
)
|
|
9559
9654
|
|
|
9560
9655
|
MIN_IQ_EXCLUSIVE_MOVE_USER = Symbol(
|
|
9561
|
-
[0xA188C],
|
|
9656
|
+
[0xA188C],
|
|
9657
|
+
[0x20A188C],
|
|
9658
|
+
0x4,
|
|
9659
|
+
"MIN_IQ_EXCLUSIVE_MOVE_USER",
|
|
9660
|
+
"Minimum IQ required for enemies to use Exclusive-Move User",
|
|
9661
|
+
"int32_t",
|
|
9562
9662
|
)
|
|
9563
9663
|
|
|
9564
9664
|
WONDER_GUMMI_IQ_GAIN = Symbol(
|
|
@@ -9580,7 +9680,12 @@ class NaArm9Data:
|
|
|
9580
9680
|
)
|
|
9581
9681
|
|
|
9582
9682
|
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9583
|
-
[0xA18A4],
|
|
9683
|
+
[0xA18A4],
|
|
9684
|
+
[0x20A18A4],
|
|
9685
|
+
0x4,
|
|
9686
|
+
"MIN_IQ_ITEM_MASTER",
|
|
9687
|
+
"Minimum IQ required for enemies to use Item Master",
|
|
9688
|
+
"int32_t",
|
|
9584
9689
|
)
|
|
9585
9690
|
|
|
9586
9691
|
DEF_SCARF_STAT_BOOST = Symbol(
|
|
@@ -10754,6 +10859,18 @@ class NaArm9Data:
|
|
|
10754
10859
|
"struct data_processing_instruction",
|
|
10755
10860
|
)
|
|
10756
10861
|
|
|
10862
|
+
EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
|
|
10863
|
+
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
10864
|
+
)
|
|
10865
|
+
|
|
10866
|
+
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
10867
|
+
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
10868
|
+
)
|
|
10869
|
+
|
|
10870
|
+
DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
|
|
10871
|
+
|
|
10872
|
+
TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
|
|
10873
|
+
|
|
10757
10874
|
|
|
10758
10875
|
class NaArm9Section:
|
|
10759
10876
|
name = "arm9"
|
|
@@ -13248,6 +13365,32 @@ class NaLibsFunctions:
|
|
|
13248
13365
|
None,
|
|
13249
13366
|
)
|
|
13250
13367
|
|
|
13368
|
+
DseUtil_GetRandomNumber = _Deprecated(
|
|
13369
|
+
"DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
|
|
13370
|
+
)
|
|
13371
|
+
|
|
13372
|
+
__addsf3 = _Deprecated("__addsf3", _fadd)
|
|
13373
|
+
|
|
13374
|
+
__divsf3 = _Deprecated("__divsf3", _fdiv)
|
|
13375
|
+
|
|
13376
|
+
__extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
|
|
13377
|
+
|
|
13378
|
+
__fixsfsi = _Deprecated("__fixsfsi", _ffix)
|
|
13379
|
+
|
|
13380
|
+
__floatsisf = _Deprecated("__floatsisf", _fflt)
|
|
13381
|
+
|
|
13382
|
+
__floatunsisf = _Deprecated("__floatunsisf", _ffltu)
|
|
13383
|
+
|
|
13384
|
+
__mulsf3 = _Deprecated("__mulsf3", _fmul)
|
|
13385
|
+
|
|
13386
|
+
__subsf3 = _Deprecated("__subsf3", _fsub)
|
|
13387
|
+
|
|
13388
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
13389
|
+
|
|
13390
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
13391
|
+
|
|
13392
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
13393
|
+
|
|
13251
13394
|
|
|
13252
13395
|
class NaLibsData:
|
|
13253
13396
|
|
|
@@ -17479,7 +17622,7 @@ class NaOverlay10Data:
|
|
|
17479
17622
|
[0x22C46C0],
|
|
17480
17623
|
0x2,
|
|
17481
17624
|
"GINSENG_CHANCE_3",
|
|
17482
|
-
"The percentage chance for
|
|
17625
|
+
"The percentage chance for Ginseng to boost a move's power by 3 (12%).",
|
|
17483
17626
|
"int16_t",
|
|
17484
17627
|
)
|
|
17485
17628
|
|
|
@@ -18830,6 +18973,8 @@ class NaOverlay11Functions:
|
|
|
18830
18973
|
None,
|
|
18831
18974
|
)
|
|
18832
18975
|
|
|
18976
|
+
ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
|
|
18977
|
+
|
|
18833
18978
|
|
|
18834
18979
|
class NaOverlay11Data:
|
|
18835
18980
|
|
pmdsky_debug_py/na_itcm.py
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
from .protocol import Symbol
|
|
2
|
+
import warnings
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class _Deprecated:
|
|
6
|
+
def __init__(self, oldname, symbol):
|
|
7
|
+
self.oldname = oldname
|
|
8
|
+
self.symbol = symbol
|
|
9
|
+
|
|
10
|
+
def __get__(self, _obj, _objtype=None):
|
|
11
|
+
warnings.warn(
|
|
12
|
+
f"symbol {self.oldname} has been renamed to {self.symbol.name}",
|
|
13
|
+
category=DeprecationWarning,
|
|
14
|
+
stacklevel=2,
|
|
15
|
+
)
|
|
16
|
+
return self.symbol
|
|
2
17
|
|
|
3
18
|
|
|
4
19
|
class NaItcmArm7Functions:
|
|
@@ -162,6 +177,12 @@ class NaItcmArm7Functions:
|
|
|
162
177
|
None,
|
|
163
178
|
)
|
|
164
179
|
|
|
180
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
181
|
+
|
|
182
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
183
|
+
|
|
184
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
185
|
+
|
|
165
186
|
|
|
166
187
|
class NaItcmArm7Data:
|
|
167
188
|
|
|
@@ -8778,6 +8799,80 @@ class NaItcmArm9Functions:
|
|
|
8778
8799
|
None,
|
|
8779
8800
|
)
|
|
8780
8801
|
|
|
8802
|
+
FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
|
|
8803
|
+
|
|
8804
|
+
FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
|
|
8805
|
+
|
|
8806
|
+
FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
|
|
8807
|
+
|
|
8808
|
+
FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
|
|
8809
|
+
|
|
8810
|
+
FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
|
|
8811
|
+
|
|
8812
|
+
FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
|
|
8813
|
+
|
|
8814
|
+
Debug_Init = _Deprecated("Debug_Init", InitDebug)
|
|
8815
|
+
|
|
8816
|
+
Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
|
|
8817
|
+
|
|
8818
|
+
Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
|
|
8819
|
+
|
|
8820
|
+
Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
|
|
8821
|
+
|
|
8822
|
+
Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
|
|
8823
|
+
|
|
8824
|
+
Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
|
|
8825
|
+
|
|
8826
|
+
Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
|
|
8827
|
+
|
|
8828
|
+
Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
|
|
8829
|
+
|
|
8830
|
+
Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
|
|
8831
|
+
|
|
8832
|
+
Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
|
|
8833
|
+
|
|
8834
|
+
Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
|
|
8835
|
+
|
|
8836
|
+
Debug_Print = _Deprecated("Debug_Print", DebugPrint)
|
|
8837
|
+
|
|
8838
|
+
Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
|
|
8839
|
+
|
|
8840
|
+
Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
|
|
8841
|
+
|
|
8842
|
+
Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
|
|
8843
|
+
|
|
8844
|
+
Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
|
|
8845
|
+
|
|
8846
|
+
Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
|
|
8847
|
+
|
|
8848
|
+
DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
|
|
8849
|
+
"DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
|
|
8850
|
+
)
|
|
8851
|
+
|
|
8852
|
+
DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
|
|
8853
|
+
"DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
|
|
8854
|
+
)
|
|
8855
|
+
|
|
8856
|
+
DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
|
|
8857
|
+
"DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
|
|
8858
|
+
)
|
|
8859
|
+
|
|
8860
|
+
DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
|
|
8861
|
+
"DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
|
|
8862
|
+
)
|
|
8863
|
+
|
|
8864
|
+
DirectoryFile_ExtractDirectoryFile = _Deprecated(
|
|
8865
|
+
"DirectoryFile_ExtractDirectoryFile", OpenPackFile
|
|
8866
|
+
)
|
|
8867
|
+
|
|
8868
|
+
DirectoryFile_GetDirectoryFileSize = _Deprecated(
|
|
8869
|
+
"DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
|
|
8870
|
+
)
|
|
8871
|
+
|
|
8872
|
+
DirectoryFile_LoadDirectoryFile = _Deprecated(
|
|
8873
|
+
"DirectoryFile_LoadDirectoryFile", LoadFileInPack
|
|
8874
|
+
)
|
|
8875
|
+
|
|
8781
8876
|
|
|
8782
8877
|
class NaItcmArm9Data:
|
|
8783
8878
|
|
|
@@ -9503,7 +9598,12 @@ class NaItcmArm9Data:
|
|
|
9503
9598
|
)
|
|
9504
9599
|
|
|
9505
9600
|
MIN_IQ_EXCLUSIVE_MOVE_USER = Symbol(
|
|
9506
|
-
None,
|
|
9601
|
+
None,
|
|
9602
|
+
None,
|
|
9603
|
+
None,
|
|
9604
|
+
"MIN_IQ_EXCLUSIVE_MOVE_USER",
|
|
9605
|
+
"Minimum IQ required for enemies to use Exclusive-Move User",
|
|
9606
|
+
"int32_t",
|
|
9507
9607
|
)
|
|
9508
9608
|
|
|
9509
9609
|
WONDER_GUMMI_IQ_GAIN = Symbol(
|
|
@@ -9524,7 +9624,14 @@ class NaItcmArm9Data:
|
|
|
9524
9624
|
"int16_t",
|
|
9525
9625
|
)
|
|
9526
9626
|
|
|
9527
|
-
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9627
|
+
MIN_IQ_ITEM_MASTER = Symbol(
|
|
9628
|
+
None,
|
|
9629
|
+
None,
|
|
9630
|
+
None,
|
|
9631
|
+
"MIN_IQ_ITEM_MASTER",
|
|
9632
|
+
"Minimum IQ required for enemies to use Item Master",
|
|
9633
|
+
"int32_t",
|
|
9634
|
+
)
|
|
9528
9635
|
|
|
9529
9636
|
DEF_SCARF_STAT_BOOST = Symbol(
|
|
9530
9637
|
None,
|
|
@@ -10686,6 +10793,18 @@ class NaItcmArm9Data:
|
|
|
10686
10793
|
"struct data_processing_instruction",
|
|
10687
10794
|
)
|
|
10688
10795
|
|
|
10796
|
+
EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
|
|
10797
|
+
"EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
|
|
10798
|
+
)
|
|
10799
|
+
|
|
10800
|
+
DIRECTORY_FILES_EXTRACTED = _Deprecated(
|
|
10801
|
+
"DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
|
|
10802
|
+
)
|
|
10803
|
+
|
|
10804
|
+
DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
|
|
10805
|
+
|
|
10806
|
+
TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
|
|
10807
|
+
|
|
10689
10808
|
|
|
10690
10809
|
class NaItcmArm9Section:
|
|
10691
10810
|
name = "arm9"
|
|
@@ -13005,6 +13124,32 @@ class NaItcmLibsFunctions:
|
|
|
13005
13124
|
None,
|
|
13006
13125
|
)
|
|
13007
13126
|
|
|
13127
|
+
DseUtil_GetRandomNumber = _Deprecated(
|
|
13128
|
+
"DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
|
|
13129
|
+
)
|
|
13130
|
+
|
|
13131
|
+
__addsf3 = _Deprecated("__addsf3", _fadd)
|
|
13132
|
+
|
|
13133
|
+
__divsf3 = _Deprecated("__divsf3", _fdiv)
|
|
13134
|
+
|
|
13135
|
+
__extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
|
|
13136
|
+
|
|
13137
|
+
__fixsfsi = _Deprecated("__fixsfsi", _ffix)
|
|
13138
|
+
|
|
13139
|
+
__floatsisf = _Deprecated("__floatsisf", _fflt)
|
|
13140
|
+
|
|
13141
|
+
__floatunsisf = _Deprecated("__floatunsisf", _ffltu)
|
|
13142
|
+
|
|
13143
|
+
__mulsf3 = _Deprecated("__mulsf3", _fmul)
|
|
13144
|
+
|
|
13145
|
+
__subsf3 = _Deprecated("__subsf3", _fsub)
|
|
13146
|
+
|
|
13147
|
+
__divsi3 = _Deprecated("__divsi3", _s32_div_f)
|
|
13148
|
+
|
|
13149
|
+
__udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
|
|
13150
|
+
|
|
13151
|
+
__udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
|
|
13152
|
+
|
|
13008
13153
|
|
|
13009
13154
|
class NaItcmLibsData:
|
|
13010
13155
|
|
|
@@ -17221,7 +17366,7 @@ class NaItcmOverlay10Data:
|
|
|
17221
17366
|
None,
|
|
17222
17367
|
None,
|
|
17223
17368
|
"GINSENG_CHANCE_3",
|
|
17224
|
-
"The percentage chance for
|
|
17369
|
+
"The percentage chance for Ginseng to boost a move's power by 3 (12%).",
|
|
17225
17370
|
"int16_t",
|
|
17226
17371
|
)
|
|
17227
17372
|
|
|
@@ -18558,6 +18703,8 @@ class NaItcmOverlay11Functions:
|
|
|
18558
18703
|
None,
|
|
18559
18704
|
)
|
|
18560
18705
|
|
|
18706
|
+
ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
|
|
18707
|
+
|
|
18561
18708
|
|
|
18562
18709
|
class NaItcmOverlay11Data:
|
|
18563
18710
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
+
pmdsky_debug_py/_release.py,sha256=-8fFhDNKWqPc1eG2q-gROM0PjWJx4QsIvF_riakUMDQ,31
|
|
3
|
+
pmdsky_debug_py/eu.py,sha256=86pLesVimqVgAMDXz3jnqyox3zNb3Y6SPt-NMJsHS9A,1099196
|
|
4
|
+
pmdsky_debug_py/eu_itcm.py,sha256=mNJNeuvt59BMTnT_C0LpqOP3mK4Zt0n0e0hbS1oR19A,1049513
|
|
5
|
+
pmdsky_debug_py/jp.py,sha256=JPKds88nrLHzi6YqCBEIbIdsLIL35XM2Hb2gbt900jQ,1086171
|
|
6
|
+
pmdsky_debug_py/jp_itcm.py,sha256=3Me1jvayzmfg1NJnFDV6-zQZdtpdSOXrlEJJBDDWW88,1049503
|
|
7
|
+
pmdsky_debug_py/na.py,sha256=DKMO_uq3f44UvzMrYOymyBoTSD8gGd_0uqOqJqxorIg,1100241
|
|
8
|
+
pmdsky_debug_py/na_itcm.py,sha256=Yol9gGwIsQ0N49SkhHHWZUuTz14K_GKCbikHjxvj0lE,1049533
|
|
9
|
+
pmdsky_debug_py/protocol.py,sha256=fWgUsCEZyh5XoNpzad0zNmuRozcQq7rElUEuVN3_WTM,324780
|
|
10
|
+
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pmdsky_debug_py-10.0.17.dist-info/METADATA,sha256=NgVKOkxunyxBv9jSKfTd3wcncDzYrxhCdSkZZGUGSYk,1374
|
|
12
|
+
pmdsky_debug_py-10.0.17.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
13
|
+
pmdsky_debug_py-10.0.17.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
+
pmdsky_debug_py-10.0.17.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
-
pmdsky_debug_py/_release.py,sha256=vEnUHE50-5jFh4990dIUhYgLlhVO_OsivkLbEIAppbo,31
|
|
3
|
-
pmdsky_debug_py/eu.py,sha256=yk5mwFSNpZqxQRweC4Xo41IB_-kws6SUbNUxuopGuzk,1094688
|
|
4
|
-
pmdsky_debug_py/eu_itcm.py,sha256=VZRNaC-x7dDG3tPdjtO2NqjkhoIJTYuPafNk1NFPJ4w,1044991
|
|
5
|
-
pmdsky_debug_py/jp.py,sha256=x5RgBymQTSKLDJV4-8_WNLA0wRTVxgJTM6qiTdwiRGw,1081663
|
|
6
|
-
pmdsky_debug_py/jp_itcm.py,sha256=Oown-Bp2H-HO7SksrI2KTB9RSeN0mlRC5TVtWWoOo6A,1044981
|
|
7
|
-
pmdsky_debug_py/na.py,sha256=o5lohKmv09J6TrXWqhzGjrJL7wj8wnYIhO8Yfmw-OPk,1095733
|
|
8
|
-
pmdsky_debug_py/na_itcm.py,sha256=eM_IgXikOK1KlLwVQDolkebkxuJBonhB8hXa-due3ek,1045011
|
|
9
|
-
pmdsky_debug_py/protocol.py,sha256=fWgUsCEZyh5XoNpzad0zNmuRozcQq7rElUEuVN3_WTM,324780
|
|
10
|
-
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pmdsky_debug_py-10.0.15.dist-info/METADATA,sha256=THVk7ofabBvjZMOXEbyoT1LUjROmx7t3DrVGSPsFT0I,1374
|
|
12
|
-
pmdsky_debug_py-10.0.15.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
13
|
-
pmdsky_debug_py-10.0.15.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
-
pmdsky_debug_py-10.0.15.dist-info/RECORD,,
|
|
File without changes
|