pmdsky-debug-py 10.0.53__py3-none-any.whl → 10.0.54__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.
@@ -1 +1 @@
1
- RELEASE = "v0.10.0+941bf79038"
1
+ RELEASE = "v0.10.0+f48dbd7ca6"
pmdsky_debug_py/eu.py CHANGED
@@ -6510,7 +6510,16 @@ class EuArm9Functions:
6510
6510
  [0x204E0B8],
6511
6511
  None,
6512
6512
  "WonderMailPasswordToMission",
6513
- "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6513
+ "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: [output] Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6514
+ None,
6515
+ )
6516
+
6517
+ MissionToWonderMailPassword = Symbol(
6518
+ [0x4E1B4],
6519
+ [0x204E1B4],
6520
+ None,
6521
+ "MissionToWonderMailPassword",
6522
+ "Converts a mission struct to a Wonder Mail S password.\n\nr0: [output] Pointer to the buffer where the string will be written\nr1: mission struct pointer",
6514
6523
  None,
6515
6524
  )
6516
6525
 
@@ -8787,7 +8796,7 @@ class EuArm9Functions:
8787
8796
  [0x205F454],
8788
8797
  None,
8789
8798
  "GetAcceptedMission",
8790
- "Note: unverified, ported from Irdkwia's notes\n\nr0: mission_id\nreturn: mission",
8799
+ "Gets the mission struct corresponding to a certain mission number in the player's job list.\n\nr0: mission id in player's job list\nreturn: mission struct pointer",
8791
8800
  None,
8792
8801
  )
8793
8802
 
@@ -8877,7 +8886,25 @@ class EuArm9Functions:
8877
8886
  [0x205FD34],
8878
8887
  None,
8879
8888
  "ClearMissionData",
8880
- "Given a mission struct, clears some of it fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8889
+ "Given a mission struct, clears some of its fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8890
+ None,
8891
+ )
8892
+
8893
+ ValidateNormalChallengeMission = Symbol(
8894
+ [0x60B80],
8895
+ [0x2060B80],
8896
+ None,
8897
+ "ValidateNormalChallengeMission",
8898
+ "Validates a normal (non-legendary) challenge letter mission by checking whether its client (leader), target (second member), and outlaw_backup_species (third member) match those of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8899
+ None,
8900
+ )
8901
+
8902
+ ValidateLegendaryChallengeMission = Symbol(
8903
+ [0x60C80],
8904
+ [0x2060C80],
8905
+ None,
8906
+ "ValidateLegendaryChallengeMission",
8907
+ "Validates a legendary challenge letter mission by checking whether its dungeon matches the restricted dungeon of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8881
8908
  None,
8882
8909
  )
8883
8910
 
@@ -24790,6 +24817,15 @@ class EuOverlay29Functions:
24790
24817
  None,
24791
24818
  )
24792
24819
 
24820
+ GetPlayerGender = Symbol(
24821
+ [0x18114],
24822
+ [0x22F4C94],
24823
+ None,
24824
+ "GetPlayerGender",
24825
+ "Gets the gender of the player.\n\nreturn: monster_gender",
24826
+ None,
24827
+ )
24828
+
24793
24829
  UseSingleUseItemWrapper = Symbol(
24794
24830
  [0x19108],
24795
24831
  [0x22F5C88],
@@ -29777,6 +29813,15 @@ class EuOverlay29Functions:
29777
29813
  None,
29778
29814
  )
29779
29815
 
29816
+ FillMissionDestinationInfo = Symbol(
29817
+ [0x6C520],
29818
+ [0x23490A0],
29819
+ None,
29820
+ "FillMissionDestinationInfo",
29821
+ "Fills the dungeon::mission_destination_info field with information from the currently active mission on the floor, if one is present.\n\nNo params.",
29822
+ None,
29823
+ )
29824
+
29780
29825
  CheckActiveChallengeRequest = Symbol(
29781
29826
  [0x6D1CC],
29782
29827
  [0x2349D4C],
@@ -30011,6 +30056,15 @@ class EuOverlay29Functions:
30011
30056
  None,
30012
30057
  )
30013
30058
 
