pmdsky-debug-py 10.0.18__py3-none-any.whl → 10.0.20__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+e12c6c4008"
1
+ RELEASE = "v0.10.0+8ceaa47f87"
pmdsky_debug_py/eu.py CHANGED
@@ -7477,12 +7477,12 @@ class EuArm9Functions:
7477
7477
  None,
7478
7478
  )
7479
7479
 
7480
- GetLowKickMultiplier = Symbol(
7480
+ GetWeightMultiplier = Symbol(
7481
7481
  [0x52C34],
7482
7482
  [0x2052C34],
7483
7483
  None,
7484
- "GetLowKickMultiplier",
7485
- "Gets the Low Kick (and Grass Knot) damage multiplier (i.e., weight) for the given species.\n\nr0: monster ID\nreturn: multiplier as a binary fixed-point number with 8 fraction bits.",
7484
+ "GetWeightMultiplier",
7485
+ "Gets the weight multiplier value for the given species. This value is passed as the damage_mult_fp parameter to DealDamage when calculating the damage dealt by Low Kick and Grass Knot.\n\nr0: monster ID\nreturn: Monster weight multiplier, as a binary fixed-point number with 8 fraction bits.",
7486
7486
  None,
7487
7487
  )
7488
7488
 
@@ -8919,6 +8919,8 @@ class EuArm9Functions:
8919
8919
  "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8920
8920
  )
8921
8921
 
8922
+ GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
8923
+
8922
8924
 
8923
8925
  class EuArm9Data:
8924
8926
 
@@ -9513,7 +9515,7 @@ class EuArm9Data:
9513
9515
  [0x209E924],
9514
9516
  0x2D0,
9515
9517
  "DUNGEON_DATA_LIST",
9516
- "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9518
+ "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9517
9519
  "struct dungeon_data_list_entry[180]",
9518
9520
  )
9519
9521
 
@@ -9621,7 +9623,7 @@ class EuArm9Data:
9621
9623
  [0x20A11E8],
9622
9624
  0xC00,
9623
9625
  "DUNGEON_RESTRICTIONS",
9624
- "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9626
+ "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9625
9627
  "struct dungeon_restriction[256]",
9626
9628
  )
9627
9629
 
@@ -10017,7 +10019,7 @@ class EuArm9Data:
10017
10019
  [0x20A2E40],
10018
10020
  0x288,
10019
10021
  "GUEST_MONSTER_DATA",
10020
- "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
10022
+ "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
10021
10023
  "struct guest_monster[18]",
10022
10024
  )
10023
10025
 
@@ -10408,7 +10410,7 @@ class EuArm9Data:
10408
10410
  [0x20A9D70],
10409
10411
  0x9B0,
10410
10412
  "MAP_MARKER_PLACEMENTS",
10411
- "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10413
+ "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10412
10414
  "struct map_marker[310]",
10413
10415
  )
10414
10416
 
@@ -18360,7 +18362,7 @@ class EuOverlay10Data:
18360
18362
  [0x22C75C8],
18361
18363
  0xC00,
18362
18364
  "FIXED_ROOM_PROPERTIES_TABLE",
18363
- "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18365
+ "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18364
18366
  "struct fixed_room_properties_entry[256]",
18365
18367
  )
18366
18368
 
@@ -7431,12 +7431,12 @@ class EuItcmArm9Functions:
7431
7431
  None,
7432
7432
  )
7433
7433
 
7434
- GetLowKickMultiplier = Symbol(
7434
+ GetWeightMultiplier = Symbol(
7435
7435
  None,
7436
7436
  None,
7437
7437
  None,
7438
- "GetLowKickMultiplier",
7439
- "Gets the Low Kick (and Grass Knot) damage multiplier (i.e., weight) for the given species.\n\nr0: monster ID\nreturn: multiplier as a binary fixed-point number with 8 fraction bits.",
7438
+ "GetWeightMultiplier",
7439
+ "Gets the weight multiplier value for the given species. This value is passed as the damage_mult_fp parameter to DealDamage when calculating the damage dealt by Low Kick and Grass Knot.\n\nr0: monster ID\nreturn: Monster weight multiplier, as a binary fixed-point number with 8 fraction bits.",
7440
7440
  None,
7441
7441
  )
7442
7442
 
@@ -8873,6 +8873,8 @@ class EuItcmArm9Functions:
8873
8873
  "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8874
8874
  )
