fgo-api-types 2025.8.13.11.45.41__tar.gz → 2025.8.14.0.41.27__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.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/PKG-INFO +1 -1
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/gameenums.py +23 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/nice.py +2 -1
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/pyproject.toml +1 -1
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/LICENSE +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/README.md +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/gameenums.py
RENAMED
@@ -6899,6 +6899,29 @@ QUEST_EXTENSION_SUB_TYPE_NAME: dict[int, NiceQuestExtensionSubType] = {
|
|
6899
6899
|
}
|
6900
6900
|
|
6901
6901
|
|
6902
|
+
class BattleBranchSkillCondBranchType(IntEnum):
|
6903
|
+
None_ = 0
|
6904
|
+
IsSelfTarget = 1
|
6905
|
+
Individuality = 2
|
6906
|
+
|
6907
|
+
|
6908
|
+
class NiceBattleBranchSkillCondBranchType(StrEnum):
|
6909
|
+
"""Battle Branch Skill Cond Branch Type"""
|
6910
|
+
|
6911
|
+
none = "none"
|
6912
|
+
isSelfTarget = "isSelfTarget"
|
6913
|
+
individuality = "individuality"
|
6914
|
+
|
6915
|
+
|
6916
|
+
BATTLE_BRANCH_SKILL_COND_BRANCH_TYPE_NAME: dict[
|
6917
|
+
int, NiceBattleBranchSkillCondBranchType
|
6918
|
+
] = {
|
6919
|
+
0: NiceBattleBranchSkillCondBranchType.none,
|
6920
|
+
1: NiceBattleBranchSkillCondBranchType.isSelfTarget,
|
6921
|
+
2: NiceBattleBranchSkillCondBranchType.individuality,
|
6922
|
+
}
|
6923
|
+
|
6924
|
+
|
6902
6925
|
class BuffConditionType(IntEnum):
|
6903
6926
|
HP_HIGHER = 0
|
6904
6927
|
HP_LOWER = 1
|
@@ -44,6 +44,7 @@ from .gameenums import (
|
|
44
44
|
NiceAiActType,
|
45
45
|
NiceAiAllocationSvtFlag,
|
46
46
|
NiceAiCond,
|
47
|
+
NiceBattleBranchSkillCondBranchType,
|
47
48
|
NiceBattleFieldEnvironmentGrantType,
|
48
49
|
NiceBattlePointFlag,
|
49
50
|
NiceBuffType,
|
@@ -755,7 +756,7 @@ class SelectTreasureDeviceInfo(BaseModel):
|
|
755
756
|
|
756
757
|
|
757
758
|
class CondBranchSkillInfo(BaseModel):
|
758
|
-
condType:
|
759
|
+
condType: NiceBattleBranchSkillCondBranchType
|
759
760
|
condValue: list[int]
|
760
761
|
skillId: int
|
761
762
|
detailText: str
|
File without changes
|
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/common.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/rayshift.py
RENAMED
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.14.0.41.27}/fgo_api_types/search.py
RENAMED
File without changes
|