30059
+ GetMissionIfActiveOnFloor = Symbol(
30060
+ [0x6D810],
30061
+ [0x234A390],
30062
+ None,
30063
+ "GetMissionIfActiveOnFloor",
30064
+ "If the current dungeon floor has the mission corresponding to the mission number active on it, returns its mission struct.\n\nr0: dungeon_floor_pair struct pointer\nr1: mission id in player's job list\nreturn: mission struct pointer",
30065
+ None,
30066
+ )
30067
+
30014
30068
  GenerateMissionEggMonster = Symbol(
30015
30069
  [0x6D920],
30016
30070
  [0x234A4A0],
@@ -6464,7 +6464,16 @@ class EuItcmArm9Functions:
6464
6464
  None,
6465
6465
  None,
6466
6466
  "WonderMailPasswordToMission",
6467
- "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6467
+ "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: [output] Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6468
+ None,
6469
+ )
6470
+
6471
+ MissionToWonderMailPassword = Symbol(
6472
+ None,
6473
+ None,
6474
+ None,
6475
+ "MissionToWonderMailPassword",
6476
+ "Converts a mission struct to a Wonder Mail S password.\n\nr0: [output] Pointer to the buffer where the string will be written\nr1: mission struct pointer",
6468
6477
  None,
6469
6478
  )
6470
6479
 
@@ -8741,7 +8750,7 @@ class EuItcmArm9Functions:
8741
8750
  None,
8742
8751
  None,
8743
8752
  "GetAcceptedMission",
8744
- "Note: unverified, ported from Irdkwia's notes\n\nr0: mission_id\nreturn: mission",
8753
+ "Gets the mission struct corresponding to a certain mission number in the player's job list.\n\nr0: mission id in player's job list\nreturn: mission struct pointer",
8745
8754
  None,
8746
8755
  )
8747
8756
 
@@ -8831,7 +8840,25 @@ class EuItcmArm9Functions:
8831
8840
  None,
8832
8841
  None,
8833
8842
  "ClearMissionData",
8834
- "Given a mission struct, clears some of it fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8843
+ "Given a mission struct, clears some of its fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8844
+ None,
8845
+ )
8846
+
8847
+ ValidateNormalChallengeMission = Symbol(
8848
+ None,
8849
+ None,
8850
+ None,
8851
+ "ValidateNormalChallengeMission",
8852
+ "Validates a normal (non-legendary) challenge letter mission by checking whether its client (leader), target (second member), and outlaw_backup_species (third member) match those of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8853
+ None,
8854
+ )
8855
+
8856
+ ValidateLegendaryChallengeMission = Symbol(
8857
+ None,
8858
+ None,
8859
+ None,
8860
+ "ValidateLegendaryChallengeMission",
8861
+ "Validates a legendary challenge letter mission by checking whether its dungeon matches the restricted dungeon of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8835
8862
  None,
8836
8863
  )
8837
8864
 
@@ -24261,6 +24288,15 @@ class EuItcmOverlay29Functions:
24261
24288
  None,
24262
24289
  )
24263
24290
 
24291
+ GetPlayerGender = Symbol(
24292
+ None,
24293
+ None,
24294
+ None,
24295
+ "GetPlayerGender",
24296
+ "Gets the gender of the player.\n\nreturn: monster_gender",
24297
+ None,
24298
+ )
24299
+
24264
24300
  UseSingleUseItemWrapper = Symbol(
24265
24301
  None,
24266
24302
  None,
@@ -29202,6 +29238,15 @@ class EuItcmOverlay29Functions:
29202
29238
  None,
29203
29239
  )
29204
29240
 
29241
+ FillMissionDestinationInfo = Symbol(
29242
+ None,
29243
+ None,
29244
+ None,
29245
+ "FillMissionDestinationInfo",
29246
+ "Fills the dungeon::mission_destination_info field with information from the currently active mission on the floor, if one is present.\n\nNo params.",
29247
+ None,
29248
+ )
29249
+
29205
29250
  CheckActiveChallengeRequest = Symbol(
29206
29251
  None,
29207
29252
  None,
@@ -29436,6 +29481,15 @@ class EuItcmOverlay29Functions:
29436
29481
  None,
29437
29482
  )