8875
8875
 
8876
+ GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
8877
+
8876
8878
 
8877
8879
  class EuItcmArm9Data:
8878
8880
 
@@ -9458,7 +9460,7 @@ class EuItcmArm9Data:
9458
9460
  None,
9459
9461
  None,
9460
9462
  "DUNGEON_DATA_LIST",
9461
- "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9463
+ "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9462
9464
  "struct dungeon_data_list_entry[180]",
9463
9465
  )
9464
9466
 
@@ -9566,7 +9568,7 @@ class EuItcmArm9Data:
9566
9568
  None,
9567
9569
  None,
9568
9570
  "DUNGEON_RESTRICTIONS",
9569
- "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9571
+ "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9570
9572
  "struct dungeon_restriction[256]",
9571
9573
  )
9572
9574
 
@@ -9962,7 +9964,7 @@ class EuItcmArm9Data:
9962
9964
  None,
9963
9965
  None,
9964
9966
  "GUEST_MONSTER_DATA",
9965
- "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
9967
+ "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
9966
9968
  "struct guest_monster[18]",
9967
9969
  )
9968
9970
 
@@ -10348,7 +10350,7 @@ class EuItcmArm9Data:
10348
10350
  None,
10349
10351
  None,
10350
10352
  "MAP_MARKER_PLACEMENTS",
10351
- "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10353
+ "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10352
10354
  "struct map_marker[310]",
10353
10355
  )
10354
10356
 
@@ -18094,7 +18096,7 @@ class EuItcmOverlay10Data:
18094
18096
  None,
18095
18097
  None,
18096
18098
  "FIXED_ROOM_PROPERTIES_TABLE",
18097
- "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18099
+ "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18098
18100
  "struct fixed_room_properties_entry[256]",
18099
18101
  )
18100
18102
 
pmdsky_debug_py/jp.py CHANGED
@@ -7477,12 +7477,12 @@ class JpArm9Functions:
7477
7477
  None,
7478
7478
  )
7479
7479
 
7480
- GetLowKickMultiplier = Symbol(
7480
+ GetWeightMultiplier = Symbol(
7481
7481
  [0x52C34],
7482
7482
  [0x2052C34],
7483
7483
  None,
7484
- "GetLowKickMultiplier",
7485
- "Gets the Low Kick (and Grass Knot) damage multiplier (i.e., weight) for the given species.\n\nr0: monster ID\nreturn: multiplier as a binary fixed-point number with 8 fraction bits.",
7484
+ "GetWeightMultiplier",
7485
+ "Gets the weight multiplier value for the given species. This value is passed as the damage_mult_fp parameter to DealDamage when calculating the damage dealt by Low Kick and Grass Knot.\n\nr0: monster ID\nreturn: Monster weight multiplier, as a binary fixed-point number with 8 fraction bits.",
7486
7486
  None,
7487
7487
  )
7488
7488
 
@@ -8919,6 +8919,8 @@ class JpArm9Functions:
8919
8919
  "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8920
8920
  )
8921
8921
 
8922
+ GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
8923
+
8922
8924
 
8923
8925
  class JpArm9Data:
8924
8926
 
@@ -9508,7 +9510,7 @@ class JpArm9Data:
9508
9510
  [0x209F774],
9509
9511
  0x2D0,
9510
9512
  "DUNGEON_DATA_LIST",
9511
- "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9513
+ "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9512
9514
  "struct dungeon_data_list_entry[180]",
