pmdsky-debug-py 10.0.46__py3-none-any.whl → 10.0.47__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 +6 -6
- pmdsky_debug_py/eu_itcm.py +6 -6
- pmdsky_debug_py/jp.py +6 -6
- pmdsky_debug_py/jp_itcm.py +6 -6
- pmdsky_debug_py/na.py +6 -6
- pmdsky_debug_py/na_itcm.py +6 -6
- {pmdsky_debug_py-10.0.46.dist-info → pmdsky_debug_py-10.0.47.dist-info}/METADATA +1 -1
- pmdsky_debug_py-10.0.47.dist-info/RECORD +14 -0
- pmdsky_debug_py-10.0.46.dist-info/RECORD +0 -14
- {pmdsky_debug_py-10.0.46.dist-info → pmdsky_debug_py-10.0.47.dist-info}/WHEEL +0 -0
- {pmdsky_debug_py-10.0.46.dist-info → pmdsky_debug_py-10.0.47.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+d5d2460d80"
|
pmdsky_debug_py/eu.py
CHANGED
|
@@ -22679,7 +22679,7 @@ class EuOverlay29Functions:
|
|
|
22679
22679
|
[0x22E1F68],
|
|
22680
22680
|
None,
|
|
22681
22681
|
"GetTileAtEntity",
|
|
22682
|
-
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\
|
|
22682
|
+
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\nreturn: pointer to tile",
|
|
22683
22683
|
None,
|
|
22684
22684
|
)
|
|
22685
22685
|
|
|
@@ -24661,7 +24661,7 @@ class EuOverlay29Functions:
|
|
|
24661
24661
|
[0x2300988],
|
|
24662
24662
|
None,
|
|
24663
24663
|
"GetNumberOfAttacks",
|
|
24664
|
-
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\
|
|
24664
|
+
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\nreturn: int",
|
|
24665
24665
|
None,
|
|
24666
24666
|
)
|
|
24667
24667
|
|
|
@@ -25192,7 +25192,7 @@ class EuOverlay29Functions:
|
|
|
25192
25192
|
[0x2305A0C],
|
|
25193
25193
|
None,
|
|
25194
25194
|
"DisplayActions",
|
|
25195
|
-
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\
|
|
25195
|
+
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\nreturn: Seems to be true if there were any pending actions to display.",
|
|
25196
25196
|
None,
|
|
25197
25197
|
)
|
|
25198
25198
|
|
|
@@ -27199,7 +27199,7 @@ class EuOverlay29Functions:
|
|
|
27199
27199
|
[0x23246B0],
|
|
27200
27200
|
None,
|
|
27201
27201
|
"MoveHitCheck",
|
|
27202
|
-
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\
|
|
27202
|
+
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\nreturn: True if the move hits, false if it misses.",
|
|
27203
27203
|
None,
|
|
27204
27204
|
)
|
|
27205
27205
|
|
|
@@ -27253,7 +27253,7 @@ class EuOverlay29Functions:
|
|
|
27253
27253
|
[0x232539C],
|
|
27254
27254
|
None,
|
|
27255
27255
|
"DungeonRandOutcomeUserTargetInteraction",
|
|
27256
|
-
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
27256
|
+
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
27257
27257
|
None,
|
|
27258
27258
|
)
|
|
27259
27259
|
|
|
@@ -27262,7 +27262,7 @@ class EuOverlay29Functions:
|
|
|
27262
27262
|
[0x2325488],
|
|
27263
27263
|
None,
|
|
27264
27264
|
"DungeonRandOutcomeUserAction",
|
|
27265
|
-
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
27265
|
+
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
27266
27266
|
None,
|
|
27267
27267
|
)
|
|
27268
27268
|
|
pmdsky_debug_py/eu_itcm.py
CHANGED
|
@@ -22178,7 +22178,7 @@ class EuItcmOverlay29Functions:
|
|
|
22178
22178
|
None,
|
|
22179
22179
|
None,
|
|
22180
22180
|
"GetTileAtEntity",
|
|
22181
|
-
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\
|
|
22181
|
+
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\nreturn: pointer to tile",
|
|
22182
22182
|
None,
|
|
22183
22183
|
)
|
|
22184
22184
|
|
|
@@ -24086,7 +24086,7 @@ class EuItcmOverlay29Functions:
|
|
|
24086
24086
|
None,
|
|
24087
24087
|
None,
|
|
24088
24088
|
"GetNumberOfAttacks",
|
|
24089
|
-
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\
|
|
24089
|
+
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\nreturn: int",
|
|
24090
24090
|
None,
|
|
24091
24091
|
)
|
|
24092
24092
|
|
|
@@ -24617,7 +24617,7 @@ class EuItcmOverlay29Functions:
|
|
|
24617
24617
|
None,
|
|
24618
24618
|
None,
|
|
24619
24619
|
"DisplayActions",
|
|
24620
|
-
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\
|
|
24620
|
+
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\nreturn: Seems to be true if there were any pending actions to display.",
|
|
24621
24621
|
None,
|
|
24622
24622
|
)
|
|
24623
24623
|
|
|
@@ -26624,7 +26624,7 @@ class EuItcmOverlay29Functions:
|
|
|
26624
26624
|
None,
|
|
26625
26625
|
None,
|
|
26626
26626
|
"MoveHitCheck",
|
|
26627
|
-
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\
|
|
26627
|
+
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\nreturn: True if the move hits, false if it misses.",
|
|
26628
26628
|
None,
|
|
26629
26629
|
)
|
|
26630
26630
|
|
|
@@ -26678,7 +26678,7 @@ class EuItcmOverlay29Functions:
|
|
|
26678
26678
|
None,
|
|
26679
26679
|
None,
|
|
26680
26680
|
"DungeonRandOutcomeUserTargetInteraction",
|
|
26681
|
-
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
26681
|
+
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
26682
26682
|
None,
|
|
26683
26683
|
)
|
|
26684
26684
|
|
|
@@ -26687,7 +26687,7 @@ class EuItcmOverlay29Functions:
|
|
|
26687
26687
|
None,
|
|
26688
26688
|
None,
|
|
26689
26689
|
"DungeonRandOutcomeUserAction",
|
|
26690
|
-
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
26690
|
+
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
26691
26691
|
None,
|
|
26692
26692
|
)
|
|
26693
26693
|
|
pmdsky_debug_py/jp.py
CHANGED
|
@@ -22670,7 +22670,7 @@ class JpOverlay29Functions:
|
|
|
22670
22670
|
[0x22E2CB8],
|
|
22671
22671
|
None,
|
|
22672
22672
|
"GetTileAtEntity",
|
|
22673
|
-
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\
|
|
22673
|
+
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\nreturn: pointer to tile",
|
|
22674
22674
|
None,
|
|
22675
22675
|
)
|
|
22676
22676
|
|
|
@@ -24652,7 +24652,7 @@ class JpOverlay29Functions:
|
|
|
24652
24652
|
[0x230138C],
|
|
24653
24653
|
None,
|
|
24654
24654
|
"GetNumberOfAttacks",
|
|
24655
|
-
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\
|
|
24655
|
+
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\nreturn: int",
|
|
24656
24656
|
None,
|
|
24657
24657
|
)
|
|
24658
24658
|
|
|
@@ -25183,7 +25183,7 @@ class JpOverlay29Functions:
|
|
|
25183
25183
|
[0x2306530],
|
|
25184
25184
|
None,
|
|
25185
25185
|
"DisplayActions",
|
|
25186
|
-
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\
|
|
25186
|
+
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\nreturn: Seems to be true if there were any pending actions to display.",
|
|
25187
25187
|
None,
|
|
25188
25188
|
)
|
|
25189
25189
|
|
|
@@ -27190,7 +27190,7 @@ class JpOverlay29Functions:
|
|
|
27190
27190
|
[0x23250E8],
|
|
27191
27191
|
None,
|
|
27192
27192
|
"MoveHitCheck",
|
|
27193
|
-
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\
|
|
27193
|
+
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\nreturn: True if the move hits, false if it misses.",
|
|
27194
27194
|
None,
|
|
27195
27195
|
)
|
|
27196
27196
|
|
|
@@ -27244,7 +27244,7 @@ class JpOverlay29Functions:
|
|
|
27244
27244
|
[0x2325DC4],
|
|
27245
27245
|
None,
|
|
27246
27246
|
"DungeonRandOutcomeUserTargetInteraction",
|
|
27247
|
-
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
27247
|
+
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
27248
27248
|
None,
|
|
27249
27249
|
)
|
|
27250
27250
|
|
|
@@ -27253,7 +27253,7 @@ class JpOverlay29Functions:
|
|
|
27253
27253
|
[0x2325EAC],
|
|
27254
27254
|
None,
|
|
27255
27255
|
"DungeonRandOutcomeUserAction",
|
|
27256
|
-
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
27256
|
+
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
27257
27257
|
None,
|
|
27258
27258
|
)
|
|
27259
27259
|
|
pmdsky_debug_py/jp_itcm.py
CHANGED
|
@@ -22178,7 +22178,7 @@ class JpItcmOverlay29Functions:
|
|
|
22178
22178
|
None,
|
|
22179
22179
|
None,
|
|
22180
22180
|
"GetTileAtEntity",
|
|
22181
|
-
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\
|
|
22181
|
+
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\nreturn: pointer to tile",
|
|
22182
22182
|
None,
|
|
22183
22183
|
)
|
|
22184
22184
|
|
|
@@ -24086,7 +24086,7 @@ class JpItcmOverlay29Functions:
|
|
|
24086
24086
|
None,
|
|
24087
24087
|
None,
|
|
24088
24088
|
"GetNumberOfAttacks",
|
|
24089
|
-
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\
|
|
24089
|
+
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\nreturn: int",
|
|
24090
24090
|
None,
|
|
24091
24091
|
)
|
|
24092
24092
|
|
|
@@ -24617,7 +24617,7 @@ class JpItcmOverlay29Functions:
|
|
|
24617
24617
|
None,
|
|
24618
24618
|
None,
|
|
24619
24619
|
"DisplayActions",
|
|
24620
|
-
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\
|
|
24620
|
+
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\nreturn: Seems to be true if there were any pending actions to display.",
|
|
24621
24621
|
None,
|
|
24622
24622
|
)
|
|
24623
24623
|
|
|
@@ -26624,7 +26624,7 @@ class JpItcmOverlay29Functions:
|
|
|
26624
26624
|
None,
|
|
26625
26625
|
None,
|
|
26626
26626
|
"MoveHitCheck",
|
|
26627
|
-
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\
|
|
26627
|
+
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\nreturn: True if the move hits, false if it misses.",
|
|
26628
26628
|
None,
|
|
26629
26629
|
)
|
|
26630
26630
|
|
|
@@ -26678,7 +26678,7 @@ class JpItcmOverlay29Functions:
|
|
|
26678
26678
|
None,
|
|
26679
26679
|
None,
|
|
26680
26680
|
"DungeonRandOutcomeUserTargetInteraction",
|
|
26681
|
-
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
26681
|
+
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
26682
26682
|
None,
|
|
26683
26683
|
)
|
|
26684
26684
|
|
|
@@ -26687,7 +26687,7 @@ class JpItcmOverlay29Functions:
|
|
|
26687
26687
|
None,
|
|
26688
26688
|
None,
|
|
26689
26689
|
"DungeonRandOutcomeUserAction",
|
|
26690
|
-
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
26690
|
+
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
26691
26691
|
None,
|
|
26692
26692
|
)
|
|
26693
26693
|
|
pmdsky_debug_py/na.py
CHANGED
|
@@ -22677,7 +22677,7 @@ class NaOverlay29Functions:
|
|
|
22677
22677
|
[0x22E1628],
|
|
22678
22678
|
None,
|
|
22679
22679
|
"GetTileAtEntity",
|
|
22680
|
-
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\
|
|
22680
|
+
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\nreturn: pointer to tile",
|
|
22681
22681
|
None,
|
|
22682
22682
|
)
|
|
22683
22683
|
|
|
@@ -24659,7 +24659,7 @@ class NaOverlay29Functions:
|
|
|
24659
24659
|
[0x22FFF5C],
|
|
24660
24660
|
None,
|
|
24661
24661
|
"GetNumberOfAttacks",
|
|
24662
|
-
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\
|
|
24662
|
+
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\nreturn: int",
|
|
24663
24663
|
None,
|
|
24664
24664
|
)
|
|
24665
24665
|
|
|
@@ -25190,7 +25190,7 @@ class NaOverlay29Functions:
|
|
|
25190
25190
|
[0x2304FE0],
|
|
25191
25191
|
None,
|
|
25192
25192
|
"DisplayActions",
|
|
25193
|
-
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\
|
|
25193
|
+
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\nreturn: Seems to be true if there were any pending actions to display.",
|
|
25194
25194
|
None,
|
|
25195
25195
|
)
|
|
25196
25196
|
|
|
@@ -27197,7 +27197,7 @@ class NaOverlay29Functions:
|
|
|
27197
27197
|
[0x2323C48],
|
|
27198
27198
|
None,
|
|
27199
27199
|
"MoveHitCheck",
|
|
27200
|
-
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\
|
|
27200
|
+
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\nreturn: True if the move hits, false if it misses.",
|
|
27201
27201
|
None,
|
|
27202
27202
|
)
|
|
27203
27203
|
|
|
@@ -27251,7 +27251,7 @@ class NaOverlay29Functions:
|
|
|
27251
27251
|
[0x2324934],
|
|
27252
27252
|
None,
|
|
27253
27253
|
"DungeonRandOutcomeUserTargetInteraction",
|
|
27254
|
-
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
27254
|
+
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
27255
27255
|
None,
|
|
27256
27256
|
)
|
|
27257
27257
|
|
|
@@ -27260,7 +27260,7 @@ class NaOverlay29Functions:
|
|
|
27260
27260
|
[0x2324A20],
|
|
27261
27261
|
None,
|
|
27262
27262
|
"DungeonRandOutcomeUserAction",
|
|
27263
|
-
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
27263
|
+
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
27264
27264
|
None,
|
|
27265
27265
|
)
|
|
27266
27266
|
|
pmdsky_debug_py/na_itcm.py
CHANGED
|
@@ -22178,7 +22178,7 @@ class NaItcmOverlay29Functions:
|
|
|
22178
22178
|
None,
|
|
22179
22179
|
None,
|
|
22180
22180
|
"GetTileAtEntity",
|
|
22181
|
-
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\
|
|
22181
|
+
"Returns a pointer to the tile where an entity is located.\n\nr0: pointer to entity\nreturn: pointer to tile",
|
|
22182
22182
|
None,
|
|
22183
22183
|
)
|
|
22184
22184
|
|
|
@@ -24086,7 +24086,7 @@ class NaItcmOverlay29Functions:
|
|
|
24086
24086
|
None,
|
|
24087
24087
|
None,
|
|
24088
24088
|
"GetNumberOfAttacks",
|
|
24089
|
-
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\
|
|
24089
|
+
"Returns the number of attacks that a monster can do in one turn (1 or 2).\n\nChecks for the abilities Swift Swim, Chlorophyll, Unburden, and for exclusive items.\n\nr0: pointer to entity\nreturn: int",
|
|
24090
24090
|
None,
|
|
24091
24091
|
)
|
|
24092
24092
|
|
|
@@ -24617,7 +24617,7 @@ class NaItcmOverlay29Functions:
|
|
|
24617
24617
|
None,
|
|
24618
24618
|
None,
|
|
24619
24619
|
"DisplayActions",
|
|
24620
|
-
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\
|
|
24620
|
+
"Graphically displays any pending actions that have happened but haven't been shown on screen yet. All actions are displayed at the same time. For example, this delayed display system is used to display multiple monsters moving at once even though they take turns sequentially.\n\nr0: Pointer to an entity. Can be null.\nreturn: Seems to be true if there were any pending actions to display.",
|
|
24621
24621
|
None,
|
|
24622
24622
|
)
|
|
24623
24623
|
|
|
@@ -26624,7 +26624,7 @@ class NaItcmOverlay29Functions:
|
|
|
26624
26624
|
None,
|
|
26625
26625
|
None,
|
|
26626
26626
|
"MoveHitCheck",
|
|
26627
|
-
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\
|
|
26627
|
+
"Determines if a move used hits or misses the target. It gets called twice per target, once with r3 = false and a second time with r3 = true.\n\nr0: Attacker\nr1: Defender\nr2: Pointer to move data\nr3: False if the move's first accuracy (accuracy1) should be used, true if its second accuracy (accuracy2) should be used instead.\nstack[0]: If true, always hit if the attacker and defender are the same. Otherwise, moves can miss no matter what the attacker and defender are.\nreturn: True if the move hits, false if it misses.",
|
|
26628
26628
|
None,
|
|
26629
26629
|
)
|
|
26630
26630
|
|
|
@@ -26678,7 +26678,7 @@ class NaItcmOverlay29Functions:
|
|
|
26678
26678
|
None,
|
|
26679
26679
|
None,
|
|
26680
26680
|
"DungeonRandOutcomeUserTargetInteraction",
|
|
26681
|
-
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
26681
|
+
"Like DungeonRandOutcome, but specifically for user-target interactions.\n\nThis modifies the underlying random process depending on factors like Serene Grace, and whether or not either entity has fainted.\n\nr0: user entity pointer\nr1: target entity pointer\nr2: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
26682
26682
|
None,
|
|
26683
26683
|
)
|
|
26684
26684
|
|
|
@@ -26687,7 +26687,7 @@ class NaItcmOverlay29Functions:
|
|
|
26687
26687
|
None,
|
|
26688
26688
|
None,
|
|
26689
26689
|
"DungeonRandOutcomeUserAction",
|
|
26690
|
-
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\
|
|
26690
|
+
"Like DungeonRandOutcome, but specifically for user actions.\n\nThis modifies the underlying random process to factor in Serene Grace (and checks whether the user is a valid entity).\n\nr0: entity pointer\nr1: base success percentage (100*p). 0 is treated specially and guarantees success.\nreturn: True if the random check passed, false otherwise.",
|
|
26691
26691
|
None,
|
|
26692
26692
|
)
|
|
26693
26693
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
+
pmdsky_debug_py/_release.py,sha256=O22nQ0OJShq0SI6Vl1pzC7roH_igvXnihkXZAODWhdM,31
|
|
3
|
+
pmdsky_debug_py/eu.py,sha256=q8Rb55CweDOVVLFm28BCGW8VaYdVBxdA8FKU5LWVBw4,1120423
|
|
4
|
+
pmdsky_debug_py/eu_itcm.py,sha256=kUvGq_fMaOSA5PipJUiF8c-JjLrNwtGI99BVUv5XGoY,1070070
|
|
5
|
+
pmdsky_debug_py/jp.py,sha256=RUbr9Rbo5XU3FErtFMr0FfOcMS1ND2UTJLFSrg_LXIQ,1116834
|
|
6
|
+
pmdsky_debug_py/jp_itcm.py,sha256=84yDsGwXwR-HyiLvDVj4Vhd4HQ4Ie4Op2YlTtZSM_P8,1070060
|
|
7
|
+
pmdsky_debug_py/na.py,sha256=cZ9Q39m7TFYEhI2wSFGcNmkm25U0BPfAhJrdV8afLYY,1121367
|
|
8
|
+
pmdsky_debug_py/na_itcm.py,sha256=phF7ibVVNsb2NNJfBsrmICPyStQn4MhFjjvIbAGaz3U,1070070
|
|
9
|
+
pmdsky_debug_py/protocol.py,sha256=UGuZd9vsuEL8FKU8yxvhVDAlBDejHmek8oBTIRKQtCU,329578
|
|
10
|
+
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pmdsky_debug_py-10.0.47.dist-info/METADATA,sha256=LVIEtywhl9WQIaq0fA2K7kkRO2K6VE7trJqqi5FBdF8,1374
|
|
12
|
+
pmdsky_debug_py-10.0.47.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
13
|
+
pmdsky_debug_py-10.0.47.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
+
pmdsky_debug_py-10.0.47.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
-
pmdsky_debug_py/_release.py,sha256=oz0M5jann6aatrveo9uh7DVgorPBL3nh1vXW7L6KZM4,31
|
|
3
|
-
pmdsky_debug_py/eu.py,sha256=k4qKcikrjhhDtjXaijHz3w-6MSwphwsL0DZPzx-xZYk,1120429
|
|
4
|
-
pmdsky_debug_py/eu_itcm.py,sha256=1FTK7w0QYfHxEvQbLeL0tZMQkloGDWEWlm_FTtwHNO8,1070076
|
|
5
|
-
pmdsky_debug_py/jp.py,sha256=8W2RnV0W6UuCjahYBfnA-jAzHK-OTgm_yzik3yhM1SE,1116840
|
|
6
|
-
pmdsky_debug_py/jp_itcm.py,sha256=nRXpdXZE4k2gY4p-sUNqpkZ2wHXls3cLWUiAqGdcPlg,1070066
|
|
7
|
-
pmdsky_debug_py/na.py,sha256=0D_Fk6mknbMHV4W2ldKrTnjHYZQ_0mhoqQBOVKKy86U,1121373
|
|
8
|
-
pmdsky_debug_py/na_itcm.py,sha256=6O5IHYMFAVo0tC7X4qJxzv3WKdHsQGa5e5O9_RSkme0,1070076
|
|
9
|
-
pmdsky_debug_py/protocol.py,sha256=UGuZd9vsuEL8FKU8yxvhVDAlBDejHmek8oBTIRKQtCU,329578
|
|
10
|
-
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pmdsky_debug_py-10.0.46.dist-info/METADATA,sha256=VEdlfUBR8VrHf6s2LAEPiu-hxjn3Ki-Ic-IJNAFMYN8,1374
|
|
12
|
-
pmdsky_debug_py-10.0.46.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
13
|
-
pmdsky_debug_py-10.0.46.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
-
pmdsky_debug_py-10.0.46.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|