pmdsky-debug-py 10.0.39__py3-none-any.whl → 10.0.40__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+d18e9bc451"
1
+ RELEASE = "v0.10.0+4fb855866e"
pmdsky_debug_py/eu.py CHANGED
@@ -1008,6 +1008,15 @@ class EuArm9Functions:
1008
1008
  None,
1009
1009
  )
1010
1010
 
1011
+ TransformPaletteDataWithFlushDivideFade = Symbol(
1012
+ [0xAE38],
1013
+ [0x200AE38],
1014
+ None,
1015
+ "TransformPaletteDataWithFlushDivideFade",
1016
+ "r0: palette_data",
1017
+ None,
1018
+ )
1019
+
1011
1020
  UpdateFadeStatus = Symbol(
1012
1021
  [0xBA18],
1013
1022
  [0x200BA18],
@@ -7973,8 +7982,8 @@ class EuArm9Functions:
7973
7982
  )
7974
7983
 
7975
7984
  GendersNotEqualNotGenderless = Symbol(
7976
- None,
7977
- None,
7985
+ [0x55244],
7986
+ [0x2055244],
7978
7987
  None,
7979
7988
  "GendersNotEqualNotGenderless",
7980
7989
  "Checks if the genders for two monster IDs are not equal. Always returns false\nif either gender is GENDER_GENDERLESS.\n\nr0: id1\nr1: id2\nreturn: bool",
@@ -996,6 +996,15 @@ class EuItcmArm9Functions:
996
996
  None,
997
997
  )
998
998
 
999
+ TransformPaletteDataWithFlushDivideFade = Symbol(
1000
+ None,
1001
+ None,
1002
+ None,
1003
+ "TransformPaletteDataWithFlushDivideFade",
1004
+ "r0: palette_data",
1005
+ None,
1006
+ )
1007
+
999
1008
  UpdateFadeStatus = Symbol(
1000
1009
  None,
1001
1010
  None,
pmdsky_debug_py/jp.py CHANGED
@@ -1008,6 +1008,15 @@ class JpArm9Functions:
1008
1008
  None,
1009
1009
  )
1010
1010
 
1011
+ TransformPaletteDataWithFlushDivideFade = Symbol(
1012
+ [0xAE38],
1013
+ [0x200AE38],
1014
+ None,
1015
+ "TransformPaletteDataWithFlushDivideFade",
1016
+ "r0: palette_data",
1017
+ None,
1018
+ )
1019
+
1011
1020
  UpdateFadeStatus = Symbol(
1012
1021
  [0xB990],
1013
1022
  [0x200B990],
@@ -7973,8 +7982,8 @@ class JpArm9Functions:
7973
7982
  )
7974
7983
 
7975
7984
  GendersNotEqualNotGenderless = Symbol(
7976
- None,
7977
- None,
7985
+ [0x55200],
7986
+ [0x2055200],
7978
7987
  None,
7979
7988
  "GendersNotEqualNotGenderless",
7980
7989
  "Checks if the genders for two monster IDs are not equal. Always returns false\nif either gender is GENDER_GENDERLESS.\n\nr0: id1\nr1: id2\nreturn: bool",
@@ -23576,8 +23585,8 @@ class JpOverlay29Functions:
23576
23585
  )
23577
23586
 
23578
23587
  TryRemoveTrap = Symbol(
23579
- None,
23580
- None,
23588
+ [0x11C00],
23589
+ [0x22EF4E0],
23581
23590
  None,
23582
23591
  "TryRemoveTrap",
23583
23592
  "Tries to remove a trap from the tile at the passed position. It does nothing\nif there is no trap on the tile at that position.\n\nr0: position\nr1: bool update trap visibility\nreturn: whether a trap was succesfully removed or not",
@@ -996,6 +996,15 @@ class JpItcmArm9Functions:
996
996
  None,
997
997
  )
998
998
 
999
+ TransformPaletteDataWithFlushDivideFade = Symbol(
1000
+ None,
1001
+ None,
1002
+ None,
1003
+ "TransformPaletteDataWithFlushDivideFade",
1004
+ "r0: palette_data",
1005
+ None,
1006
+ )
1007
+
999
1008
  UpdateFadeStatus = Symbol(
1000
1009
  None,
1001
1010
  None,
pmdsky_debug_py/na.py CHANGED
@@ -1008,6 +1008,15 @@ class NaArm9Functions:
1008
1008
  None,
1009
1009
  )
1010
1010
 
1011
+ TransformPaletteDataWithFlushDivideFade = Symbol(
1012
+ [0xAE38],
1013
+ [0x200AE38],
1014
+ None,
1015
+ "TransformPaletteDataWithFlushDivideFade",
1016
+ "r0: palette_data",
1017
+ None,
1018
+ )
1019
+
1011
1020
  UpdateFadeStatus = Symbol(
1012
1021
  [0xB990],
1013
1022
  [0x200B990],
@@ -996,6 +996,15 @@ class NaItcmArm9Functions:
996
996
  None,
997
997
  )