9513
9515
  )
9514
9516
 
@@ -9616,7 +9618,7 @@ class JpArm9Data:
9616
9618
  [0x20A2038],
9617
9619
  0xC00,
9618
9620
  "DUNGEON_RESTRICTIONS",
9619
- "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9621
+ "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9620
9622
  "struct dungeon_restriction[256]",
9621
9623
  )
9622
9624
 
@@ -10012,7 +10014,7 @@ class JpArm9Data:
10012
10014
  [0x20A3C90],
10013
10015
  0x288,
10014
10016
  "GUEST_MONSTER_DATA",
10015
- "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
10017
+ "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
10016
10018
  "struct guest_monster[18]",
10017
10019
  )
10018
10020
 
@@ -10403,7 +10405,7 @@ class JpArm9Data:
10403
10405
  [0x20AA918],
10404
10406
  0x9B0,
10405
10407
  "MAP_MARKER_PLACEMENTS",
10406
- "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10408
+ "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10407
10409
  "struct map_marker[310]",
10408
10410
  )
10409
10411
 
@@ -18355,7 +18357,7 @@ class JpOverlay10Data:
18355
18357
  [0x22C8358],
18356
18358
  0xC00,
18357
18359
  "FIXED_ROOM_PROPERTIES_TABLE",
18358
- "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18360
+ "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18359
18361
  "struct fixed_room_properties_entry[256]",
18360
18362
  )
18361
18363
 
@@ -7431,12 +7431,12 @@ class JpItcmArm9Functions:
7431
7431
  None,
7432
7432
  )
7433
7433
 
7434
- GetLowKickMultiplier = Symbol(
7434
+ GetWeightMultiplier = Symbol(
7435
7435
  None,
7436
7436
  None,
7437
7437
  None,
7438
- "GetLowKickMultiplier",
7439
- "Gets the Low Kick (and Grass Knot) damage multiplier (i.e., weight) for the given species.\n\nr0: monster ID\nreturn: multiplier as a binary fixed-point number with 8 fraction bits.",
7438
+ "GetWeightMultiplier",
7439
+ "Gets the weight multiplier value for the given species. This value is passed as the damage_mult_fp parameter to DealDamage when calculating the damage dealt by Low Kick and Grass Knot.\n\nr0: monster ID\nreturn: Monster weight multiplier, as a binary fixed-point number with 8 fraction bits.",
7440
7440
  None,
7441
7441
  )
7442
7442
 
@@ -8873,6 +8873,8 @@ class JpItcmArm9Functions:
8873
8873
  "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8874
8874
  )
8875
8875
 
8876
+ GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
8877
+
8876
8878
 
8877
8879
  class JpItcmArm9Data:
8878
8880
 
@@ -9458,7 +9460,7 @@ class JpItcmArm9Data:
9458
9460
  None,
9459
9461
  None,
9460
9462
  "DUNGEON_DATA_LIST",
9461
- "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9463
+ "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9462
9464
  "struct dungeon_data_list_entry[180]",
9463
9465
  )
9464
9466
 
@@ -9566,7 +9568,7 @@ class JpItcmArm9Data:
9566
9568
  None,
9567
9569
  None,
9568
9570
  "DUNGEON_RESTRICTIONS",
9569
- "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9571
+ "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9570
9572
  "struct dungeon_restriction[256]",
9571
9573
  )
9572
9574
 
@@ -9962,7 +9964,7 @@ class JpItcmArm9Data:
9962
9964
  None,
9963
9965
  None,
9964
9966
  "GUEST_MONSTER_DATA",
9965
- "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
9967
+ "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
9966
9968
  "struct guest_monster[18]",
9967
9969
  )
9968
9970
 
@@ -10348,7 +10350,7 @@ class JpItcmArm9Data:
10348
10350
  None,
10349
10351
  None,
10350
10352
  "MAP_MARKER_PLACEMENTS",