29438
29483
 
29484
+ GetMissionIfActiveOnFloor = Symbol(
29485
+ None,
29486
+ None,
29487
+ None,
29488
+ "GetMissionIfActiveOnFloor",
29489
+ "If the current dungeon floor has the mission corresponding to the mission number active on it, returns its mission struct.\n\nr0: dungeon_floor_pair struct pointer\nr1: mission id in player's job list\nreturn: mission struct pointer",
29490
+ None,
29491
+ )
29492
+
29439
29493
  GenerateMissionEggMonster = Symbol(
29440
29494
  None,
29441
29495
  None,
pmdsky_debug_py/jp.py CHANGED
@@ -6510,7 +6510,16 @@ class JpArm9Functions:
6510
6510
  [0x204E0E0],
6511
6511
  None,
6512
6512
  "WonderMailPasswordToMission",
6513
- "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6513
+ "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: [output] Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6514
+ None,
6515
+ )
6516
+
6517
+ MissionToWonderMailPassword = Symbol(
6518
+ None,
6519
+ None,
6520
+ None,
6521
+ "MissionToWonderMailPassword",
6522
+ "Converts a mission struct to a Wonder Mail S password.\n\nr0: [output] Pointer to the buffer where the string will be written\nr1: mission struct pointer",
6514
6523
  None,
6515
6524
  )
6516
6525
 
@@ -8787,7 +8796,7 @@ class JpArm9Functions:
8787
8796
  [0x205F3D8],
8788
8797
  None,
8789
8798
  "GetAcceptedMission",
8790
- "Note: unverified, ported from Irdkwia's notes\n\nr0: mission_id\nreturn: mission",
8799
+ "Gets the mission struct corresponding to a certain mission number in the player's job list.\n\nr0: mission id in player's job list\nreturn: mission struct pointer",
8791
8800
  None,
8792
8801
  )
8793
8802
 
@@ -8877,7 +8886,25 @@ class JpArm9Functions:
8877
8886
  [0x205FCA8],
8878
8887
  None,
8879
8888
  "ClearMissionData",
8880
- "Given a mission struct, clears some of it fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8889
+ "Given a mission struct, clears some of its fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8890
+ None,
8891
+ )
8892
+
8893
+ ValidateNormalChallengeMission = Symbol(
8894
+ None,
8895
+ None,
8896
+ None,
8897
+ "ValidateNormalChallengeMission",
8898
+ "Validates a normal (non-legendary) challenge letter mission by checking whether its client (leader), target (second member), and outlaw_backup_species (third member) match those of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8899
+ None,
8900
+ )
8901
+
8902
+ ValidateLegendaryChallengeMission = Symbol(
8903
+ None,
8904
+ None,
8905
+ None,
8906
+ "ValidateLegendaryChallengeMission",
8907
+ "Validates a legendary challenge letter mission by checking whether its dungeon matches the restricted dungeon of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8881
8908
  None,
8882
8909
  )
8883
8910
 
@@ -24781,6 +24808,15 @@ class JpOverlay29Functions:
24781
24808
  None,
24782
24809
  )
24783
24810
 
24811
+ GetPlayerGender = Symbol(
24812
+ None,
24813
+ None,
24814
+ None,
24815
+ "GetPlayerGender",
24816
+ "Gets the gender of the player.\n\nreturn: monster_gender",
24817
+ None,
24818
+ )
24819
+
24784
24820
  UseSingleUseItemWrapper = Symbol(
24785
24821
  [0x18FE4],
24786
24822
  [0x22F68C4],
@@ -29768,6 +29804,15 @@ class JpOverlay29Functions:
29768
29804
  None,
29769
29805
  )
29770
29806
 
29807
+ FillMissionDestinationInfo = Symbol(
29808
+ None,
29809
+ None,
29810
+ None,
29811
+ "FillMissionDestinationInfo",
29812
+ "Fills the dungeon::mission_destination_info field with information from the currently active mission on the floor, if one is present.\n\nNo params.",
29813
+ None,
29814
+ )
29815
+
29771
29816
  CheckActiveChallengeRequest = Symbol(
29772
29817
  [0x6CB94],
29773
29818
  [0x234A474],
@@ -30002,6 +30047,15 @@ class JpOverlay29Functions:
30002
30047
  None,
30003
30048
  )