998
998
 
999
+ TransformPaletteDataWithFlushDivideFade = Symbol(
1000
+ None,
1001
+ None,
1002
+ None,
1003
+ "TransformPaletteDataWithFlushDivideFade",
1004
+ "r0: palette_data",
1005
+ None,
1006
+ )
1007
+
999
1008
  UpdateFadeStatus = Symbol(
1000
1009
  None,
1001
1010
  None,
@@ -622,6 +622,11 @@ class Arm9FunctionsProtocol(Protocol):
622
622
  None,
623
623
  ]
624
624
 
625
+ TransformPaletteDataWithFlushDivideFade: Symbol[
626
+ Optional[list[int]],
627
+ None,
628
+ ]
629
+
625
630
  UpdateFadeStatus: Symbol[
626
631
  Optional[list[int]],
627
632
  None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pmdsky-debug-py
3
- Version: 10.0.39
3
+ Version: 10.0.40
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=jtq7OZpa680vP6g4YJx1pbzi6nRFxTRlOyA1N0ty6y4,31
3
+ pmdsky_debug_py/eu.py,sha256=Lqm8SeAaJHLvmS7lAdrBNaTKy1O_Jwi3fZZ52EB_nrM,1115614
4
+ pmdsky_debug_py/eu_itcm.py,sha256=3xZ6J8F9OI1pFHuIkNbKsxSW2DLM1Nzct6W11cGodwg,1065368
5
+ pmdsky_debug_py/jp.py,sha256=lfuDLUFmzQ-LVDKqO6M0-XvkBP9SkLtq-Qzefl3Lr40,1112025
6
+ pmdsky_debug_py/jp_itcm.py,sha256=vN0oNwGsuQsqU1Z06t_2aVSeMLDsP0XAV9KM0YYRU9k,1065358
7
+ pmdsky_debug_py/na.py,sha256=dUVsFRfRWrIByYXIveQvb1Wr1LWuu5DQmw0gFfOI1QQ,1116558
8
+ pmdsky_debug_py/na_itcm.py,sha256=_SJIPDeQjkd9BcZVZjOY-0RCe9prLNQgbxnOcRMtRpM,1065388
9
+ pmdsky_debug_py/protocol.py,sha256=76fSbZRmdX99zm_MG0ISZu2RzRqHsXaGWFMttWDE6dc,328671
10
+ pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pmdsky_debug_py-10.0.40.dist-info/METADATA,sha256=qYzLvxYo4hWdeBh1oe5eZ3-K10sNpVsBL8KyRUQT_0g,1374
12
+ pmdsky_debug_py-10.0.40.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
13
+ pmdsky_debug_py-10.0.40.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
+ pmdsky_debug_py-10.0.40.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
- pmdsky_debug_py/_release.py,sha256=NWwZBaSpmnhEXQ2LHCmrVIgXOc0oUhv-5eqogFWU6j0,31
3
- pmdsky_debug_py/eu.py,sha256=yAwD6ujpAAQb76cQZrYyPQ1h0CetjLoMNDH6I2LOBrQ,1115395
4
- pmdsky_debug_py/eu_itcm.py,sha256=mVxm2TnojhdeDOyvqxLo5G_xz46FFWc8mavBD9t2QnE,1065172
5
- pmdsky_debug_py/jp.py,sha256=okaIAg7rq5Gi2_DqAWVwjJ_WRMmgycQlReNEP6x-jMg,1111794
6
- pmdsky_debug_py/jp_itcm.py,sha256=sX9BrBHo7438pGnELNJGo6rhBXrcpU2HnsdeZY3-ZPE,1065162
7
- pmdsky_debug_py/na.py,sha256=JoeavGSothuI0-VstTzxJtMHSukP-sCjYplyRLmUO0c,1116351
8
- pmdsky_debug_py/na_itcm.py,sha256=qu1Tn6j7fNg85MtzeiBXQ6RBy_3bkiM70DX7bwxBHbI,1065192
9
- pmdsky_debug_py/protocol.py,sha256=ZRA1gPBalCCNUdDPeb4NLYkhhO7uyI1K_dixwAeq33c,328568
10
- pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- pmdsky_debug_py-10.0.39.dist-info/METADATA,sha256=mbVa_mXxu98LJwc_FmjgxdlItIG-wUrXRpaSe3-KBn8,1374
12
- pmdsky_debug_py-10.0.39.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
13
- pmdsky_debug_py-10.0.39.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
- pmdsky_debug_py-10.0.39.dist-info/RECORD,,