10351
- "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10353
+ "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10352
10354
  "struct map_marker[310]",
10353
10355
  )
10354
10356
 
@@ -18094,7 +18096,7 @@ class JpItcmOverlay10Data:
18094
18096
  None,
18095
18097
  None,
18096
18098
  "FIXED_ROOM_PROPERTIES_TABLE",
18097
- "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18099
+ "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18098
18100
  "struct fixed_room_properties_entry[256]",
18099
18101
  )
18100
18102
 
pmdsky_debug_py/na.py CHANGED
@@ -7477,12 +7477,12 @@ class NaArm9Functions:
7477
7477
  None,
7478
7478
  )
7479
7479
 
7480
- GetLowKickMultiplier = Symbol(
7480
+ GetWeightMultiplier = Symbol(
7481
7481
  [0x528FC],
7482
7482
  [0x20528FC],
7483
7483
  None,
7484
- "GetLowKickMultiplier",
7485
- "Gets the Low Kick (and Grass Knot) damage multiplier (i.e., weight) for the given species.\n\nr0: monster ID\nreturn: multiplier as a binary fixed-point number with 8 fraction bits.",
7484
+ "GetWeightMultiplier",
7485
+ "Gets the weight multiplier value for the given species. This value is passed as the damage_mult_fp parameter to DealDamage when calculating the damage dealt by Low Kick and Grass Knot.\n\nr0: monster ID\nreturn: Monster weight multiplier, as a binary fixed-point number with 8 fraction bits.",
7486
7486
  None,
7487
7487
  )
7488
7488
 
@@ -8919,6 +8919,8 @@ class NaArm9Functions:
8919
8919
  "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8920
8920
  )
8921
8921
 
8922
+ GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
8923
+
8922
8924
 
8923
8925
  class NaArm9Data:
8924
8926
 
@@ -9513,7 +9515,7 @@ class NaArm9Data:
9513
9515
  [0x209E3A0],
9514
9516
  0x2D0,
9515
9517
  "DUNGEON_DATA_LIST",
9516
- "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9518
+ "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9517
9519
  "struct dungeon_data_list_entry[180]",
9518
9520
  )
9519
9521
 
@@ -9621,7 +9623,7 @@ class NaArm9Data:
9621
9623
  [0x20A0C64],
9622
9624
  0xC00,
9623
9625
  "DUNGEON_RESTRICTIONS",
9624
- "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9626
+ "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9625
9627
  "struct dungeon_restriction[256]",
9626
9628
  )
9627
9629
 
@@ -10017,7 +10019,7 @@ class NaArm9Data:
10017
10019
  [0x20A28BC],
10018
10020
  0x288,
10019
10021
  "GUEST_MONSTER_DATA",
10020
- "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
10022
+ "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
10021
10023
  "struct guest_monster[18]",
10022
10024
  )
10023
10025
 
@@ -10408,7 +10410,7 @@ class NaArm9Data:
10408
10410
  [0x20A94D0],
10409
10411
  0x9B0,
10410
10412
  "MAP_MARKER_PLACEMENTS",
10411
- "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10413
+ "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10412
10414
  "struct map_marker[310]",
10413
10415
  )
10414
10416
 
@@ -18360,7 +18362,7 @@ class NaOverlay10Data:
18360
18362
  [0x22C6C70],
18361
18363
  0xC00,
18362
18364
  "FIXED_ROOM_PROPERTIES_TABLE",
18363
- "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18365
+ "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18364
18366
  "struct fixed_room_properties_entry[256]",
18365
18367
  )
18366
18368
 
@@ -7431,12 +7431,12 @@ class NaItcmArm9Functions:
7431
7431
  None,
7432
7432
  )
7433
7433
 