30004
30049
 
30050
+ GetMissionIfActiveOnFloor = Symbol(
30051
+ None,
30052
+ None,
30053
+ None,
30054
+ "GetMissionIfActiveOnFloor",
30055
+ "If the current dungeon floor has the mission corresponding to the mission number active on it, returns its mission struct.\n\nr0: dungeon_floor_pair struct pointer\nr1: mission id in player's job list\nreturn: mission struct pointer",
30056
+ None,
30057
+ )
30058
+
30005
30059
  GenerateMissionEggMonster = Symbol(
30006
30060
  [0x6D2B0],
30007
30061
  [0x234AB90],
@@ -6464,7 +6464,16 @@ class JpItcmArm9Functions:
6464
6464
  None,
6465
6465
  None,
6466
6466
  "WonderMailPasswordToMission",
6467
- "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6467
+ "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: [output] Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6468
+ None,
6469
+ )
6470
+
6471
+ MissionToWonderMailPassword = Symbol(
6472
+ None,
6473
+ None,
6474
+ None,
6475
+ "MissionToWonderMailPassword",
6476
+ "Converts a mission struct to a Wonder Mail S password.\n\nr0: [output] Pointer to the buffer where the string will be written\nr1: mission struct pointer",
6468
6477
  None,
6469
6478
  )
6470
6479
 
@@ -8741,7 +8750,7 @@ class JpItcmArm9Functions:
8741
8750
  None,
8742
8751
  None,
8743
8752
  "GetAcceptedMission",
8744
- "Note: unverified, ported from Irdkwia's notes\n\nr0: mission_id\nreturn: mission",
8753
+ "Gets the mission struct corresponding to a certain mission number in the player's job list.\n\nr0: mission id in player's job list\nreturn: mission struct pointer",
8745
8754
  None,
8746
8755
  )
8747
8756
 
@@ -8831,7 +8840,25 @@ class JpItcmArm9Functions:
8831
8840
  None,
8832
8841
  None,
8833
8842
  "ClearMissionData",
8834
- "Given a mission struct, clears some of it fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8843
+ "Given a mission struct, clears some of its fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8844
+ None,
8845
+ )
8846
+
8847
+ ValidateNormalChallengeMission = Symbol(
8848
+ None,
8849
+ None,
8850
+ None,
8851
+ "ValidateNormalChallengeMission",
8852
+ "Validates a normal (non-legendary) challenge letter mission by checking whether its client (leader), target (second member), and outlaw_backup_species (third member) match those of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8853
+ None,
8854
+ )
8855
+
8856
+ ValidateLegendaryChallengeMission = Symbol(
8857
+ None,
8858
+ None,
8859
+ None,
8860
+ "ValidateLegendaryChallengeMission",
8861
+ "Validates a legendary challenge letter mission by checking whether its dungeon matches the restricted dungeon of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8835
8862
  None,
8836
8863
  )
8837
8864
 
@@ -24261,6 +24288,15 @@ class JpItcmOverlay29Functions:
24261
24288
  None,
24262
24289
  )
24263
24290
 
24291
+ GetPlayerGender = Symbol(
24292
+ None,
24293
+ None,
24294
+ None,
24295
+ "GetPlayerGender",
24296
+ "Gets the gender of the player.\n\nreturn: monster_gender",
24297
+ None,
24298
+ )
24299
+
24264
24300
  UseSingleUseItemWrapper = Symbol(
24265
24301
  None,
24266
24302
  None,
@@ -29202,6 +29238,15 @@ class JpItcmOverlay29Functions:
29202
29238
  None,
29203
29239
  )
29204
29240
 
