fgo-api-types 2025.6.20.18.13.58__tar.gz → 2025.7.2.10.38.33__tar.gz
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.
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/PKG-INFO +1 -1
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/gameenums.py +26 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/pyproject.toml +1 -1
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/LICENSE +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/README.md +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/nice.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/gameenums.py
RENAMED
@@ -288,6 +288,7 @@ class FuncType(IntEnum):
|
|
288
288
|
ADD_BATTLE_MISSION_VALUE = 155
|
289
289
|
SET_BATTLE_MISSION_VALUE = 156
|
290
290
|
CHANGE_ENEMY_STATUS_UI_TYPE = 157
|
291
|
+
SWAP_FIELD_POSITION = 158
|
291
292
|
|
292
293
|
|
293
294
|
class NiceFuncType(StrEnum):
|
@@ -414,6 +415,7 @@ class NiceFuncType(StrEnum):
|
|
414
415
|
addBattleMissionValue = "addBattleMissionValue"
|
415
416
|
setBattleMissionValue = "setBattleMissionValue"
|
416
417
|
changeEnemyStatusUiType = "changeEnemyStatusUiType"
|
418
|
+
swapFieldPosition = "swapFieldPosition"
|
417
419
|
|
418
420
|
|
419
421
|
FUNC_TYPE_NAME: dict[int, NiceFuncType] = {
|
@@ -538,6 +540,7 @@ FUNC_TYPE_NAME: dict[int, NiceFuncType] = {
|
|
538
540
|
155: NiceFuncType.addBattleMissionValue,
|
539
541
|
156: NiceFuncType.setBattleMissionValue,
|
540
542
|
157: NiceFuncType.changeEnemyStatusUiType,
|
543
|
+
158: NiceFuncType.swapFieldPosition,
|
541
544
|
}
|
542
545
|
|
543
546
|
|
@@ -655,6 +658,27 @@ FUNC_TARGETTYPE_NAME: dict[int, NiceFuncTargetType] = {
|
|
655
658
|
}
|
656
659
|
|
657
660
|
|
661
|
+
class FuncApplyTargetType(IntEnum):
|
662
|
+
PLAYER = 1
|
663
|
+
ENEMY = 2
|
664
|
+
ALL = 3
|
665
|
+
|
666
|
+
|
667
|
+
class NiceFuncApplyTargetType(StrEnum):
|
668
|
+
"""Function Apply Target Type Enum"""
|
669
|
+
|
670
|
+
player = "player"
|
671
|
+
enemy = "enemy"
|
672
|
+
all = "all"
|
673
|
+
|
674
|
+
|
675
|
+
FUNC_APPLY_TARGET_TYPE_NAME: dict[int, NiceFuncApplyTargetType] = {
|
676
|
+
1: NiceFuncApplyTargetType.player,
|
677
|
+
2: NiceFuncApplyTargetType.enemy,
|
678
|
+
3: NiceFuncApplyTargetType.all,
|
679
|
+
}
|
680
|
+
|
681
|
+
|
658
682
|
class BuffType(IntEnum):
|
659
683
|
NONE = 0
|
660
684
|
INVALID = -1
|
@@ -2079,6 +2103,8 @@ class DataValsType(IntEnum):
|
|
2079
2103
|
ExecEvenCardSelectState = 231
|
2080
2104
|
OverwriteShift = 232
|
2081
2105
|
IgnoreShiftWhiteFade = 233
|
2106
|
+
BackStepTargets = 234
|
2107
|
+
ReplacePositionTargets = 235
|
2082
2108
|
|
2083
2109
|
|
2084
2110
|
class ClassRelationOverwriteType(IntEnum):
|
File without changes
|
File without changes
|
{fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/common.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/rayshift.py
RENAMED
File without changes
|
{fgo_api_types-2025.6.20.18.13.58 → fgo_api_types-2025.7.2.10.38.33}/fgo_api_types/search.py
RENAMED
File without changes
|