7434
- GetLowKickMultiplier = Symbol(
7434
+ GetWeightMultiplier = Symbol(
7435
7435
  None,
7436
7436
  None,
7437
7437
  None,
7438
- "GetLowKickMultiplier",
7439
- "Gets the Low Kick (and Grass Knot) damage multiplier (i.e., weight) for the given species.\n\nr0: monster ID\nreturn: multiplier as a binary fixed-point number with 8 fraction bits.",
7438
+ "GetWeightMultiplier",
7439
+ "Gets the weight multiplier value for the given species. This value is passed as the damage_mult_fp parameter to DealDamage when calculating the damage dealt by Low Kick and Grass Knot.\n\nr0: monster ID\nreturn: Monster weight multiplier, as a binary fixed-point number with 8 fraction bits.",
7440
7440
  None,
7441
7441
  )
7442
7442
 
@@ -8873,6 +8873,8 @@ class NaItcmArm9Functions:
8873
8873
  "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8874
8874
  )
8875
8875
 
8876
+ GetLowKickMultiplier = _Deprecated("GetLowKickMultiplier", GetWeightMultiplier)
8877
+
8876
8878
 
8877
8879
  class NaItcmArm9Data:
8878
8880
 
@@ -9458,7 +9460,7 @@ class NaItcmArm9Data:
9458
9460
  None,
9459
9461
  None,
9460
9462
  "DUNGEON_DATA_LIST",
9461
- "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9463
+ "Data about every dungeon in the game.\n\nThis is an array of 180 dungeon data list entry structs. Each entry is 4 bytes, and contains floor count information along with an index into the bulk of the dungeon's data in mappa_s.bin.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_data_list_entry[180]",
9462
9464
  "struct dungeon_data_list_entry[180]",
9463
9465
  )
9464
9466
 
@@ -9566,7 +9568,7 @@ class NaItcmArm9Data:
9566
9568
  None,
9567
9569
  None,
9568
9570
  "DUNGEON_RESTRICTIONS",
9569
- "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9571
+ "Data related to dungeon restrictions for every dungeon in the game.\n\nThis is an array of 256 dungeon restriction structs. Each entry is 12 bytes, and contains information about restrictions within the given dungeon.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct dungeon_restriction[256]",
9570
9572
  "struct dungeon_restriction[256]",
9571
9573
  )
9572
9574
 
@@ -9962,7 +9964,7 @@ class NaItcmArm9Data:
9962
9964
  None,
9963
9965
  None,
9964
9966
  "GUEST_MONSTER_DATA",
9965
- "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
9967
+ "Data for guest monsters that join you during certain story dungeons.\n\nArray of 18 36-byte entries.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct guest_monster[18]",
9966
9968
  "struct guest_monster[18]",
9967
9969
  )
9968
9970
 
@@ -10348,7 +10350,7 @@ class NaItcmArm9Data:
10348
10350
  None,
10349
10351
  None,
10350
10352
  "MAP_MARKER_PLACEMENTS",
10351
- "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10353
+ "The map marker position of each dungeon on the Wonder Map.\n\nThis is an array of 310 map marker structs. Each entry is 8 bytes, and contains positional information about a dungeon on the map.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct map_marker[310]",
10352
10354
  "struct map_marker[310]",
10353
10355
  )
10354
10356
 
@@ -18094,7 +18096,7 @@ class NaItcmOverlay10Data:
18094
18096
  None,
18095
18097
  None,
18096
18098
  "FIXED_ROOM_PROPERTIES_TABLE",
18097
- "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and End45's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18099
+ "Table of properties for fixed rooms.\n\nThis is an array of 256 12-byte entries containing properties for a given fixed room ID.\n\nSee the struct definitions and Frostbyte's dungeon data document for more info.\n\ntype: struct fixed_room_properties_entry[256]",
18098
18100
  "struct fixed_room_properties_entry[256]",
18099
18101
  )
18100
18102
 
@@ -4197,7 +4197,7 @@ class Arm9FunctionsProtocol(Protocol):
4197
4197
  None,
4198
4198
  ]
4199
4199
 
