fgo-api-types 2025.7.2.12.12.43__tar.gz → 2025.7.26.7.28.12__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.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/PKG-INFO +1 -1
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/gameenums.py +6 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/nice.py +1 -2
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/pyproject.toml +1 -1
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/LICENSE +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/README.md +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/gameenums.py
RENAMED
@@ -579,6 +579,7 @@ class FuncTargetType(IntEnum):
|
|
579
579
|
HAND_COMMANDCARD_RANDOM_ONE = 31
|
580
580
|
FIELD_ALL = 32
|
581
581
|
NO_TARGET = 33
|
582
|
+
FIELD_RANDOM = 34
|
582
583
|
|
583
584
|
|
584
585
|
class NiceFuncTargetType(StrEnum):
|
@@ -618,6 +619,7 @@ class NiceFuncTargetType(StrEnum):
|
|
618
619
|
handCommandcardRandomOne = "handCommandcardRandomOne"
|
619
620
|
fieldAll = "fieldAll"
|
620
621
|
noTarget = "noTarget"
|
622
|
+
fieldRandom = "fieldRandom"
|
621
623
|
|
622
624
|
|
623
625
|
FUNC_TARGETTYPE_NAME: dict[int, NiceFuncTargetType] = {
|
@@ -655,6 +657,7 @@ FUNC_TARGETTYPE_NAME: dict[int, NiceFuncTargetType] = {
|
|
655
657
|
31: NiceFuncTargetType.handCommandcardRandomOne,
|
656
658
|
32: NiceFuncTargetType.fieldAll,
|
657
659
|
33: NiceFuncTargetType.noTarget,
|
660
|
+
34: NiceFuncTargetType.fieldRandom,
|
658
661
|
}
|
659
662
|
|
660
663
|
|
@@ -2105,6 +2108,9 @@ class DataValsType(IntEnum):
|
|
2105
2108
|
IgnoreShiftWhiteFade = 233
|
2106
2109
|
BackStepTargets = 234
|
2107
2110
|
ReplacePositionTargets = 235
|
2111
|
+
ApplySupportSvt = 236
|
2112
|
+
ApplyHighestValueInFieldGroup = 237
|
2113
|
+
IsClassIconChangeSaveGrand = 238
|
2108
2114
|
|
2109
2115
|
|
2110
2116
|
class ClassRelationOverwriteType(IntEnum):
|
@@ -648,8 +648,7 @@ class BaseVals(BaseModel):
|
|
648
648
|
IgnoreShiftWhiteFade: int | None = None
|
649
649
|
BackStepTargets: list[int] | None = None
|
650
650
|
ReplacePositionTargets: list[int] | None = None
|
651
|
-
|
652
|
-
ApplySupportSvt: Optional[int] = None
|
651
|
+
ApplySupportSvt: int | None = None
|
653
652
|
# These are not DataVals but guesses from SkillLvEntity and EventDropUpValInfo
|
654
653
|
Individuality: Optional[int] = None
|
655
654
|
EventId: Optional[int] = None
|
File without changes
|
File without changes
|
{fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.7.2.12.12.43 → fgo_api_types-2025.7.26.7.28.12}/fgo_api_types/rayshift.py
RENAMED
File without changes
|
File without changes
|