pmdsky-debug-py 10.1.9__py3-none-any.whl → 10.1.10__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 +18 -0
- pmdsky_debug_py/eu_itcm.py +18 -0
- pmdsky_debug_py/jp.py +30 -12
- pmdsky_debug_py/jp_itcm.py +18 -0
- pmdsky_debug_py/na.py +28 -10
- pmdsky_debug_py/na_itcm.py +18 -0
- pmdsky_debug_py/protocol.py +10 -0
- {pmdsky_debug_py-10.1.9.dist-info → pmdsky_debug_py-10.1.10.dist-info}/METADATA +1 -1
- pmdsky_debug_py-10.1.10.dist-info/RECORD +14 -0
- pmdsky_debug_py-10.1.9.dist-info/RECORD +0 -14
- {pmdsky_debug_py-10.1.9.dist-info → pmdsky_debug_py-10.1.10.dist-info}/WHEEL +0 -0
- {pmdsky_debug_py-10.1.9.dist-info → pmdsky_debug_py-10.1.10.dist-info}/top_level.txt +0 -0
pmdsky_debug_py/_release.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
RELEASE = "v0.10.1+
|
|
1
|
+
RELEASE = "v0.10.1+cf4a11112c"
|
pmdsky_debug_py/eu.py
CHANGED
|
@@ -11015,6 +11015,15 @@ class EuArm9Data:
|
|
|
11015
11015
|
"void*[26]",
|
|
11016
11016
|
)
|
|
11017
11017
|
|
|
11018
|
+
MONSTER_DATA_TABLE_PTR = Symbol(
|
|
11019
|
+
[0xB12D0],
|
|
11020
|
+
[0x20B12D0],
|
|
11021
|
+
None,
|
|
11022
|
+
"MONSTER_DATA_TABLE_PTR",
|
|
11023
|
+
"[Runtime] Points to data about monster species.",
|
|
11024
|
+
"undefined*",
|
|
11025
|
+
)
|
|
11026
|
+
|
|
11018
11027
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
11019
11028
|
[0xB131C],
|
|
11020
11029
|
[0x20B131C],
|
|
@@ -31145,6 +31154,15 @@ class EuOverlay29Data:
|
|
|
31145
31154
|
"struct status_icon_flags[18]",
|
|
31146
31155
|
)
|
|
31147
31156
|
|
|
31157
|
+
POSITION_DISPLACEMENT_TO_DIRECTION = Symbol(
|
|
31158
|
+
[0x75690],
|
|
31159
|
+
[0x2352210],
|
|
31160
|
+
0x24,
|
|
31161
|
+
"POSITION_DISPLACEMENT_TO_DIRECTION",
|
|
31162
|
+
"An array mapping position displacements (y, then x) to directions. Used by GetDirectionTowardsPosition.\n\nGiven two positions, displacements are either 0, 1, or 2 depending on whether the second position's x/y coordinate is less than, equal, or greater\nthan the first position's corresponding coordinates. For example, POSITION_DISPLACEMENT_TO_DIRECTION[0][2] (DIR_UP_RIGHT)\nindicates that the second y coordinate is less than the first, and the second x coordinate is greater than the first.",
|
|
31163
|
+
"enum direction_id[3][3]",
|
|
31164
|
+
)
|
|
31165
|
+
|
|
31148
31166
|
DIRECTIONS_XY = Symbol(
|
|
31149
31167
|
[0x757A8],
|
|
31150
31168
|
[0x2352328],
|
pmdsky_debug_py/eu_itcm.py
CHANGED
|
@@ -10949,6 +10949,15 @@ class EuItcmArm9Data:
|
|
|
10949
10949
|
"void*[26]",
|
|
10950
10950
|
)
|
|
10951
10951
|
|
|
10952
|
+
MONSTER_DATA_TABLE_PTR = Symbol(
|
|
10953
|
+
None,
|
|
10954
|
+
None,
|
|
10955
|
+
None,
|
|
10956
|
+
"MONSTER_DATA_TABLE_PTR",
|
|
10957
|
+
"[Runtime] Points to data about monster species.",
|
|
10958
|
+
"undefined*",
|
|
10959
|
+
)
|
|
10960
|
+
|
|
10952
10961
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
10953
10962
|
None,
|
|
10954
10963
|
None,
|
|
@@ -30467,6 +30476,15 @@ class EuItcmOverlay29Data:
|
|
|
30467
30476
|
"struct status_icon_flags[18]",
|
|
30468
30477
|
)
|
|
30469
30478
|
|
|
30479
|
+
POSITION_DISPLACEMENT_TO_DIRECTION = Symbol(
|
|
30480
|
+
None,
|
|
30481
|
+
None,
|
|
30482
|
+
None,
|
|
30483
|
+
"POSITION_DISPLACEMENT_TO_DIRECTION",
|
|
30484
|
+
"An array mapping position displacements (y, then x) to directions. Used by GetDirectionTowardsPosition.\n\nGiven two positions, displacements are either 0, 1, or 2 depending on whether the second position's x/y coordinate is less than, equal, or greater\nthan the first position's corresponding coordinates. For example, POSITION_DISPLACEMENT_TO_DIRECTION[0][2] (DIR_UP_RIGHT)\nindicates that the second y coordinate is less than the first, and the second x coordinate is greater than the first.",
|
|
30485
|
+
"enum direction_id[3][3]",
|
|
30486
|
+
)
|
|
30487
|
+
|
|
30470
30488
|
DIRECTIONS_XY = Symbol(
|
|
30471
30489
|
None,
|
|
30472
30490
|
None,
|
pmdsky_debug_py/jp.py
CHANGED
|
@@ -8513,8 +8513,8 @@ class JpArm9Functions:
|
|
|
8513
8513
|
)
|
|
8514
8514
|
|
|
8515
8515
|
RevertGiratinaAndShaymin = Symbol(
|
|
8516
|
-
|
|
8517
|
-
|
|
8516
|
+
[0x58974],
|
|
8517
|
+
[0x2058974],
|
|
8518
8518
|
None,
|
|
8519
8519
|
"RevertGiratinaAndShaymin",
|
|
8520
8520
|
"Reverts Giratina and Shaymin party members to their standard forms.\n\nr0: team member index in party\nr1: ?",
|
|
@@ -9008,8 +9008,8 @@ class JpArm9Functions:
|
|
|
9008
9008
|
)
|
|
9009
9009
|
|
|
9010
9010
|
IsMonsterIllegalForMissions = Symbol(
|
|
9011
|
-
|
|
9012
|
-
|
|
9011
|
+
[0x62E4C],
|
|
9012
|
+
[0x2062E4C],
|
|
9013
9013
|
None,
|
|
9014
9014
|
"IsMonsterIllegalForMissions",
|
|
9015
9015
|
"Checks if the monster index is illegal to be used for any mission.\n\nIllegal indexes include Shaymin-Sky, Giratina-Origin, Purple Kecleon, Shiny Celebi, Primal Dialga, and all the unused Arceus forms.\n\nr0: Monster ID\nreturn: True if the specified monster is illegal for missions",
|
|
@@ -11010,6 +11010,15 @@ class JpArm9Data:
|
|
|
11010
11010
|
"void*[26]",
|
|
11011
11011
|
)
|
|
11012
11012
|
|
|
11013
|
+
MONSTER_DATA_TABLE_PTR = Symbol(
|
|
11014
|
+
[0xB2228],
|
|
11015
|
+
[0x20B2228],
|
|
11016
|
+
None,
|
|
11017
|
+
"MONSTER_DATA_TABLE_PTR",
|
|
11018
|
+
"[Runtime] Points to data about monster species.",
|
|
11019
|
+
"undefined*",
|
|
11020
|
+
)
|
|
11021
|
+
|
|
11013
11022
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
11014
11023
|
[0xB224C],
|
|
11015
11024
|
[0x20B224C],
|
|
@@ -16648,8 +16657,8 @@ class JpMove_effectsSection:
|
|
|
16648
16657
|
class JpOverlay0Functions:
|
|
16649
16658
|
|
|
16650
16659
|
SelectRandomBackground = Symbol(
|
|
16651
|
-
|
|
16652
|
-
|
|
16660
|
+
[0x1EA4],
|
|
16661
|
+
[0x22C00C4],
|
|
16653
16662
|
None,
|
|
16654
16663
|
"SelectRandomBackground",
|
|
16655
16664
|
"Selects a random background from the BACK/s09p04-10a.bgp files to be used as the background for the top menu.\n \nNo params.",
|
|
@@ -23997,8 +24006,8 @@ class JpOverlay29Functions:
|
|
|
23997
24006
|
)
|
|
23998
24007
|
|
|
23999
24008
|
PlayQuestionMarkEffect = Symbol(
|
|
24000
|
-
|
|
24001
|
-
|
|
24009
|
+
[0x7B68],
|
|
24010
|
+
[0x22E5448],
|
|
24002
24011
|
None,
|
|
24003
24012
|
"PlayQuestionMarkEffect",
|
|
24004
24013
|
"Plays the question mark effect (id = 0x144) on an entity.\n\nr0: entity pointer",
|
|
@@ -24006,8 +24015,8 @@ class JpOverlay29Functions:
|
|
|
24006
24015
|
)
|
|
24007
24016
|
|
|
24008
24017
|
PlayExclamationPointEffect = Symbol(
|
|
24009
|
-
|
|
24010
|
-
|
|
24018
|
+
[0x7BB4, 0x7C60, 0x912C],
|
|
24019
|
+
[0x22E5494, 0x22E5540, 0x22E6A0C],
|
|
24011
24020
|
None,
|
|
24012
24021
|
"PlayExclamationPointEffect",
|
|
24013
24022
|
"Plays the exclamation point effect (id = 0x143) on an entity.\n\nr0: entity pointer",
|
|
@@ -24033,8 +24042,8 @@ class JpOverlay29Functions:
|
|
|
24033
24042
|
)
|
|
24034
24043
|
|
|
24035
24044
|
PlayEffectAnimationEntityStandard = Symbol(
|
|
24036
|
-
|
|
24037
|
-
|
|
24045
|
+
[0x8078],
|
|
24046
|
+
[0x22E5958],
|
|
24038
24047
|
None,
|
|
24039
24048
|
"PlayEffectAnimationEntityStandard",
|
|
24040
24049
|
"Calls PlayEffectAnimationEntity with standard parameters used in various functions throughout the game.\n\nr0: entity pointer\nr1: effect id",
|
|
@@ -31038,6 +31047,15 @@ class JpOverlay29Data:
|
|
|
31038
31047
|
"struct status_icon_flags[18]",
|
|
31039
31048
|
)
|
|
31040
31049
|
|
|
31050
|
+
POSITION_DISPLACEMENT_TO_DIRECTION = Symbol(
|
|
31051
|
+
[0x74FA4],
|
|
31052
|
+
[0x2352884],
|
|
31053
|
+
0x24,
|
|
31054
|
+
"POSITION_DISPLACEMENT_TO_DIRECTION",
|
|
31055
|
+
"An array mapping position displacements (y, then x) to directions. Used by GetDirectionTowardsPosition.\n\nGiven two positions, displacements are either 0, 1, or 2 depending on whether the second position's x/y coordinate is less than, equal, or greater\nthan the first position's corresponding coordinates. For example, POSITION_DISPLACEMENT_TO_DIRECTION[0][2] (DIR_UP_RIGHT)\nindicates that the second y coordinate is less than the first, and the second x coordinate is greater than the first.",
|
|
31056
|
+
"enum direction_id[3][3]",
|
|
31057
|
+
)
|
|
31058
|
+
|
|
31041
31059
|
DIRECTIONS_XY = Symbol(
|
|
31042
31060
|
[0x750BC],
|
|
31043
31061
|
[0x235299C],
|
pmdsky_debug_py/jp_itcm.py
CHANGED
|
@@ -10949,6 +10949,15 @@ class JpItcmArm9Data:
|
|
|
10949
10949
|
"void*[26]",
|
|
10950
10950
|
)
|
|
10951
10951
|
|
|
10952
|
+
MONSTER_DATA_TABLE_PTR = Symbol(
|
|
10953
|
+
None,
|
|
10954
|
+
None,
|
|
10955
|
+
None,
|
|
10956
|
+
"MONSTER_DATA_TABLE_PTR",
|
|
10957
|
+
"[Runtime] Points to data about monster species.",
|
|
10958
|
+
"undefined*",
|
|
10959
|
+
)
|
|
10960
|
+
|
|
10952
10961
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
10953
10962
|
None,
|
|
10954
10963
|
None,
|
|
@@ -30467,6 +30476,15 @@ class JpItcmOverlay29Data:
|
|
|
30467
30476
|
"struct status_icon_flags[18]",
|
|
30468
30477
|
)
|
|
30469
30478
|
|
|
30479
|
+
POSITION_DISPLACEMENT_TO_DIRECTION = Symbol(
|
|
30480
|
+
None,
|
|
30481
|
+
None,
|
|
30482
|
+
None,
|
|
30483
|
+
"POSITION_DISPLACEMENT_TO_DIRECTION",
|
|
30484
|
+
"An array mapping position displacements (y, then x) to directions. Used by GetDirectionTowardsPosition.\n\nGiven two positions, displacements are either 0, 1, or 2 depending on whether the second position's x/y coordinate is less than, equal, or greater\nthan the first position's corresponding coordinates. For example, POSITION_DISPLACEMENT_TO_DIRECTION[0][2] (DIR_UP_RIGHT)\nindicates that the second y coordinate is less than the first, and the second x coordinate is greater than the first.",
|
|
30485
|
+
"enum direction_id[3][3]",
|
|
30486
|
+
)
|
|
30487
|
+
|
|
30470
30488
|
DIRECTIONS_XY = Symbol(
|
|
30471
30489
|
None,
|
|
30472
30490
|
None,
|
pmdsky_debug_py/na.py
CHANGED
|
@@ -9008,8 +9008,8 @@ class NaArm9Functions:
|
|
|
9008
9008
|
)
|
|
9009
9009
|
|
|
9010
9010
|
IsMonsterIllegalForMissions = Symbol(
|
|
9011
|
-
|
|
9012
|
-
|
|
9011
|
+
[0x62B64],
|
|
9012
|
+
[0x2062B64],
|
|
9013
9013
|
None,
|
|
9014
9014
|
"IsMonsterIllegalForMissions",
|
|
9015
9015
|
"Checks if the monster index is illegal to be used for any mission.\n\nIllegal indexes include Shaymin-Sky, Giratina-Origin, Purple Kecleon, Shiny Celebi, Primal Dialga, and all the unused Arceus forms.\n\nr0: Monster ID\nreturn: True if the specified monster is illegal for missions",
|
|
@@ -11015,6 +11015,15 @@ class NaArm9Data:
|
|
|
11015
11015
|
"void*[26]",
|
|
11016
11016
|
)
|
|
11017
11017
|
|
|
11018
|
+
MONSTER_DATA_TABLE_PTR = Symbol(
|
|
11019
|
+
[0xB09B4],
|
|
11020
|
+
[0x20B09B4],
|
|
11021
|
+
None,
|
|
11022
|
+
"MONSTER_DATA_TABLE_PTR",
|
|
11023
|
+
"[Runtime] Points to data about monster species.",
|
|
11024
|
+
"undefined*",
|
|
11025
|
+
)
|
|
11026
|
+
|
|
11018
11027
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
11019
11028
|
[0xB09D8],
|
|
11020
11029
|
[0x20B09D8],
|
|
@@ -16653,8 +16662,8 @@ class NaMove_effectsSection:
|
|
|
16653
16662
|
class NaOverlay0Functions:
|
|
16654
16663
|
|
|
16655
16664
|
SelectRandomBackground = Symbol(
|
|
16656
|
-
|
|
16657
|
-
|
|
16665
|
+
[0x1E98],
|
|
16666
|
+
[0x22BE918],
|
|
16658
16667
|
None,
|
|
16659
16668
|
"SelectRandomBackground",
|
|
16660
16669
|
"Selects a random background from the BACK/s09p04-10a.bgp files to be used as the background for the top menu.\n \nNo params.",
|
|
@@ -24004,8 +24013,8 @@ class NaOverlay29Functions:
|
|
|
24004
24013
|
)
|
|
24005
24014
|
|
|
24006
24015
|
PlayQuestionMarkEffect = Symbol(
|
|
24007
|
-
|
|
24008
|
-
|
|
24016
|
+
[0x7B98],
|
|
24017
|
+
[0x22E3DD8],
|
|
24009
24018
|
None,
|
|
24010
24019
|
"PlayQuestionMarkEffect",
|
|
24011
24020
|
"Plays the question mark effect (id = 0x144) on an entity.\n\nr0: entity pointer",
|
|
@@ -24013,8 +24022,8 @@ class NaOverlay29Functions:
|
|
|
24013
24022
|
)
|
|
24014
24023
|
|
|
24015
24024
|
PlayExclamationPointEffect = Symbol(
|
|
24016
|
-
|
|
24017
|
-
|
|
24025
|
+
[0x7BE4, 0x7C90, 0x915C],
|
|
24026
|
+
[0x22E3E24, 0x22E3ED0, 0x22E539C],
|
|
24018
24027
|
None,
|
|
24019
24028
|
"PlayExclamationPointEffect",
|
|
24020
24029
|
"Plays the exclamation point effect (id = 0x143) on an entity.\n\nr0: entity pointer",
|
|
@@ -24040,8 +24049,8 @@ class NaOverlay29Functions:
|
|
|
24040
24049
|
)
|
|
24041
24050
|
|
|
24042
24051
|
PlayEffectAnimationEntityStandard = Symbol(
|
|
24043
|
-
|
|
24044
|
-
|
|
24052
|
+
[0x80A8],
|
|
24053
|
+
[0x22E42E8],
|
|
24045
24054
|
None,
|
|
24046
24055
|
"PlayEffectAnimationEntityStandard",
|
|
24047
24056
|
"Calls PlayEffectAnimationEntity with standard parameters used in various functions throughout the game.\n\nr0: entity pointer\nr1: effect id",
|
|
@@ -31143,6 +31152,15 @@ class NaOverlay29Data:
|
|
|
31143
31152
|
"struct status_icon_flags[18]",
|
|
31144
31153
|
)
|
|
31145
31154
|
|
|
31155
|
+
POSITION_DISPLACEMENT_TO_DIRECTION = Symbol(
|
|
31156
|
+
[0x753C4],
|
|
31157
|
+
[0x2351604],
|
|
31158
|
+
0x24,
|
|
31159
|
+
"POSITION_DISPLACEMENT_TO_DIRECTION",
|
|
31160
|
+
"An array mapping position displacements (y, then x) to directions. Used by GetDirectionTowardsPosition.\n\nGiven two positions, displacements are either 0, 1, or 2 depending on whether the second position's x/y coordinate is less than, equal, or greater\nthan the first position's corresponding coordinates. For example, POSITION_DISPLACEMENT_TO_DIRECTION[0][2] (DIR_UP_RIGHT)\nindicates that the second y coordinate is less than the first, and the second x coordinate is greater than the first.",
|
|
31161
|
+
"enum direction_id[3][3]",
|
|
31162
|
+
)
|
|
31163
|
+
|
|
31146
31164
|
DIRECTIONS_XY = Symbol(
|
|
31147
31165
|
[0x754DC],
|
|
31148
31166
|
[0x235171C],
|
pmdsky_debug_py/na_itcm.py
CHANGED
|
@@ -10949,6 +10949,15 @@ class NaItcmArm9Data:
|
|
|
10949
10949
|
"void*[26]",
|
|
10950
10950
|
)
|
|
10951
10951
|
|
|
10952
|
+
MONSTER_DATA_TABLE_PTR = Symbol(
|
|
10953
|
+
None,
|
|
10954
|
+
None,
|
|
10955
|
+
None,
|
|
10956
|
+
"MONSTER_DATA_TABLE_PTR",
|
|
10957
|
+
"[Runtime] Points to data about monster species.",
|
|
10958
|
+
"undefined*",
|
|
10959
|
+
)
|
|
10960
|
+
|
|
10952
10961
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE = Symbol(
|
|
10953
10962
|
None,
|
|
10954
10963
|
None,
|
|
@@ -30467,6 +30476,15 @@ class NaItcmOverlay29Data:
|
|
|
30467
30476
|
"struct status_icon_flags[18]",
|
|
30468
30477
|
)
|
|
30469
30478
|
|
|
30479
|
+
POSITION_DISPLACEMENT_TO_DIRECTION = Symbol(
|
|
30480
|
+
None,
|
|
30481
|
+
None,
|
|
30482
|
+
None,
|
|
30483
|
+
"POSITION_DISPLACEMENT_TO_DIRECTION",
|
|
30484
|
+
"An array mapping position displacements (y, then x) to directions. Used by GetDirectionTowardsPosition.\n\nGiven two positions, displacements are either 0, 1, or 2 depending on whether the second position's x/y coordinate is less than, equal, or greater\nthan the first position's corresponding coordinates. For example, POSITION_DISPLACEMENT_TO_DIRECTION[0][2] (DIR_UP_RIGHT)\nindicates that the second y coordinate is less than the first, and the second x coordinate is greater than the first.",
|
|
30485
|
+
"enum direction_id[3][3]",
|
|
30486
|
+
)
|
|
30487
|
+
|
|
30470
30488
|
DIRECTIONS_XY = Symbol(
|
|
30471
30489
|
None,
|
|
30472
30490
|
None,
|
pmdsky_debug_py/protocol.py
CHANGED
|
@@ -6180,6 +6180,11 @@ class Arm9DataProtocol(Protocol):
|
|
|
6180
6180
|
Optional[int],
|
|
6181
6181
|
]
|
|
6182
6182
|
|
|
6183
|
+
MONSTER_DATA_TABLE_PTR: Symbol[
|
|
6184
|
+
Optional[list[int]],
|
|
6185
|
+
None,
|
|
6186
|
+
]
|
|
6187
|
+
|
|
6183
6188
|
UNOWN_SPECIES_ADDITIONAL_CHAR_PTR_TABLE: Symbol[
|
|
6184
6189
|
Optional[list[int]],
|
|
6185
6190
|
Optional[int],
|
|
@@ -18366,6 +18371,11 @@ class Overlay29DataProtocol(Protocol):
|
|
|
18366
18371
|
Optional[int],
|
|
18367
18372
|
]
|
|
18368
18373
|
|
|
18374
|
+
POSITION_DISPLACEMENT_TO_DIRECTION: Symbol[
|
|
18375
|
+
Optional[list[int]],
|
|
18376
|
+
Optional[int],
|
|
18377
|
+
]
|
|
18378
|
+
|
|
18369
18379
|
DIRECTIONS_XY: Symbol[
|
|
18370
18380
|
Optional[list[int]],
|
|
18371
18381
|
Optional[int],
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
+
pmdsky_debug_py/_release.py,sha256=N9NRHvxChON2RuxMSulDq1wruWN9vPmR6SoIYFt1NJ0,31
|
|
3
|
+
pmdsky_debug_py/eu.py,sha256=85TDNwMjnGTFBi0tnaq8Magf-IfG2WehPRSwka-RdO4,1166112
|
|
4
|
+
pmdsky_debug_py/eu_itcm.py,sha256=axsoM4FrfOV2a97WCmfcB2JteZSjuo2rK6Yc3P8eUTU,1114036
|
|
5
|
+
pmdsky_debug_py/jp.py,sha256=rNv5OLqM32nMZaBgL7FIcl1vTvhgOeZheOhrYOXvBO4,1162830
|
|
6
|
+
pmdsky_debug_py/jp_itcm.py,sha256=Mj_nbq43BJAAAKWyV5D1Qtn6Krbun8mjnC2zYppbDRo,1114026
|
|
7
|
+
pmdsky_debug_py/na.py,sha256=zkMESwzcV0mxZoU92KpqIhl_1o4s6Qy9q7WBGEU1A-g,1167069
|
|
8
|
+
pmdsky_debug_py/na_itcm.py,sha256=gK9q7fmBqbnvjgQ26nvTTZWrmUbhEODlYCa0uKDh2_o,1114036
|
|
9
|
+
pmdsky_debug_py/protocol.py,sha256=axxt3-HYhkX5a0FaEayNEXQb4gJ3bzXsaz9zxnQICnw,341561
|
|
10
|
+
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pmdsky_debug_py-10.1.10.dist-info/METADATA,sha256=1UMHMngyTf8mQgaZAadikC1SIA8Vd4JQw_xMAcFOqT8,1376
|
|
12
|
+
pmdsky_debug_py-10.1.10.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
13
|
+
pmdsky_debug_py-10.1.10.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
+
pmdsky_debug_py-10.1.10.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
-
pmdsky_debug_py/_release.py,sha256=OWdUORvl4FpPaJ9Lqv-CM2RIsfhxMtSxz71VdeUcH2o,31
|
|
3
|
-
pmdsky_debug_py/eu.py,sha256=S25ffxcCy3fuILPD544_7vthxPeg-w8RTdjopCpT_VQ,1165201
|
|
4
|
-
pmdsky_debug_py/eu_itcm.py,sha256=GlU9CfL368rJdujcaKofIb7Ir_mA9odlHlxbwJp8_co,1113149
|
|
5
|
-
pmdsky_debug_py/jp.py,sha256=43vMrCdQYYOOEaCJu5IXJpx7VZudm4jSjNDJfuLvUiA,1161813
|
|
6
|
-
pmdsky_debug_py/jp_itcm.py,sha256=7I_HzAFVHFbz-jpKUISs495YMkpTPTTaM2S7p3-lqMg,1113139
|
|
7
|
-
pmdsky_debug_py/na.py,sha256=KFiD2HRQBGJAmax1aZ5ci7d54izBvEMSun1GTCmL2u8,1166064
|
|
8
|
-
pmdsky_debug_py/na_itcm.py,sha256=yBeM6PkuQaOqyKjv44z2jv7NUp8YW97fwEvwuptWDUI,1113149
|
|
9
|
-
pmdsky_debug_py/protocol.py,sha256=GF2pydxF0NiSoCeHKjCAzJNyGZIRSwRlCThhbulfmZI,341368
|
|
10
|
-
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pmdsky_debug_py-10.1.9.dist-info/METADATA,sha256=Cr032wreriDkZHTP_C6L_YgFXW9ew-ygjcPBXHoIlA8,1375
|
|
12
|
-
pmdsky_debug_py-10.1.9.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
13
|
-
pmdsky_debug_py-10.1.9.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
-
pmdsky_debug_py-10.1.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|