4200
- GetLowKickMultiplier: Symbol[
4200
+ GetWeightMultiplier: Symbol[
4201
4201
  Optional[list[int]],
4202
4202
  None,
4203
4203
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pmdsky-debug-py
3
- Version: 10.0.18
3
+ Version: 10.0.20
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=OUEQQE3xrzIM9LF_VIl74bbG0ybs9jYVDZMw2IAyyg4,31
3
+ pmdsky_debug_py/eu.py,sha256=V4tBpOGwZTTUIbrByQc0Zb4J8S_h6X7EIZJQmglPRTY,1099409
4
+ pmdsky_debug_py/eu_itcm.py,sha256=fhACc06CYVTe5w0JIUKEDcBo9em-JJELT04dAGPddxA,1049726
5
+ pmdsky_debug_py/jp.py,sha256=VgjKGvDBEDV9dvbkeESO4go2g5yGOvRKrje7wi64B1M,1095920
6
+ pmdsky_debug_py/jp_itcm.py,sha256=lxByd75zxd3zAkBMmXL4HAVJ7Nw9FqTDRdrrjGQSHr4,1049716
7
+ pmdsky_debug_py/na.py,sha256=e4HfSIzAfKihGhFS94nJ-LkKjoh5v9wm-pFkHttNLO0,1100454
8
+ pmdsky_debug_py/na_itcm.py,sha256=zw0-TdAUWhp0_u5SYSTtcQjBXa3Pp0kTHLAl0Y7Hpz8,1049746
9
+ pmdsky_debug_py/protocol.py,sha256=8Bos_qE4qGi0Fl7LYP-gyURhjJLExNd5Lz0B-fmHgvA,324779
10
+ pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pmdsky_debug_py-10.0.20.dist-info/METADATA,sha256=Xz9WjQGcs64YN0cZoY8jYXoYA_diNCfmUp-XT-vi-J0,1374
12
+ pmdsky_debug_py-10.0.20.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
13
+ pmdsky_debug_py-10.0.20.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
+ pmdsky_debug_py-10.0.20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.1)
2
+ Generator: setuptools (71.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,14 +0,0 @@
1
- pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
- pmdsky_debug_py/_release.py,sha256=2GifxuvvXbfsoXhr-UlUQKr9xq89CDFzZoa8id1C7bo,31
3
- pmdsky_debug_py/eu.py,sha256=86pLesVimqVgAMDXz3jnqyox3zNb3Y6SPt-NMJsHS9A,1099196
4
- pmdsky_debug_py/eu_itcm.py,sha256=mNJNeuvt59BMTnT_C0LpqOP3mK4Zt0n0e0hbS1oR19A,1049513
5
- pmdsky_debug_py/jp.py,sha256=qoErPZXrkdDex6NQJXtxHJZ_56VIuklYtCWKVSFGPI8,1095707
6
- pmdsky_debug_py/jp_itcm.py,sha256=3Me1jvayzmfg1NJnFDV6-zQZdtpdSOXrlEJJBDDWW88,1049503
7
- pmdsky_debug_py/na.py,sha256=DKMO_uq3f44UvzMrYOymyBoTSD8gGd_0uqOqJqxorIg,1100241
8
- pmdsky_debug_py/na_itcm.py,sha256=Yol9gGwIsQ0N49SkhHHWZUuTz14K_GKCbikHjxvj0lE,1049533
9
- pmdsky_debug_py/protocol.py,sha256=fWgUsCEZyh5XoNpzad0zNmuRozcQq7rElUEuVN3_WTM,324780
10
- pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- pmdsky_debug_py-10.0.18.dist-info/METADATA,sha256=NTU3H4jQJi7D6ZxTdtD6D5TksCfR3aMnS4T-TrUCnYM,1374
12
- pmdsky_debug_py-10.0.18.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
13
- pmdsky_debug_py-10.0.18.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
- pmdsky_debug_py-10.0.18.dist-info/RECORD,,