29241
+ FillMissionDestinationInfo = Symbol(
29242
+ None,
29243
+ None,
29244
+ None,
29245
+ "FillMissionDestinationInfo",
29246
+ "Fills the dungeon::mission_destination_info field with information from the currently active mission on the floor, if one is present.\n\nNo params.",
29247
+ None,
29248
+ )
29249
+
29205
29250
  CheckActiveChallengeRequest = Symbol(
29206
29251
  None,
29207
29252
  None,
@@ -29436,6 +29481,15 @@ class JpItcmOverlay29Functions:
29436
29481
  None,
29437
29482
  )
29438
29483
 
29484
+ GetMissionIfActiveOnFloor = Symbol(
29485
+ None,
29486
+ None,
29487
+ None,
29488
+ "GetMissionIfActiveOnFloor",
29489
+ "If the current dungeon floor has the mission corresponding to the mission number active on it, returns its mission struct.\n\nr0: dungeon_floor_pair struct pointer\nr1: mission id in player's job list\nreturn: mission struct pointer",
29490
+ None,
29491
+ )
29492
+
29439
29493
  GenerateMissionEggMonster = Symbol(
29440
29494
  None,
29441
29495
  None,
pmdsky_debug_py/na.py CHANGED
@@ -6510,7 +6510,16 @@ class NaArm9Functions:
6510
6510
  [0x204DD80],
6511
6511
  None,
6512
6512
  "WonderMailPasswordToMission",
6513
- "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6513
+ "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: [output] Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6514
+ None,
6515
+ )
6516
+
6517
+ MissionToWonderMailPassword = Symbol(
6518
+ None,
6519
+ None,
6520
+ None,
6521
+ "MissionToWonderMailPassword",
6522
+ "Converts a mission struct to a Wonder Mail S password.\n\nr0: [output] Pointer to the buffer where the string will be written\nr1: mission struct pointer",
6514
6523
  None,
6515
6524
  )
6516
6525
 
@@ -8787,7 +8796,7 @@ class NaArm9Functions:
8787
8796
  [0x205F0D8],
8788
8797
  None,
8789
8798
  "GetAcceptedMission",
8790
- "Note: unverified, ported from Irdkwia's notes\n\nr0: mission_id\nreturn: mission",
8799
+ "Gets the mission struct corresponding to a certain mission number in the player's job list.\n\nr0: mission id in player's job list\nreturn: mission struct pointer",
8791
8800
  None,
8792
8801
  )
8793
8802
 
@@ -8877,7 +8886,25 @@ class NaArm9Functions:
8877
8886
  [0x205F9B8],
8878
8887
  None,
8879
8888
  "ClearMissionData",
8880
- "Given a mission struct, clears some of it fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8889
+ "Given a mission struct, clears some of its fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8890
+ None,
8891
+ )
8892
+
8893
+ ValidateNormalChallengeMission = Symbol(
8894
+ None,
8895
+ None,
8896
+ None,
8897
+ "ValidateNormalChallengeMission",
8898
+ "Validates a normal (non-legendary) challenge letter mission by checking whether its client (leader), target (second member), and outlaw_backup_species (third member) match those of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8899
+ None,
8900
+ )
8901
+
8902
+ ValidateLegendaryChallengeMission = Symbol(
8903
+ None,
8904
+ None,
8905
+ None,
8906
+ "ValidateLegendaryChallengeMission",
8907
+ "Validates a legendary challenge letter mission by checking whether its dungeon matches the restricted dungeon of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8881
8908
  None,
8882
8909
  )
8883
8910
 
@@ -24788,6 +24815,15 @@ class NaOverlay29Functions:
24788
24815
  None,
24789
24816
  )
24790
24817
 
24818
+ GetPlayerGender = Symbol(
24819
+ None,
24820
+ None,
24821
+ None,
24822
+ "GetPlayerGender",
24823
+ "Gets the gender of the player.\n\nreturn: monster_gender",
24824
+ None,
24825
+ )
24826
+
24791
24827
  UseSingleUseItemWrapper = Symbol(
24792
24828
  [0x1908C],
24793
24829
  [0x22F52CC],
@@ -29775,6 +29811,15 @@ class NaOverlay29Functions:
29775
29811
  None,
29776
29812
  )
29777
29813
 
