pmdsky-debug-py 10.0.50__py3-none-any.whl → 10.0.51__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 +795 -12
- pmdsky_debug_py/eu_itcm.py +908 -125
- pmdsky_debug_py/jp.py +795 -12
- pmdsky_debug_py/jp_itcm.py +908 -125
- pmdsky_debug_py/na.py +795 -12
- pmdsky_debug_py/na_itcm.py +908 -125
- pmdsky_debug_py/protocol.py +436 -1
- {pmdsky_debug_py-10.0.50.dist-info → pmdsky_debug_py-10.0.51.dist-info}/METADATA +2 -2
- pmdsky_debug_py-10.0.51.dist-info/RECORD +14 -0
- {pmdsky_debug_py-10.0.50.dist-info → pmdsky_debug_py-10.0.51.dist-info}/WHEEL +1 -1
- pmdsky_debug_py-10.0.50.dist-info/RECORD +0 -14
- {pmdsky_debug_py-10.0.50.dist-info → pmdsky_debug_py-10.0.51.dist-info}/top_level.txt +0 -0
pmdsky_debug_py/protocol.py
CHANGED
|
@@ -3222,6 +3222,11 @@ class Arm9FunctionsProtocol(Protocol):
|
|
|
3222
3222
|
None,
|
|
3223
3223
|
]
|
|
3224
3224
|
|
|
3225
|
+
SetupAndShowKeyboard: Symbol[
|
|
3226
|
+
Optional[list[int]],
|
|
3227
|
+
None,
|
|
3228
|
+
]
|
|
3229
|
+
|
|
3225
3230
|
ShowKeyboard: Symbol[
|
|
3226
3231
|
Optional[list[int]],
|
|
3227
3232
|
None,
|
|
@@ -4382,6 +4387,11 @@ class Arm9FunctionsProtocol(Protocol):
|
|
|
4382
4387
|
None,
|
|
4383
4388
|
]
|
|
4384
4389
|
|
|
4390
|
+
SetBaseStatsMovesGroundMonster: Symbol[
|
|
4391
|
+
Optional[list[int]],
|
|
4392
|
+
None,
|
|
4393
|
+
]
|
|
4394
|
+
|
|
4385
4395
|
StrcmpMonsterName: Symbol[
|
|
4386
4396
|
Optional[list[int]],
|
|
4387
4397
|
None,
|
|
@@ -4457,6 +4467,11 @@ class Arm9FunctionsProtocol(Protocol):
|
|
|
4457
4467
|
None,
|
|
4458
4468
|
]
|
|
4459
4469
|
|
|
4470
|
+
ApplyLevelUpBoostsToGroundMonster: Symbol[
|
|
4471
|
+
Optional[list[int]],
|
|
4472
|
+
None,
|
|
4473
|
+
]
|
|
4474
|
+
|
|
4460
4475
|
GetMonsterGenderVeneer: Symbol[
|
|
4461
4476
|
Optional[list[int]],
|
|
4462
4477
|
None,
|
|
@@ -11382,6 +11397,26 @@ Overlay10Protocol = SectionProtocol[
|
|
|
11382
11397
|
|
|
11383
11398
|
class Overlay11FunctionsProtocol(Protocol):
|
|
11384
11399
|
|
|
11400
|
+
InitScriptRoutineState: Symbol[
|
|
11401
|
+
Optional[list[int]],
|
|
11402
|
+
None,
|
|
11403
|
+
]
|
|
11404
|
+
|
|
11405
|
+
InitScriptRoutine: Symbol[
|
|
11406
|
+
Optional[list[int]],
|
|
11407
|
+
None,
|
|
11408
|
+
]
|
|
11409
|
+
|
|
11410
|
+
LockRoutine: Symbol[
|
|
11411
|
+
Optional[list[int]],
|
|
11412
|
+
None,
|
|
11413
|
+
]
|
|
11414
|
+
|
|
11415
|
+
UnlockRoutine: Symbol[
|
|
11416
|
+
Optional[list[int]],
|
|
11417
|
+
None,
|
|
11418
|
+
]
|
|
11419
|
+
|
|
11385
11420
|
UnlockScriptingLock: Symbol[
|
|
11386
11421
|
Optional[list[int]],
|
|
11387
11422
|
None,
|
|
@@ -11397,11 +11432,21 @@ class Overlay11FunctionsProtocol(Protocol):
|
|
|
11397
11432
|
None,
|
|
11398
11433
|
]
|
|
11399
11434
|
|
|
11435
|
+
GetSsbString: Symbol[
|
|
11436
|
+
Optional[list[int]],
|
|
11437
|
+
None,
|
|
11438
|
+
]
|
|
11439
|
+
|
|
11400
11440
|
HandleUnlocks: Symbol[
|
|
11401
11441
|
Optional[list[int]],
|
|
11402
11442
|
None,
|
|
11403
11443
|
]
|
|
11404
11444
|
|
|
11445
|
+
ScriptCaseProcess: Symbol[
|
|
11446
|
+
Optional[list[int]],
|
|
11447
|
+
None,
|
|
11448
|
+
]
|
|
11449
|
+
|
|
11405
11450
|
LoadFileFromRomVeneer: Symbol[
|
|
11406
11451
|
Optional[list[int]],
|
|
11407
11452
|
None,
|
|
@@ -11587,6 +11632,11 @@ class Overlay11FunctionsProtocol(Protocol):
|
|
|
11587
11632
|
None,
|
|
11588
11633
|
]
|
|
11589
11634
|
|
|
11635
|
+
UnlockMainRoutine: Symbol[
|
|
11636
|
+
Optional[list[int]],
|
|
11637
|
+
None,
|
|
11638
|
+
]
|
|
11639
|
+
|
|
11590
11640
|
AllocAndInitPartnerFollowDataAndLiveActorList: Symbol[
|
|
11591
11641
|
Optional[list[int]],
|
|
11592
11642
|
None,
|
|
@@ -11597,17 +11647,82 @@ class Overlay11FunctionsProtocol(Protocol):
|
|
|
11597
11647
|
None,
|
|
11598
11648
|
]
|
|
11599
11649
|
|
|
11650
|
+
GetLiveActorIdxFromScriptEntityId: Symbol[
|
|
11651
|
+
Optional[list[int]],
|
|
11652
|
+
None,
|
|
11653
|
+
]
|
|
11654
|
+
|
|
11600
11655
|
DeleteLiveActor: Symbol[
|
|
11601
11656
|
Optional[list[int]],
|
|
11602
11657
|
None,
|
|
11603
11658
|
]
|
|
11604
11659
|
|
|
11660
|
+
SetAttributeBitfieldLiveActor: Symbol[
|
|
11661
|
+
Optional[list[int]],
|
|
11662
|
+
None,
|
|
11663
|
+
]
|
|
11664
|
+
|
|
11665
|
+
ResetAttributeBitfieldLiveActor: Symbol[
|
|
11666
|
+
Optional[list[int]],
|
|
11667
|
+
None,
|
|
11668
|
+
]
|
|
11669
|
+
|
|
11670
|
+
UnlockActorRoutines: Symbol[
|
|
11671
|
+
Optional[list[int]],
|
|
11672
|
+
None,
|
|
11673
|
+
]
|
|
11674
|
+
|
|
11675
|
+
GetCollidingActorId: Symbol[
|
|
11676
|
+
Optional[list[int]],
|
|
11677
|
+
None,
|
|
11678
|
+
]
|
|
11679
|
+
|
|
11605
11680
|
ChangeActorAnimation: Symbol[
|
|
11606
11681
|
Optional[list[int]],
|
|
11607
11682
|
None,
|
|
11608
11683
|
]
|
|
11609
11684
|
|
|
11610
|
-
|
|
11685
|
+
SetPositionLiveActor: Symbol[
|
|
11686
|
+
Optional[list[int]],
|
|
11687
|
+
None,
|
|
11688
|
+
]
|
|
11689
|
+
|
|
11690
|
+
GetIdLiveActor: Symbol[
|
|
11691
|
+
Optional[list[int]],
|
|
11692
|
+
None,
|
|
11693
|
+
]
|
|
11694
|
+
|
|
11695
|
+
GetCollisionBoxLiveActor: Symbol[
|
|
11696
|
+
Optional[list[int]],
|
|
11697
|
+
None,
|
|
11698
|
+
]
|
|
11699
|
+
|
|
11700
|
+
SetPositionInitialLiveActor: Symbol[
|
|
11701
|
+
Optional[list[int]],
|
|
11702
|
+
None,
|
|
11703
|
+
]
|
|
11704
|
+
|
|
11705
|
+
SetMovementRangeLiveActor: Symbol[
|
|
11706
|
+
Optional[list[int]],
|
|
11707
|
+
None,
|
|
11708
|
+
]
|
|
11709
|
+
|
|
11710
|
+
GetCollisionBoxCenterLiveActor: Symbol[
|
|
11711
|
+
Optional[list[int]],
|
|
11712
|
+
None,
|
|
11713
|
+
]
|
|
11714
|
+
|
|
11715
|
+
SetPositionLiveActorVeneer: Symbol[
|
|
11716
|
+
Optional[list[int]],
|
|
11717
|
+
None,
|
|
11718
|
+
]
|
|
11719
|
+
|
|
11720
|
+
GetHeightLiveActor: Symbol[
|
|
11721
|
+
Optional[list[int]],
|
|
11722
|
+
None,
|
|
11723
|
+
]
|
|
11724
|
+
|
|
11725
|
+
SetHeightLiveActor: Symbol[
|
|
11611
11726
|
Optional[list[int]],
|
|
11612
11727
|
None,
|
|
11613
11728
|
]
|
|
@@ -11622,6 +11737,311 @@ class Overlay11FunctionsProtocol(Protocol):
|
|
|
11622
11737
|
None,
|
|
11623
11738
|
]
|
|
11624
11739
|
|
|
11740
|
+
SetAnimationLiveActor: Symbol[
|
|
11741
|
+
Optional[list[int]],
|
|
11742
|
+
None,
|
|
11743
|
+
]
|
|
11744
|
+
|
|
11745
|
+
SetEffectLiveActor: Symbol[
|
|
11746
|
+
Optional[list[int]],
|
|
11747
|
+
None,
|
|
11748
|
+
]
|
|
11749
|
+
|
|
11750
|
+
GetAnimationStatusLiveActor: Symbol[
|
|
11751
|
+
Optional[list[int]],
|
|
11752
|
+
None,
|
|
11753
|
+
]
|
|
11754
|
+
|
|
11755
|
+
GetEffectStatusLiveActor: Symbol[
|
|
11756
|
+
Optional[list[int]],
|
|
11757
|
+
None,
|
|
11758
|
+
]
|
|
11759
|
+
|
|
11760
|
+
GetAttributeBitfieldLiveActor: Symbol[
|
|
11761
|
+
Optional[list[int]],
|
|
11762
|
+
None,
|
|
11763
|
+
]
|
|
11764
|
+
|
|
11765
|
+
SetAttributeBitfieldLiveActorWrapper: Symbol[
|
|
11766
|
+
Optional[list[int]],
|
|
11767
|
+
None,
|
|
11768
|
+
]
|
|
11769
|
+
|
|
11770
|
+
ResetAttributeBitfieldLiveActorWrapper: Symbol[
|
|
11771
|
+
Optional[list[int]],
|
|
11772
|
+
None,
|
|
11773
|
+
]
|
|
11774
|
+
|
|
11775
|
+
SetBlinkLiveActor: Symbol[
|
|
11776
|
+
Optional[list[int]],
|
|
11777
|
+
None,
|
|
11778
|
+
]
|
|
11779
|
+
|
|
11780
|
+
SetPositionOffsetLiveActor: Symbol[
|
|
11781
|
+
Optional[list[int]],
|
|
11782
|
+
None,
|
|
11783
|
+
]
|
|
11784
|
+
|
|
11785
|
+
InitPartnerFollowData: Symbol[
|
|
11786
|
+
Optional[list[int]],
|
|
11787
|
+
None,
|
|
11788
|
+
]
|
|
11789
|
+
|
|
11790
|
+
DeleteLiveObject: Symbol[
|
|
11791
|
+
Optional[list[int]],
|
|
11792
|
+
None,
|
|
11793
|
+
]
|
|
11794
|
+
|
|
11795
|
+
SetAttributeBitfieldLiveObject: Symbol[
|
|
11796
|
+
Optional[list[int]],
|
|
11797
|
+
None,
|
|
11798
|
+
]
|
|
11799
|
+
|
|
11800
|
+
ResetAttributeBitfieldLiveObject: Symbol[
|
|
11801
|
+
Optional[list[int]],
|
|
11802
|
+
None,
|
|
11803
|
+
]
|
|
11804
|
+
|
|
11805
|
+
UnlockObjectRoutines: Symbol[
|
|
11806
|
+
Optional[list[int]],
|
|
11807
|
+
None,
|
|
11808
|
+
]
|
|
11809
|
+
|
|
11810
|
+
GetCollidingObjectId: Symbol[
|
|
11811
|
+
Optional[list[int]],
|
|
11812
|
+
None,
|
|
11813
|
+
]
|
|
11814
|
+
|
|
11815
|
+
SetPositionLiveObject: Symbol[
|
|
11816
|
+
Optional[list[int]],
|
|
11817
|
+
None,
|
|
11818
|
+
]
|
|
11819
|
+
|
|
11820
|
+
GetIdLiveObject: Symbol[
|
|
11821
|
+
Optional[list[int]],
|
|
11822
|
+
None,
|
|
11823
|
+
]
|
|
11824
|
+
|
|
11825
|
+
GetCollisionBoxLiveObject: Symbol[
|
|
11826
|
+
Optional[list[int]],
|
|
11827
|
+
None,
|
|
11828
|
+
]
|
|
11829
|
+
|
|
11830
|
+
SetPositionInitialLiveObject: Symbol[
|
|
11831
|
+
Optional[list[int]],
|
|
11832
|
+
None,
|
|
11833
|
+
]
|
|
11834
|
+
|
|
11835
|
+
SetMovementRangeLiveObject: Symbol[
|
|
11836
|
+
Optional[list[int]],
|
|
11837
|
+
None,
|
|
11838
|
+
]
|
|
11839
|
+
|
|
11840
|
+
GetCollisionBoxCenterLiveObject: Symbol[
|
|
11841
|
+
Optional[list[int]],
|
|
11842
|
+
None,
|
|
11843
|
+
]
|
|
11844
|
+
|
|
11845
|
+
SetPositionLiveObjectVeneer: Symbol[
|
|
11846
|
+
Optional[list[int]],
|
|
11847
|
+
None,
|
|
11848
|
+
]
|
|
11849
|
+
|
|
11850
|
+
GetHeightLiveObject: Symbol[
|
|
11851
|
+
Optional[list[int]],
|
|
11852
|
+
None,
|
|
11853
|
+
]
|
|
11854
|
+
|
|
11855
|
+
SetHeightLiveObject: Symbol[
|
|
11856
|
+
Optional[list[int]],
|
|
11857
|
+
None,
|
|
11858
|
+
]
|
|
11859
|
+
|
|
11860
|
+
GetDirectionLiveObject: Symbol[
|
|
11861
|
+
Optional[list[int]],
|
|
11862
|
+
None,
|
|
11863
|
+
]
|
|
11864
|
+
|
|
11865
|
+
SetDirectionLiveObject: Symbol[
|
|
11866
|
+
Optional[list[int]],
|
|
11867
|
+
None,
|
|
11868
|
+
]
|
|
11869
|
+
|
|
11870
|
+
SetAnimationLiveObject: Symbol[
|
|
11871
|
+
Optional[list[int]],
|
|
11872
|
+
None,
|
|
11873
|
+
]
|
|
11874
|
+
|
|
11875
|
+
SetEffectLiveObject: Symbol[
|
|
11876
|
+
Optional[list[int]],
|
|
11877
|
+
None,
|
|
11878
|
+
]
|
|
11879
|
+
|
|
11880
|
+
GetAnimationStatusLiveObject: Symbol[
|
|
11881
|
+
Optional[list[int]],
|
|
11882
|
+
None,
|
|
11883
|
+
]
|
|
11884
|
+
|
|
11885
|
+
GetEffectStatusLiveObject: Symbol[
|
|
11886
|
+
Optional[list[int]],
|
|
11887
|
+
None,
|
|
11888
|
+
]
|
|
11889
|
+
|
|
11890
|
+
GetAttributeBitfieldLiveObject: Symbol[
|
|
11891
|
+
Optional[list[int]],
|
|
11892
|
+
None,
|
|
11893
|
+
]
|
|
11894
|
+
|
|
11895
|
+
SetAttributeBitfieldLiveObjectWrapper: Symbol[
|
|
11896
|
+
Optional[list[int]],
|
|
11897
|
+
None,
|
|
11898
|
+
]
|
|
11899
|
+
|
|
11900
|
+
ResetAttributeBitfieldLiveObjectWrapper: Symbol[
|
|
11901
|
+
Optional[list[int]],
|
|
11902
|
+
None,
|
|
11903
|
+
]
|
|
11904
|
+
|
|
11905
|
+
SetBlinkLiveObject: Symbol[
|
|
11906
|
+
Optional[list[int]],
|
|
11907
|
+
None,
|
|
11908
|
+
]
|
|
11909
|
+
|
|
11910
|
+
SetPositionOffsetLiveObject: Symbol[
|
|
11911
|
+
Optional[list[int]],
|
|
11912
|
+
None,
|
|
11913
|
+
]
|
|
11914
|
+
|
|
11915
|
+
DeleteLivePerformer: Symbol[
|
|
11916
|
+
Optional[list[int]],
|
|
11917
|
+
None,
|
|
11918
|
+
]
|
|
11919
|
+
|
|
11920
|
+
SetAttributeBitfieldLivePerformer: Symbol[
|
|
11921
|
+
Optional[list[int]],
|
|
11922
|
+
None,
|
|
11923
|
+
]
|
|
11924
|
+
|
|
11925
|
+
ResetAttributeBitfieldLivePerformer: Symbol[
|
|
11926
|
+
Optional[list[int]],
|
|
11927
|
+
None,
|
|
11928
|
+
]
|
|
11929
|
+
|
|
11930
|
+
UnlockPerformerRoutines: Symbol[
|
|
11931
|
+
Optional[list[int]],
|
|
11932
|
+
None,
|
|
11933
|
+
]
|
|
11934
|
+
|
|
11935
|
+
SetPositionLivePerformer: Symbol[
|
|
11936
|
+
Optional[list[int]],
|
|
11937
|
+
None,
|
|
11938
|
+
]
|
|
11939
|
+
|
|
11940
|
+
GetIdLivePerformer: Symbol[
|
|
11941
|
+
Optional[list[int]],
|
|
11942
|
+
None,
|
|
11943
|
+
]
|
|
11944
|
+
|
|
11945
|
+
GetCollisionBoxLivePerformer: Symbol[
|
|
11946
|
+
Optional[list[int]],
|
|
11947
|
+
None,
|
|
11948
|
+
]
|
|
11949
|
+
|
|
11950
|
+
SetPositionInitialLivePerformer: Symbol[
|
|
11951
|
+
Optional[list[int]],
|
|
11952
|
+
None,
|
|
11953
|
+
]
|
|
11954
|
+
|
|
11955
|
+
SetMovementRangeLivePerformer: Symbol[
|
|
11956
|
+
Optional[list[int]],
|
|
11957
|
+
None,
|
|
11958
|
+
]
|
|
11959
|
+
|
|
11960
|
+
GetCollisionBoxCenterLivePerformer: Symbol[
|
|
11961
|
+
Optional[list[int]],
|
|
11962
|
+
None,
|
|
11963
|
+
]
|
|
11964
|
+
|
|
11965
|
+
SetPositionLivePerformerVeneer: Symbol[
|
|
11966
|
+
Optional[list[int]],
|
|
11967
|
+
None,
|
|
11968
|
+
]
|
|
11969
|
+
|
|
11970
|
+
GetHeightLivePerformer: Symbol[
|
|
11971
|
+
Optional[list[int]],
|
|
11972
|
+
None,
|
|
11973
|
+
]
|
|
11974
|
+
|
|
11975
|
+
SetHeightLivePerformer: Symbol[
|
|
11976
|
+
Optional[list[int]],
|
|
11977
|
+
None,
|
|
11978
|
+
]
|
|
11979
|
+
|
|
11980
|
+
GetDirectionLivePerformer: Symbol[
|
|
11981
|
+
Optional[list[int]],
|
|
11982
|
+
None,
|
|
11983
|
+
]
|
|
11984
|
+
|
|
11985
|
+
SetDirectionLivePerformer: Symbol[
|
|
11986
|
+
Optional[list[int]],
|
|
11987
|
+
None,
|
|
11988
|
+
]
|
|
11989
|
+
|
|
11990
|
+
SetAnimationLivePerformer: Symbol[
|
|
11991
|
+
Optional[list[int]],
|
|
11992
|
+
None,
|
|
11993
|
+
]
|
|
11994
|
+
|
|
11995
|
+
SetEffectLivePerformer: Symbol[
|
|
11996
|
+
Optional[list[int]],
|
|
11997
|
+
None,
|
|
11998
|
+
]
|
|
11999
|
+
|
|
12000
|
+
GetAnimationStatusLivePerformer: Symbol[
|
|
12001
|
+
Optional[list[int]],
|
|
12002
|
+
None,
|
|
12003
|
+
]
|
|
12004
|
+
|
|
12005
|
+
GetEffectStatusLivePerformer: Symbol[
|
|
12006
|
+
Optional[list[int]],
|
|
12007
|
+
None,
|
|
12008
|
+
]
|
|
12009
|
+
|
|
12010
|
+
GetAttributeBitfieldLivePerformer: Symbol[
|
|
12011
|
+
Optional[list[int]],
|
|
12012
|
+
None,
|
|
12013
|
+
]
|
|
12014
|
+
|
|
12015
|
+
SetAttributeBitfieldLivePerformerWrapper: Symbol[
|
|
12016
|
+
Optional[list[int]],
|
|
12017
|
+
None,
|
|
12018
|
+
]
|
|
12019
|
+
|
|
12020
|
+
ResetAttributeBitfieldLivePerformerWrapper: Symbol[
|
|
12021
|
+
Optional[list[int]],
|
|
12022
|
+
None,
|
|
12023
|
+
]
|
|
12024
|
+
|
|
12025
|
+
SetBlinkLivePerformer: Symbol[
|
|
12026
|
+
Optional[list[int]],
|
|
12027
|
+
None,
|
|
12028
|
+
]
|
|
12029
|
+
|
|
12030
|
+
SetPositionOffsetLivePerformer: Symbol[
|
|
12031
|
+
Optional[list[int]],
|
|
12032
|
+
None,
|
|
12033
|
+
]
|
|
12034
|
+
|
|
12035
|
+
DeleteLiveEvent: Symbol[
|
|
12036
|
+
Optional[list[int]],
|
|
12037
|
+
None,
|
|
12038
|
+
]
|
|
12039
|
+
|
|
12040
|
+
GetCollidingEventId: Symbol[
|
|
12041
|
+
Optional[list[int]],
|
|
12042
|
+
None,
|
|
12043
|
+
]
|
|
12044
|
+
|
|
11625
12045
|
CreateTeamInfoBox: Symbol[
|
|
11626
12046
|
Optional[list[int]],
|
|
11627
12047
|
None,
|
|
@@ -11775,11 +12195,26 @@ class Overlay11DataProtocol(Protocol):
|
|
|
11775
12195
|
Optional[int],
|
|
11776
12196
|
]
|
|
11777
12197
|
|
|
12198
|
+
ACTOR_FUNCTION_TABLE: Symbol[
|
|
12199
|
+
Optional[list[int]],
|
|
12200
|
+
Optional[int],
|
|
12201
|
+
]
|
|
12202
|
+
|
|
11778
12203
|
SETANIMATION_TABLE: Symbol[
|
|
11779
12204
|
Optional[list[int]],
|
|
11780
12205
|
Optional[int],
|
|
11781
12206
|
]
|
|
11782
12207
|
|
|
12208
|
+
OBJECT_FUNCTION_TABLE: Symbol[
|
|
12209
|
+
Optional[list[int]],
|
|
12210
|
+
Optional[int],
|
|
12211
|
+
]
|
|
12212
|
+
|
|
12213
|
+
PERFORMER_FUNCTION_TABLE: Symbol[
|
|
12214
|
+
Optional[list[int]],
|
|
12215
|
+
Optional[int],
|
|
12216
|
+
]
|
|
12217
|
+
|
|
11783
12218
|
TEAM_INFO_BOX_DEFAULT_WINDOW_PARAMS: Symbol[
|
|
11784
12219
|
Optional[list[int]],
|
|
11785
12220
|
Optional[int],
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
+
pmdsky_debug_py/_release.py,sha256=M8fACY9boEuWX8tCb-bfxVOPERtGC7npvEzoqVCVcQo,31
|
|
3
|
+
pmdsky_debug_py/eu.py,sha256=3bwzvPgTjLhizUUtjKlJILwD6nEtaYY5DWXWFXvyXb0,1152712
|
|
4
|
+
pmdsky_debug_py/eu_itcm.py,sha256=Nv23iAKootEkzm3Yen5WxrPHLlDd0PMFD6zTo19Noiw,1101062
|
|
5
|
+
pmdsky_debug_py/jp.py,sha256=VZPyV7cY6bDb01qKSxVvOa-3mvFRMaEGQLaDagvK73Y,1149443
|
|
6
|
+
pmdsky_debug_py/jp_itcm.py,sha256=4_o5kEO6keSSBRI1NaNP_G6FtW1YgKu4YBUVmp0tjP8,1101052
|
|
7
|
+
pmdsky_debug_py/na.py,sha256=sboipC-7FBjbixV-GGTajpH4WOe50eaW_TfJ44vHk50,1153670
|
|
8
|
+
pmdsky_debug_py/na_itcm.py,sha256=nlXuiY0Bsb3-X9iSdvB--Y8tn2cuDS3xVUX3o6KREMk,1101062
|
|
9
|
+
pmdsky_debug_py/protocol.py,sha256=mbWe7084E0eDifzaCTGaxa88LWvgJSansKG8osLlz1U,338493
|
|
10
|
+
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pmdsky_debug_py-10.0.51.dist-info/METADATA,sha256=mvdusCU05W7iT88j_5tH5BqYwllhHRG7e-T1ozuhXjs,1376
|
|
12
|
+
pmdsky_debug_py-10.0.51.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
13
|
+
pmdsky_debug_py-10.0.51.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
+
pmdsky_debug_py-10.0.51.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
|
|
2
|
-
pmdsky_debug_py/_release.py,sha256=njy5zV3enxCW6xYrrmYrSJGP63eowuYwtr6ctuxPeuk,31
|
|
3
|
-
pmdsky_debug_py/eu.py,sha256=TJWLqPi2yrYnF4-vHxO6sfuwE9qdUOar6MMer3lMdRc,1124709
|
|
4
|
-
pmdsky_debug_py/eu_itcm.py,sha256=izzfl1kFKxhtW1W2x-1HlN8znqoQLnv2hv9uLfIpgOg,1074093
|
|
5
|
-
pmdsky_debug_py/jp.py,sha256=NqpSQCy9VWdTX7yrGCJmMyzm5yduQcicOAPB5PhvRes,1121440
|
|
6
|
-
pmdsky_debug_py/jp_itcm.py,sha256=zLuRgoesqlGH4XuRBpsDIszed-DWQuHNyKMzoIcAKKY,1074083
|
|
7
|
-
pmdsky_debug_py/na.py,sha256=SBc4Fy8s35cHhJiHkEFVhNQL6A0N2_yjZcELsbYh1sA,1125667
|
|
8
|
-
pmdsky_debug_py/na_itcm.py,sha256=49Nyt1AEl4R2oOiSLFVMAwZGihwddJlbN5bIzjopJzk,1074093
|
|
9
|
-
pmdsky_debug_py/protocol.py,sha256=rbpPI9QZdSWobIDJdwEU8YxnljBaOgxmQOLRLJHZzZw,330750
|
|
10
|
-
pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pmdsky_debug_py-10.0.50.dist-info/METADATA,sha256=b3yfRrd4zKDzOWfNekmLgHCq-9MpqULHxvo_yVx4n5w,1376
|
|
12
|
-
pmdsky_debug_py-10.0.50.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
13
|
-
pmdsky_debug_py-10.0.50.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
|
|
14
|
-
pmdsky_debug_py-10.0.50.dist-info/RECORD,,
|
|
File without changes
|