pmdsky-debug-py 10.0.26__py3-none-any.whl → 10.0.28__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 +57 -3
- pmdsky_debug_py/eu_itcm.py +57 -3
- pmdsky_debug_py/jp.py +57 -3
- pmdsky_debug_py/jp_itcm.py +57 -3
- pmdsky_debug_py/na.py +57 -3
- pmdsky_debug_py/na_itcm.py +57 -3
- pmdsky_debug_py/protocol.py +31 -1
- {pmdsky_debug_py-10.0.26.dist-info → pmdsky_debug_py-10.0.28.dist-info}/METADATA +1 -1
- pmdsky_debug_py-10.0.28.dist-info/RECORD +14 -0
- {pmdsky_debug_py-10.0.26.dist-info → pmdsky_debug_py-10.0.28.dist-info}/WHEEL +1 -1
- pmdsky_debug_py-10.0.26.dist-info/RECORD +0 -14
- {pmdsky_debug_py-10.0.26.dist-info → pmdsky_debug_py-10.0.28.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+a326c83e2e"
|
pmdsky_debug_py/eu.py
CHANGED
|
@@ -25439,6 +25439,15 @@ class EuOverlay29Functions:
|
|
|
25439
25439
|
None,
|
|
25440
25440
|
)
|
|
25441
25441
|
|
|
25442
|
+
GetExclusiveItemWithEffectFromBag = Symbol(
|
|
25443
|
+
[0x33548],
|
|
25444
|
+
[0x23100C8],
|
|
25445
|
+
None,
|
|
25446
|
+
"GetExclusiveItemWithEffectFromBag",
|
|
25447
|
+
"If an exclusive item with a certain effect is present in the bag and works for the entity, returns true and copies the item struct to the address at item. Otherwise, returns false.\n\nr0: Entity pointer\nr1: exclusive_item_effect_id enum\nr2: [output] Item pointer\nreturn: bool",
|
|
25448
|
+
None,
|
|
25449
|
+
)
|
|
25450
|
+
|
|
25442
25451
|
AuraBowIsActive = Symbol(
|
|
25443
25452
|
[0x335BC],
|
|
25444
25453
|
[0x231013C],
|
|
@@ -27176,6 +27185,15 @@ class EuOverlay29Functions:
|
|
|
27176
27185
|
None,
|
|
27177
27186
|
)
|
|
27178
27187
|
|
|
27188
|
+
CanHitWithRegularAttack = Symbol(
|
|
27189
|
+
[0x56E88],
|
|
27190
|
+
[0x2333A08],
|
|
27191
|
+
None,
|
|
27192
|
+
"CanHitWithRegularAttack",
|
|
27193
|
+
"Returns true if the defender is adjacent to the attacker and can hit them with a regular attack.\nNotably, this check is what prevents ranged moves, moves that cut corners, etc. from being reflected by Magic Coat and Mirror Move.\n\nr0: Entity pointer (attacker)\nr1: Entity pointer (defender)\nreturn: bool",
|
|
27194
|
+
None,
|
|
27195
|
+
)
|
|
27196
|
+
|
|
27179
27197
|
StatusCheckerCheck = Symbol(
|
|
27180
27198
|
[0x56F34],
|
|
27181
27199
|
[0x2333AB4],
|
|
@@ -27608,6 +27626,15 @@ class EuOverlay29Functions:
|
|
|
27608
27626
|
None,
|
|
27609
27627
|
)
|
|
27610
27628
|
|
|
27629
|
+
PositionIsOnHiddenStairs = Symbol(
|
|
27630
|
+
[0x5C758],
|
|
27631
|
+
[0x23392D8],
|
|
27632
|
+
None,
|
|
27633
|
+
"PositionIsOnHiddenStairs",
|
|
27634
|
+
"Checks if this location is on top of the hidden stairs.\n\nr0: position pointer\nreturn: bool",
|
|
27635
|
+
None,
|
|
27636
|
+
)
|
|
27637
|
+
|
|
27611
27638
|
HiddenStairsTrigger = Symbol(
|
|
27612
27639
|
[0x5C7E4],
|
|
27613
27640
|
[0x2339364],
|
|
@@ -27617,12 +27644,39 @@ class EuOverlay29Functions:
|
|
|
27617
27644
|
None,
|
|
27618
27645
|
)
|
|
27619
27646
|
|
|
27620
|
-
|
|
27647
|
+
GetHiddenStairsField = Symbol(
|
|
27648
|
+
[0x5C8A0],
|
|
27649
|
+
[0x2339420],
|
|
27650
|
+
None,
|
|
27651
|
+
"GetHiddenStairsField",
|
|
27652
|
+
"Gets the hidden_stairs_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27653
|
+
None,
|
|
27654
|
+
)
|
|
27655
|
+
|
|
27656
|
+
SetHiddenStairsField = Symbol(
|
|
27657
|
+
[0x5C8B8],
|
|
27658
|
+
[0x2339438],
|
|
27659
|
+
None,
|
|
27660
|
+
"SetHiddenStairsField",
|
|
27661
|
+
"Sets the hidden_stairs_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27662
|
+
None,
|
|
27663
|
+
)
|
|
27664
|
+
|
|
27665
|
+
GetHiddenFloorField = Symbol(
|
|
27621
27666
|
[0x5C8D0],
|
|
27622
27667
|
[0x2339450],
|
|
27623
27668
|
None,
|
|
27624
|
-
"
|
|
27625
|
-
"
|
|
27669
|
+
"GetHiddenFloorField",
|
|
27670
|
+
"Gets the hidden_floor_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27671
|
+
None,
|
|
27672
|
+
)
|
|
27673
|
+
|
|
27674
|
+
SetHiddenFloorField = Symbol(
|
|
27675
|
+
[0x5C8E8],
|
|
27676
|
+
[0x2339468],
|
|
27677
|
+
None,
|
|
27678
|
+
"SetHiddenFloorField",
|
|
27679
|
+
"Sets the hidden_floor_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27626
27680
|
None,
|
|
27627
27681
|
)
|
|
27628
27682
|
|
pmdsky_debug_py/eu_itcm.py
CHANGED
|
@@ -24864,6 +24864,15 @@ class EuItcmOverlay29Functions:
|
|
|
24864
24864
|
None,
|
|
24865
24865
|
)
|
|
24866
24866
|
|
|
24867
|
+
GetExclusiveItemWithEffectFromBag = Symbol(
|
|
24868
|
+
None,
|
|
24869
|
+
None,
|
|
24870
|
+
None,
|
|
24871
|
+
"GetExclusiveItemWithEffectFromBag",
|
|
24872
|
+
"If an exclusive item with a certain effect is present in the bag and works for the entity, returns true and copies the item struct to the address at item. Otherwise, returns false.\n\nr0: Entity pointer\nr1: exclusive_item_effect_id enum\nr2: [output] Item pointer\nreturn: bool",
|
|
24873
|
+
None,
|
|
24874
|
+
)
|
|
24875
|
+
|
|
24867
24876
|
AuraBowIsActive = Symbol(
|
|
24868
24877
|
None,
|
|
24869
24878
|
None,
|
|
@@ -26601,6 +26610,15 @@ class EuItcmOverlay29Functions:
|
|
|
26601
26610
|
None,
|
|
26602
26611
|
)
|
|
26603
26612
|
|
|
26613
|
+
CanHitWithRegularAttack = Symbol(
|
|
26614
|
+
None,
|
|
26615
|
+
None,
|
|
26616
|
+
None,
|
|
26617
|
+
"CanHitWithRegularAttack",
|
|
26618
|
+
"Returns true if the defender is adjacent to the attacker and can hit them with a regular attack.\nNotably, this check is what prevents ranged moves, moves that cut corners, etc. from being reflected by Magic Coat and Mirror Move.\n\nr0: Entity pointer (attacker)\nr1: Entity pointer (defender)\nreturn: bool",
|
|
26619
|
+
None,
|
|
26620
|
+
)
|
|
26621
|
+
|
|
26604
26622
|
StatusCheckerCheck = Symbol(
|
|
26605
26623
|
None,
|
|
26606
26624
|
None,
|
|
@@ -27033,6 +27051,15 @@ class EuItcmOverlay29Functions:
|
|
|
27033
27051
|
None,
|
|
27034
27052
|
)
|
|
27035
27053
|
|
|
27054
|
+
PositionIsOnHiddenStairs = Symbol(
|
|
27055
|
+
None,
|
|
27056
|
+
None,
|
|
27057
|
+
None,
|
|
27058
|
+
"PositionIsOnHiddenStairs",
|
|
27059
|
+
"Checks if this location is on top of the hidden stairs.\n\nr0: position pointer\nreturn: bool",
|
|
27060
|
+
None,
|
|
27061
|
+
)
|
|
27062
|
+
|
|
27036
27063
|
HiddenStairsTrigger = Symbol(
|
|
27037
27064
|
None,
|
|
27038
27065
|
None,
|
|
@@ -27042,12 +27069,39 @@ class EuItcmOverlay29Functions:
|
|
|
27042
27069
|
None,
|
|
27043
27070
|
)
|
|
27044
27071
|
|
|
27045
|
-
|
|
27072
|
+
GetHiddenStairsField = Symbol(
|
|
27073
|
+
None,
|
|
27074
|
+
None,
|
|
27075
|
+
None,
|
|
27076
|
+
"GetHiddenStairsField",
|
|
27077
|
+
"Gets the hidden_stairs_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27078
|
+
None,
|
|
27079
|
+
)
|
|
27080
|
+
|
|
27081
|
+
SetHiddenStairsField = Symbol(
|
|
27082
|
+
None,
|
|
27083
|
+
None,
|
|
27084
|
+
None,
|
|
27085
|
+
"SetHiddenStairsField",
|
|
27086
|
+
"Sets the hidden_stairs_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27087
|
+
None,
|
|
27088
|
+
)
|
|
27089
|
+
|
|
27090
|
+
GetHiddenFloorField = Symbol(
|
|
27091
|
+
None,
|
|
27092
|
+
None,
|
|
27093
|
+
None,
|
|
27094
|
+
"GetHiddenFloorField",
|
|
27095
|
+
"Gets the hidden_floor_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27096
|
+
None,
|
|
27097
|
+
)
|
|
27098
|
+
|
|
27099
|
+
SetHiddenFloorField = Symbol(
|
|
27046
27100
|
None,
|
|
27047
27101
|
None,
|
|
27048
27102
|
None,
|
|
27049
|
-
"
|
|
27050
|
-
"
|
|
27103
|
+
"SetHiddenFloorField",
|
|
27104
|
+
"Sets the hidden_floor_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27051
27105
|
None,
|
|
27052
27106
|
)
|
|
27053
27107
|
|
pmdsky_debug_py/jp.py
CHANGED
|
@@ -25430,6 +25430,15 @@ class JpOverlay29Functions:
|
|
|
25430
25430
|
None,
|
|
25431
25431
|
)
|
|
25432
25432
|
|
|
25433
|
+
GetExclusiveItemWithEffectFromBag = Symbol(
|
|
25434
|
+
[0x332B0],
|
|
25435
|
+
[0x2310B90],
|
|
25436
|
+
None,
|
|
25437
|
+
"GetExclusiveItemWithEffectFromBag",
|
|
25438
|
+
"If an exclusive item with a certain effect is present in the bag and works for the entity, returns true and copies the item struct to the address at item. Otherwise, returns false.\n\nr0: Entity pointer\nr1: exclusive_item_effect_id enum\nr2: [output] Item pointer\nreturn: bool",
|
|
25439
|
+
None,
|
|
25440
|
+
)
|
|
25441
|
+
|
|
25433
25442
|
AuraBowIsActive = Symbol(
|
|
25434
25443
|
[0x33324],
|
|
25435
25444
|
[0x2310C04],
|
|
@@ -27167,6 +27176,15 @@ class JpOverlay29Functions:
|
|
|
27167
27176
|
None,
|
|
27168
27177
|
)
|
|
27169
27178
|
|
|
27179
|
+
CanHitWithRegularAttack = Symbol(
|
|
27180
|
+
[0x56AD4],
|
|
27181
|
+
[0x23343B4],
|
|
27182
|
+
None,
|
|
27183
|
+
"CanHitWithRegularAttack",
|
|
27184
|
+
"Returns true if the defender is adjacent to the attacker and can hit them with a regular attack.\nNotably, this check is what prevents ranged moves, moves that cut corners, etc. from being reflected by Magic Coat and Mirror Move.\n\nr0: Entity pointer (attacker)\nr1: Entity pointer (defender)\nreturn: bool",
|
|
27185
|
+
None,
|
|
27186
|
+
)
|
|
27187
|
+
|
|
27170
27188
|
StatusCheckerCheck = Symbol(
|
|
27171
27189
|
[0x56B80],
|
|
27172
27190
|
[0x2334460],
|
|
@@ -27599,6 +27617,15 @@ class JpOverlay29Functions:
|
|
|
27599
27617
|
None,
|
|
27600
27618
|
)
|
|
27601
27619
|
|
|
27620
|
+
PositionIsOnHiddenStairs = Symbol(
|
|
27621
|
+
None,
|
|
27622
|
+
None,
|
|
27623
|
+
None,
|
|
27624
|
+
"PositionIsOnHiddenStairs",
|
|
27625
|
+
"Checks if this location is on top of the hidden stairs.\n\nr0: position pointer\nreturn: bool",
|
|
27626
|
+
None,
|
|
27627
|
+
)
|
|
27628
|
+
|
|
27602
27629
|
HiddenStairsTrigger = Symbol(
|
|
27603
27630
|
[0x5C278],
|
|
27604
27631
|
[0x2339B58],
|
|
@@ -27608,12 +27635,39 @@ class JpOverlay29Functions:
|
|
|
27608
27635
|
None,
|
|
27609
27636
|
)
|
|
27610
27637
|
|
|
27611
|
-
|
|
27638
|
+
GetHiddenStairsField = Symbol(
|
|
27639
|
+
None,
|
|
27640
|
+
None,
|
|
27641
|
+
None,
|
|
27642
|
+
"GetHiddenStairsField",
|
|
27643
|
+
"Gets the hidden_stairs_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27644
|
+
None,
|
|
27645
|
+
)
|
|
27646
|
+
|
|
27647
|
+
SetHiddenStairsField = Symbol(
|
|
27648
|
+
None,
|
|
27649
|
+
None,
|
|
27650
|
+
None,
|
|
27651
|
+
"SetHiddenStairsField",
|
|
27652
|
+
"Sets the hidden_stairs_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27653
|
+
None,
|
|
27654
|
+
)
|
|
27655
|
+
|
|
27656
|
+
GetHiddenFloorField = Symbol(
|
|
27612
27657
|
[0x5C364],
|
|
27613
27658
|
[0x2339C44],
|
|
27614
27659
|
None,
|
|
27615
|
-
"
|
|
27616
|
-
"
|
|
27660
|
+
"GetHiddenFloorField",
|
|
27661
|
+
"Gets the hidden_floor_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27662
|
+
None,
|
|
27663
|
+
)
|
|
27664
|
+
|
|
27665
|
+
SetHiddenFloorField = Symbol(
|
|
27666
|
+
None,
|
|
27667
|
+
None,
|
|
27668
|
+
None,
|
|
27669
|
+
"SetHiddenFloorField",
|
|
27670
|
+
"Sets the hidden_floor_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27617
27671
|
None,
|
|
27618
27672
|
)
|
|
27619
27673
|
|
pmdsky_debug_py/jp_itcm.py
CHANGED
|
@@ -24864,6 +24864,15 @@ class JpItcmOverlay29Functions:
|
|
|
24864
24864
|
None,
|
|
24865
24865
|
)
|
|
24866
24866
|
|
|
24867
|
+
GetExclusiveItemWithEffectFromBag = Symbol(
|
|
24868
|
+
None,
|
|
24869
|
+
None,
|
|
24870
|
+
None,
|
|
24871
|
+
"GetExclusiveItemWithEffectFromBag",
|
|
24872
|
+
"If an exclusive item with a certain effect is present in the bag and works for the entity, returns true and copies the item struct to the address at item. Otherwise, returns false.\n\nr0: Entity pointer\nr1: exclusive_item_effect_id enum\nr2: [output] Item pointer\nreturn: bool",
|
|
24873
|
+
None,
|
|
24874
|
+
)
|
|
24875
|
+
|
|
24867
24876
|
AuraBowIsActive = Symbol(
|
|
24868
24877
|
None,
|
|
24869
24878
|
None,
|
|
@@ -26601,6 +26610,15 @@ class JpItcmOverlay29Functions:
|
|
|
26601
26610
|
None,
|
|
26602
26611
|
)
|
|
26603
26612
|
|
|
26613
|
+
CanHitWithRegularAttack = Symbol(
|
|
26614
|
+
None,
|
|
26615
|
+
None,
|
|
26616
|
+
None,
|
|
26617
|
+
"CanHitWithRegularAttack",
|
|
26618
|
+
"Returns true if the defender is adjacent to the attacker and can hit them with a regular attack.\nNotably, this check is what prevents ranged moves, moves that cut corners, etc. from being reflected by Magic Coat and Mirror Move.\n\nr0: Entity pointer (attacker)\nr1: Entity pointer (defender)\nreturn: bool",
|
|
26619
|
+
None,
|
|
26620
|
+
)
|
|
26621
|
+
|
|
26604
26622
|
StatusCheckerCheck = Symbol(
|
|
26605
26623
|
None,
|
|
26606
26624
|
None,
|
|
@@ -27033,6 +27051,15 @@ class JpItcmOverlay29Functions:
|
|
|
27033
27051
|
None,
|
|
27034
27052
|
)
|
|
27035
27053
|
|
|
27054
|
+
PositionIsOnHiddenStairs = Symbol(
|
|
27055
|
+
None,
|
|
27056
|
+
None,
|
|
27057
|
+
None,
|
|
27058
|
+
"PositionIsOnHiddenStairs",
|
|
27059
|
+
"Checks if this location is on top of the hidden stairs.\n\nr0: position pointer\nreturn: bool",
|
|
27060
|
+
None,
|
|
27061
|
+
)
|
|
27062
|
+
|
|
27036
27063
|
HiddenStairsTrigger = Symbol(
|
|
27037
27064
|
None,
|
|
27038
27065
|
None,
|
|
@@ -27042,12 +27069,39 @@ class JpItcmOverlay29Functions:
|
|
|
27042
27069
|
None,
|
|
27043
27070
|
)
|
|
27044
27071
|
|
|
27045
|
-
|
|
27072
|
+
GetHiddenStairsField = Symbol(
|
|
27073
|
+
None,
|
|
27074
|
+
None,
|
|
27075
|
+
None,
|
|
27076
|
+
"GetHiddenStairsField",
|
|
27077
|
+
"Gets the hidden_stairs_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27078
|
+
None,
|
|
27079
|
+
)
|
|
27080
|
+
|
|
27081
|
+
SetHiddenStairsField = Symbol(
|
|
27082
|
+
None,
|
|
27083
|
+
None,
|
|
27084
|
+
None,
|
|
27085
|
+
"SetHiddenStairsField",
|
|
27086
|
+
"Sets the hidden_stairs_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27087
|
+
None,
|
|
27088
|
+
)
|
|
27089
|
+
|
|
27090
|
+
GetHiddenFloorField = Symbol(
|
|
27091
|
+
None,
|
|
27092
|
+
None,
|
|
27093
|
+
None,
|
|
27094
|
+
"GetHiddenFloorField",
|
|
27095
|
+
"Gets the hidden_floor_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27096
|
+
None,
|
|
27097
|
+
)
|
|
27098
|
+
|
|
27099
|
+
SetHiddenFloorField = Symbol(
|
|
27046
27100
|
None,
|
|
27047
27101
|
None,
|
|
27048
27102
|
None,
|
|
27049
|
-
"
|
|
27050
|
-
"
|
|
27103
|
+
"SetHiddenFloorField",
|
|
27104
|
+
"Sets the hidden_floor_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27051
27105
|
None,
|
|
27052
27106
|
)
|
|
27053
27107
|
|
pmdsky_debug_py/na.py
CHANGED
|
@@ -25437,6 +25437,15 @@ class NaOverlay29Functions:
|
|
|
25437
25437
|
None,
|
|
25438
25438
|
)
|
|
25439
25439
|
|
|
25440
|
+
GetExclusiveItemWithEffectFromBag = Symbol(
|
|
25441
|
+
[0x33414],
|
|
25442
|
+
[0x230F654],
|
|
25443
|
+
None,
|
|
25444
|
+
"GetExclusiveItemWithEffectFromBag",
|
|
25445
|
+
"If an exclusive item with a certain effect is present in the bag and works for the entity, returns true and copies the item struct to the address at item. Otherwise, returns false.\n\nr0: Entity pointer\nr1: exclusive_item_effect_id enum\nr2: [output] Item pointer\nreturn: bool",
|
|
25446
|
+
None,
|
|
25447
|
+
)
|
|
25448
|
+
|
|
25440
25449
|
AuraBowIsActive = Symbol(
|
|
25441
25450
|
[0x33488],
|
|
25442
25451
|
[0x230F6C8],
|
|
@@ -27174,6 +27183,15 @@ class NaOverlay29Functions:
|
|
|
27174
27183
|
None,
|
|
27175
27184
|
)
|
|
27176
27185
|
|
|
27186
|
+
CanHitWithRegularAttack = Symbol(
|
|
27187
|
+
[0x56D88],
|
|
27188
|
+
[0x2332FC8],
|
|
27189
|
+
None,
|
|
27190
|
+
"CanHitWithRegularAttack",
|
|
27191
|
+
"Returns true if the defender is adjacent to the attacker and can hit them with a regular attack.\nNotably, this check is what prevents ranged moves, moves that cut corners, etc. from being reflected by Magic Coat and Mirror Move.\n\nr0: Entity pointer (attacker)\nr1: Entity pointer (defender)\nreturn: bool",
|
|
27192
|
+
None,
|
|
27193
|
+
)
|
|
27194
|
+
|
|
27177
27195
|
StatusCheckerCheck = Symbol(
|
|
27178
27196
|
[0x56E34],
|
|
27179
27197
|
[0x2333074],
|
|
@@ -27606,6 +27624,15 @@ class NaOverlay29Functions:
|
|
|
27606
27624
|
None,
|
|
27607
27625
|
)
|
|
27608
27626
|
|
|
27627
|
+
PositionIsOnHiddenStairs = Symbol(
|
|
27628
|
+
None,
|
|
27629
|
+
None,
|
|
27630
|
+
None,
|
|
27631
|
+
"PositionIsOnHiddenStairs",
|
|
27632
|
+
"Checks if this location is on top of the hidden stairs.\n\nr0: position pointer\nreturn: bool",
|
|
27633
|
+
None,
|
|
27634
|
+
)
|
|
27635
|
+
|
|
27609
27636
|
HiddenStairsTrigger = Symbol(
|
|
27610
27637
|
[0x5C554],
|
|
27611
27638
|
[0x2338794],
|
|
@@ -27615,12 +27642,39 @@ class NaOverlay29Functions:
|
|
|
27615
27642
|
None,
|
|
27616
27643
|
)
|
|
27617
27644
|
|
|
27618
|
-
|
|
27645
|
+
GetHiddenStairsField = Symbol(
|
|
27646
|
+
None,
|
|
27647
|
+
None,
|
|
27648
|
+
None,
|
|
27649
|
+
"GetHiddenStairsField",
|
|
27650
|
+
"Gets the hidden_stairs_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27651
|
+
None,
|
|
27652
|
+
)
|
|
27653
|
+
|
|
27654
|
+
SetHiddenStairsField = Symbol(
|
|
27655
|
+
None,
|
|
27656
|
+
None,
|
|
27657
|
+
None,
|
|
27658
|
+
"SetHiddenStairsField",
|
|
27659
|
+
"Sets the hidden_stairs_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27660
|
+
None,
|
|
27661
|
+
)
|
|
27662
|
+
|
|
27663
|
+
GetHiddenFloorField = Symbol(
|
|
27619
27664
|
[0x5C640],
|
|
27620
27665
|
[0x2338880],
|
|
27621
27666
|
None,
|
|
27622
|
-
"
|
|
27623
|
-
"
|
|
27667
|
+
"GetHiddenFloorField",
|
|
27668
|
+
"Gets the hidden_floor_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27669
|
+
None,
|
|
27670
|
+
)
|
|
27671
|
+
|
|
27672
|
+
SetHiddenFloorField = Symbol(
|
|
27673
|
+
None,
|
|
27674
|
+
None,
|
|
27675
|
+
None,
|
|
27676
|
+
"SetHiddenFloorField",
|
|
27677
|
+
"Sets the hidden_floor_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27624
27678
|
None,
|
|
27625
27679
|
)
|
|
27626
27680
|
|
pmdsky_debug_py/na_itcm.py
CHANGED
|
@@ -24864,6 +24864,15 @@ class NaItcmOverlay29Functions:
|
|
|
24864
24864
|
None,
|
|
24865
24865
|
)
|
|
24866
24866
|
|
|
24867
|
+
GetExclusiveItemWithEffectFromBag = Symbol(
|
|
24868
|
+
None,
|
|
24869
|
+
None,
|
|
24870
|
+
None,
|
|
24871
|
+
"GetExclusiveItemWithEffectFromBag",
|
|
24872
|
+
"If an exclusive item with a certain effect is present in the bag and works for the entity, returns true and copies the item struct to the address at item. Otherwise, returns false.\n\nr0: Entity pointer\nr1: exclusive_item_effect_id enum\nr2: [output] Item pointer\nreturn: bool",
|
|
24873
|
+
None,
|
|
24874
|
+
)
|
|
24875
|
+
|
|
24867
24876
|
AuraBowIsActive = Symbol(
|
|
24868
24877
|
None,
|
|
24869
24878
|
None,
|
|
@@ -26601,6 +26610,15 @@ class NaItcmOverlay29Functions:
|
|
|
26601
26610
|
None,
|
|
26602
26611
|
)
|
|
26603
26612
|
|
|
26613
|
+
CanHitWithRegularAttack = Symbol(
|
|
26614
|
+
None,
|
|
26615
|
+
None,
|
|
26616
|
+
None,
|
|
26617
|
+
"CanHitWithRegularAttack",
|
|
26618
|
+
"Returns true if the defender is adjacent to the attacker and can hit them with a regular attack.\nNotably, this check is what prevents ranged moves, moves that cut corners, etc. from being reflected by Magic Coat and Mirror Move.\n\nr0: Entity pointer (attacker)\nr1: Entity pointer (defender)\nreturn: bool",
|
|
26619
|
+
None,
|
|
26620
|
+
)
|
|
26621
|
+
|
|
26604
26622
|
StatusCheckerCheck = Symbol(
|
|
26605
26623
|
None,
|
|
26606
26624
|
None,
|
|
@@ -27033,6 +27051,15 @@ class NaItcmOverlay29Functions:
|
|
|
27033
27051
|
None,
|
|
27034
27052
|
)
|
|
27035
27053
|
|
|
27054
|
+
PositionIsOnHiddenStairs = Symbol(
|
|
27055
|
+
None,
|
|
27056
|
+
None,
|
|
27057
|
+
None,
|
|
27058
|
+
"PositionIsOnHiddenStairs",
|
|
27059
|
+
"Checks if this location is on top of the hidden stairs.\n\nr0: position pointer\nreturn: bool",
|
|
27060
|
+
None,
|
|
27061
|
+
)
|
|
27062
|
+
|
|
27036
27063
|
HiddenStairsTrigger = Symbol(
|
|
27037
27064
|
None,
|
|
27038
27065
|
None,
|
|
@@ -27042,12 +27069,39 @@ class NaItcmOverlay29Functions:
|
|
|
27042
27069
|
None,
|
|
27043
27070
|
)
|
|
27044
27071
|
|
|
27045
|
-
|
|
27072
|
+
GetHiddenStairsField = Symbol(
|
|
27073
|
+
None,
|
|
27074
|
+
None,
|
|
27075
|
+
None,
|
|
27076
|
+
"GetHiddenStairsField",
|
|
27077
|
+
"Gets the hidden_stairs_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27078
|
+
None,
|
|
27079
|
+
)
|
|
27080
|
+
|
|
27081
|
+
SetHiddenStairsField = Symbol(
|
|
27082
|
+
None,
|
|
27083
|
+
None,
|
|
27084
|
+
None,
|
|
27085
|
+
"SetHiddenStairsField",
|
|
27086
|
+
"Sets the hidden_stairs_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27087
|
+
None,
|
|
27088
|
+
)
|
|
27089
|
+
|
|
27090
|
+
GetHiddenFloorField = Symbol(
|
|
27091
|
+
None,
|
|
27092
|
+
None,
|
|
27093
|
+
None,
|
|
27094
|
+
"GetHiddenFloorField",
|
|
27095
|
+
"Gets the hidden_floor_type variable from dungeon::dungeon_generation_info.\n\nreturn: enum hidden_stairs_type",
|
|
27096
|
+
None,
|
|
27097
|
+
)
|
|
27098
|
+
|
|
27099
|
+
SetHiddenFloorField = Symbol(
|
|
27046
27100
|
None,
|
|
27047
27101
|
None,
|
|
27048
27102
|
None,
|
|
27049
|
-
"
|
|
27050
|
-
"
|
|
27103
|
+
"SetHiddenFloorField",
|
|
27104
|
+
"Sets the hidden_floor_type variable from dungeon::dungeon_generation_info to a certain value.\n\nr0: New value",
|
|
27051
27105
|
None,
|
|
27052
27106
|
)
|
|
27053
27107
|
|
pmdsky_debug_py/protocol.py
CHANGED
|
@@ -15250,6 +15250,11 @@ class Overlay29FunctionsProtocol(Protocol):
|
|
|
15250
15250
|
None,
|
|
15251
15251
|
]
|
|
15252
15252
|
|
|
15253
|
+
GetExclusiveItemWithEffectFromBag: Symbol[
|
|
15254
|
+
Optional[list[int]],
|
|
15255
|
+
None,
|
|
15256
|
+
]
|
|
15257
|
+
|
|
15253
15258
|
AuraBowIsActive: Symbol[
|
|
15254
15259
|
Optional[list[int]],
|
|
15255
15260
|
None,
|
|
@@ -16215,6 +16220,11 @@ class Overlay29FunctionsProtocol(Protocol):
|
|
|
16215
16220
|
None,
|
|
16216
16221
|
]
|
|
16217
16222
|
|
|
16223
|
+
CanHitWithRegularAttack: Symbol[
|
|
16224
|
+
Optional[list[int]],
|
|
16225
|
+
None,
|
|
16226
|
+
]
|
|
16227
|
+
|
|
16218
16228
|
StatusCheckerCheck: Symbol[
|
|
16219
16229
|
Optional[list[int]],
|
|
16220
16230
|
None,
|
|
@@ -16455,12 +16465,32 @@ class Overlay29FunctionsProtocol(Protocol):
|
|
|
16455
16465
|
None,
|
|
16456
16466
|
]
|
|
16457
16467
|
|
|
16468
|
+
PositionIsOnHiddenStairs: Symbol[
|
|
16469
|
+
Optional[list[int]],
|
|
16470
|
+
None,
|
|
16471
|
+
]
|
|
16472
|
+
|
|
16458
16473
|
HiddenStairsTrigger: Symbol[
|
|
16459
16474
|
Optional[list[int]],
|
|
16460
16475
|
None,
|
|
16461
16476
|
]
|
|
16462
16477
|
|
|
16463
|
-
|
|
16478
|
+
GetHiddenStairsField: Symbol[
|
|
16479
|
+
Optional[list[int]],
|
|
16480
|
+
None,
|
|
16481
|
+
]
|
|
16482
|
+
|
|
16483
|
+
SetHiddenStairsField: Symbol[
|
|
16484
|
+
Optional[list[int]],
|
|
16485
|
+
None,
|
|
16486
|
+
]
|
|
16487
|
+
|
|
16488
|
+
GetHiddenFloorField: Symbol[
|
|
16489
|
+
Optional[list[int]],
|
|
16490
|
+
None,
|
|
16491
|
+
]
|
|
16492
|
+
|
|
16493
|
+
SetHiddenFloorField: Symbol[
|
|
16464
16494
|
Optional[list[int]],
|
|
16465
16495
|
None,
|
|
16466
16496
|
]
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
+
pmdsky_debug_py/_release.py,sha256=PsbwNCbZaZl6MMJrVn9gPN8BDPxkssUNvP7PWLeyjZI,31
|
|
3
|
+
pmdsky_debug_py/eu.py,sha256=sekX9kAIDqECLFe6hTQqmvyXV3FQ7GPy5pQ-Y-WY1V0,1109747
|
|
4
|
+
pmdsky_debug_py/eu_itcm.py,sha256=bm9_2sFkwWvKAip3pBcoYcGU9o_0rIYnIkiMHiZzwTU,1059766
|
|
5
|
+
pmdsky_debug_py/jp.py,sha256=y40S3sYuKPli-KNGhwNW8Qlk9G3-u6PCqQbCmFYPDIU,1106161
|
|
6
|
+
pmdsky_debug_py/jp_itcm.py,sha256=3IxVigKuXjaoDj9Geail1UMFwUhWyxZEOFvp9OmSmAg,1059756
|
|
7
|
+
pmdsky_debug_py/na.py,sha256=rzd8XVp49VD3CSOOT96lxNt5h40iJUFMok0OMwhaC4o,1110707
|
|
8
|
+
pmdsky_debug_py/na_itcm.py,sha256=wiYULTKfDOID7pKiO_0rb0O1wv7OEtFVtTtRCxh6yIA,1059786
|
|
9
|
+
pmdsky_debug_py/protocol.py,sha256=iaIgSWIh0h-hRCYMW3lbfkq1uwtaPY2tcVlJkBDs8-E,327030
|
|
10
|
+
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pmdsky_debug_py-10.0.28.dist-info/METADATA,sha256=uyCu1eRA7GhHtRCytFIRFnyj2rR8gJzbCi_qpOI71Lo,1374
|
|
12
|
+
pmdsky_debug_py-10.0.28.dist-info/WHEEL,sha256=ixB2d4u7mugx_bCBycvM9OzZ5yD7NmPXFRtKlORZS2Y,91
|
|
13
|
+
pmdsky_debug_py-10.0.28.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
+
pmdsky_debug_py-10.0.28.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
-
pmdsky_debug_py/_release.py,sha256=IFmu9W2IMKCDipnYJVJtJyx6_Ik0aBzcRvtPqW5QajM,31
|
|
3
|
-
pmdsky_debug_py/eu.py,sha256=XxKfSOvehHFSEobRMQt37k9UtKGBOoIIs0YIcXnGa1g,1107715
|
|
4
|
-
pmdsky_debug_py/eu_itcm.py,sha256=xnArhVivFjYBiHJmpuAWUT6m_D7Kqeiqqo7njyE3xtE,1057806
|
|
5
|
-
pmdsky_debug_py/jp.py,sha256=0NhVX2F27mwxBw3xH8QE83kh1YfhGARSCd54ezbGCsc,1104177
|
|
6
|
-
pmdsky_debug_py/jp_itcm.py,sha256=n9GHMXvzYgz9qvXU3ZG2eE4EbnsMfPgrpS9JZqPVZQY,1057796
|
|
7
|
-
pmdsky_debug_py/na.py,sha256=8ad9tV1lGMK5fyeuuMdpPOf5irZLdxpxvsIK7gLfhhA,1108723
|
|
8
|
-
pmdsky_debug_py/na_itcm.py,sha256=f3EOGphMf1_71Fv7_GjvSaIulIOJkVIkFevAfO80cUQ,1057826
|
|
9
|
-
pmdsky_debug_py/protocol.py,sha256=RHgZ9O1kK7TELA3kzsPRQWSmhWdqza5C5orxh0al0wo,326510
|
|
10
|
-
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pmdsky_debug_py-10.0.26.dist-info/METADATA,sha256=bUPxFmXfxGtZgOBhCuJBB4sar_rX3874BnS2K73cFCU,1374
|
|
12
|
-
pmdsky_debug_py-10.0.26.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
|
13
|
-
pmdsky_debug_py-10.0.26.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
-
pmdsky_debug_py-10.0.26.dist-info/RECORD,,
|
|
File without changes
|