29814
+ FillMissionDestinationInfo = Symbol(
29815
+ None,
29816
+ None,
29817
+ None,
29818
+ "FillMissionDestinationInfo",
29819
+ "Fills the dungeon::mission_destination_info field with information from the currently active mission on the floor, if one is present.\n\nNo params.",
29820
+ None,
29821
+ )
29822
+
29778
29823
  CheckActiveChallengeRequest = Symbol(
29779
29824
  [0x6CF0C],
29780
29825
  [0x234914C],
@@ -30009,6 +30054,15 @@ class NaOverlay29Functions:
30009
30054
  None,
30010
30055
  )
30011
30056
 
30057
+ GetMissionIfActiveOnFloor = Symbol(
30058
+ None,
30059
+ None,
30060
+ None,
30061
+ "GetMissionIfActiveOnFloor",
30062
+ "If the current dungeon floor has the mission corresponding to the mission number active on it, returns its mission struct.\n\nr0: dungeon_floor_pair struct pointer\nr1: mission id in player's job list\nreturn: mission struct pointer",
30063
+ None,
30064
+ )
30065
+
30012
30066
  GenerateMissionEggMonster = Symbol(
30013
30067
  [0x6D660],
30014
30068
  [0x23498A0],
@@ -6464,7 +6464,16 @@ class NaItcmArm9Functions:
6464
6464
  None,
6465
6465
  None,
6466
6466
  "WonderMailPasswordToMission",
6467
- "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6467
+ "Tries to convert a Wonder Mail S password to a mission struct.\n\nReturns whether the conversion was successful. This function does not include any checks if the mission itself is valid, only if the code is valid.\n\nr0: string\nr1: [output] Pointer to the struct where the data of the converted mission will be written to\nreturn: successful conversion",
6468
+ None,
6469
+ )
6470
+
6471
+ MissionToWonderMailPassword = Symbol(
6472
+ None,
6473
+ None,
6474
+ None,
6475
+ "MissionToWonderMailPassword",
6476
+ "Converts a mission struct to a Wonder Mail S password.\n\nr0: [output] Pointer to the buffer where the string will be written\nr1: mission struct pointer",
6468
6477
  None,
6469
6478
  )
6470
6479
 
@@ -8741,7 +8750,7 @@ class NaItcmArm9Functions:
8741
8750
  None,
8742
8751
  None,
8743
8752
  "GetAcceptedMission",
8744
- "Note: unverified, ported from Irdkwia's notes\n\nr0: mission_id\nreturn: mission",
8753
+ "Gets the mission struct corresponding to a certain mission number in the player's job list.\n\nr0: mission id in player's job list\nreturn: mission struct pointer",
8745
8754
  None,
8746
8755
  )
8747
8756
 
@@ -8831,7 +8840,25 @@ class NaItcmArm9Functions:
8831
8840
  None,
8832
8841
  None,
8833
8842
  "ClearMissionData",
8834
- "Given a mission struct, clears some of it fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8843
+ "Given a mission struct, clears some of its fields.\n\nIn particular, mission::status is set to mission_status::MISSION_STATUS_INVALID, mission::dungeon_id is set to -1, mission::floor is set to 0 and mission::reward_type is set to mission_reward_type::MISSION_REWARD_MONEY.\n\nr0: Pointer to the mission to clear",
8844
+ None,
8845
+ )
8846
+
8847
+ ValidateNormalChallengeMission = Symbol(
8848
+ None,
8849
+ None,
8850
+ None,
8851
+ "ValidateNormalChallengeMission",
8852
+ "Validates a normal (non-legendary) challenge letter mission by checking whether its client (leader), target (second member), and outlaw_backup_species (third member) match those of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8853
+ None,
8854
+ )
8855
+
8856
+ ValidateLegendaryChallengeMission = Symbol(
8857
+ None,
8858
+ None,
8859
+ None,
8860
+ "ValidateLegendaryChallengeMission",
8861
+ "Validates a legendary challenge letter mission by checking whether its dungeon matches the restricted dungeon of some mission_rescue_bin struct (alongside some other conditions).\n\nr0: mission_rescue_bin struct pointer\nr1: mission struct pointer\nreturn: bool",
8835
8862
  None,
8836
8863
  )
8837
8864
 
@@ -24261,6 +24288,15 @@ class NaItcmOverlay29Functions:
24261
24288
  None,
24262
24289
  )
24263
24290
 
24291
+ GetPlayerGender = Symbol(
24292
+ None,
24293
+ None,
24294
+ None,
24295
+ "GetPlayerGender",
24296
+ "Gets the gender of the player.\n\nreturn: monster_gender",
24297
+ None,
24298
+ )
24299
+
24264
24300
  UseSingleUseItemWrapper = Symbol(
24265
24301
  None,
24266
24302
  None,
@@ -29202,6 +29238,15 @@ class NaItcmOverlay29Functions:
29202
29238
  None,
29203
29239
  )
29204
29240
 
29241
+ FillMissionDestinationInfo = Symbol(
29242
+ None,
29243
+ None,
29244
+ None,
29245
+ "FillMissionDestinationInfo",
29246
+ "Fills the dungeon::mission_destination_info field with information from the currently active mission on the floor, if one is present.\n\nNo params.",
29247
+ None,
29248
+ )
29249
+
29205
29250
  CheckActiveChallengeRequest = Symbol(
29206
29251
  None,
29207
29252
  None,
@@ -29436,6 +29481,15 @@ class NaItcmOverlay29Functions:
29436
29481
  None,
29437
29482
  )
29438
29483
 
29484
+ GetMissionIfActiveOnFloor = Symbol(
29485
+ None,
29486
+ None,
29487
+ None,
29488
+ "GetMissionIfActiveOnFloor",
29489
+ "If the current dungeon floor has the mission corresponding to the mission number active on it, returns its mission struct.\n\nr0: dungeon_floor_pair struct pointer\nr1: mission id in player's job list\nreturn: mission struct pointer",
29490
+ None,
29491
+ )
29492
+
29439
29493
  GenerateMissionEggMonster = Symbol(
29440
29494
  None,
29441
29495
  None,
@@ -3662,6 +3662,11 @@ class Arm9FunctionsProtocol(Protocol):
3662
3662
  None,
3663
3663
  ]
3664
3664
 
3665
+ MissionToWonderMailPassword: Symbol[
3666
+ Optional[list[int]],
3667
+ None,
3668
+ ]
3669
+
3665
3670
  SetEnterDungeon: Symbol[
3666
3671
  Optional[list[int]],
3667
3672
  None,
@@ -4977,6 +4982,16 @@ class Arm9FunctionsProtocol(Protocol):
4977
4982
  None,
4978
4983
  ]
4979
4984
 
4985
+ ValidateNormalChallengeMission: Symbol[
4986
+ Optional[list[int]],
4987
+ None,
4988
+ ]
4989
+
4990
+ ValidateLegendaryChallengeMission: Symbol[
4991
+ Optional[list[int]],
4992
+ None,
4993
+ ]
4994
+
4980
4995
  IsMonsterMissionAllowed: Symbol[
4981
4996
  Optional[list[int]],
4982
4997
  None,
@@ -14915,6 +14930,11 @@ class Overlay29FunctionsProtocol(Protocol):
14915
14930
  None,
14916
14931
  ]
14917
14932
 
14933
+ GetPlayerGender: Symbol[
14934
+ Optional[list[int]],
14935
+ None,
14936
+ ]
14937
+
14918
14938
  UseSingleUseItemWrapper: Symbol[
14919
14939
  Optional[list[int]],
14920
14940
  None,
@@ -17660,6 +17680,11 @@ class Overlay29FunctionsProtocol(Protocol):
17660
17680
  None,
17661
17681
  ]
17662
17682
 
17683
+ FillMissionDestinationInfo: Symbol[
17684
+ Optional[list[int]],
17685
+ None,
17686
+ ]
17687
+
17663
17688
  CheckActiveChallengeRequest: Symbol[
17664
17689
  Optional[list[int]],
17665
17690
  None,
@@ -17790,6 +17815,11 @@ class Overlay29FunctionsProtocol(Protocol):
17790
17815
  None,
17791
17816
  ]
17792
17817
 
17818
+ GetMissionIfActiveOnFloor: Symbol[
17819
+ Optional[list[int]],
17820
+ None,
17821
+ ]
17822
+
17793
17823
  GenerateMissionEggMonster: Symbol[
17794
17824
  Optional[list[int]],
17795
17825
  None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: pmdsky-debug-py
3
- Version: 10.0.53
3
+ Version: 10.0.54
4
4
  Summary: pmdsky-debug symbols for Python.
5
5
  Author-email: Marco 'Capypara' Köpcke <hello@capypara.de>
6
6
  License: MIT
@@ -0,0 +1,14 @@
1
+ pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
+ pmdsky_debug_py/_release.py,sha256=PgqRJ3cIWm937o7haw66Ep6LN1PuPvA5Cdckxy212XU,31
3
+ pmdsky_debug_py/eu.py,sha256=uKKH7DrAW7gpzMLdtsNyy6DkQ4xR5QdpYkykNXsZ9h0,1156457
4
+ pmdsky_debug_py/eu_itcm.py,sha256=qRZ7tNAIKF3zsAhCWCF58aqU7kIiRqk2dQXazohJlWw,1104675
5
+ pmdsky_debug_py/jp.py,sha256=h9W7tVQzC_7OWFdVaat5YCVpQn2B9aVrLpUAwDYHflM,1153116
6
+ pmdsky_debug_py/jp_itcm.py,sha256=CHj2xsNlA3sZsj5Q77LB9IiEcL0ytd956LI-kBrO1U8,1104665
7
+ pmdsky_debug_py/na.py,sha256=rrzYpFg0w34DklXPqZMDjESd0BPDgg1No9hsz7kIIjM,1157343
8
+ pmdsky_debug_py/na_itcm.py,sha256=83rnvRsGBCK_ZpNUjIe0Xhxd4ANXpIrnteeRXgDetWc,1104675
9
+ pmdsky_debug_py/protocol.py,sha256=RGss60tA5MuIhI9-xlOh8YRYyZmChXXqF0Er0jxYjFk,339482
10
+ pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pmdsky_debug_py-10.0.54.dist-info/METADATA,sha256=i74vjVgWrtYkg0sQa5hmta3jFjdK7dz9L4L6SSGP7uo,1376
12
+ pmdsky_debug_py-10.0.54.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
13
+ pmdsky_debug_py-10.0.54.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
+ pmdsky_debug_py-10.0.54.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
- pmdsky_debug_py/_release.py,sha256=7pC1tiJNdNscnmw5XwOzzTCYNTLXaKGZs1BPcRzPc9Y,31
3
- pmdsky_debug_py/eu.py,sha256=3oDeUQYX1-vdBCjoe-f4cCkHuJLDHeZsSd1chsvV2II,1154191
4
- pmdsky_debug_py/eu_itcm.py,sha256=7_yer01Qn_cfZwyIpzdVfF15LEukQkiQmzIWz7ihb88,1102481
5
- pmdsky_debug_py/jp.py,sha256=skz6fn-Iqk5oOlMPUnsF4Go-mxtI2og2QQ_CG4LEvho,1150922
6
- pmdsky_debug_py/jp_itcm.py,sha256=fdBrkslEyJ_MDS6mAS_G78KCeJUiLUbROMXnaZkfCb4,1102471
7
- pmdsky_debug_py/na.py,sha256=MWQCHLeiR2o6h78K8zm27njRpGHOVZejh_0lHbwUPlE,1155149
8
- pmdsky_debug_py/na_itcm.py,sha256=DKEPxIM00RSjVvYhQEBA_Txx2n7nsJtIHzE3nkq4-Nc,1102481
9
- pmdsky_debug_py/protocol.py,sha256=aNKxfT_FNbx_yhBOW9mxXigq7R4y4Rex4-TlXGpKJ54,338942
10
- pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- pmdsky_debug_py-10.0.53.dist-info/METADATA,sha256=YcdFUB6HpLtOqFmIdg7LfePzsF0yVF5rJz4JRtemj-k,1376
12
- pmdsky_debug_py-10.0.53.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
13
- pmdsky_debug_py-10.0.53.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
- pmdsky_debug_py-10.0.53.dist-info/RECORD,,