fgo-api-types 2025.8.13.11.45.41__tar.gz → 2025.8.13.15.41.31__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.13.15.41.31}/PKG-INFO +1 -1
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/gameenums.py +23 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/nice.py +13 -8
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/pyproject.toml +1 -1
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/LICENSE +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/README.md +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/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,
|
@@ -754,14 +755,6 @@ class SelectTreasureDeviceInfo(BaseModel):
|
|
754
755
|
messageOnSelected: str
|
755
756
|
|
756
757
|
|
757
|
-
class CondBranchSkillInfo(BaseModel):
|
758
|
-
condType: NiceCondType
|
759
|
-
condValue: list[int]
|
760
|
-
skillId: int
|
761
|
-
detailText: str
|
762
|
-
iconBuffId: int
|
763
|
-
|
764
|
-
|
765
758
|
class NiceSkillScript(BaseModel):
|
766
759
|
NP_HIGHER: Optional[list[int]] = None
|
767
760
|
NP_LOWER: Optional[list[int]] = None
|
@@ -782,6 +775,17 @@ class NiceSkillScript(BaseModel):
|
|
782
775
|
IgnoreBattlePointUp: list[list[int]] | None = None
|
783
776
|
tdChangeByBattlePoint: list[TdChangeByBattlePoint] | None = None
|
784
777
|
selectTreasureDeviceInfo: list[SelectTreasureDeviceInfo] | None = None
|
778
|
+
|
779
|
+
|
780
|
+
class CondBranchSkillInfo(BaseModel):
|
781
|
+
condType: NiceBattleBranchSkillCondBranchType
|
782
|
+
condValue: list[int]
|
783
|
+
skillId: int
|
784
|
+
detailText: str
|
785
|
+
iconBuffId: int
|
786
|
+
|
787
|
+
|
788
|
+
class NiceSkillEntityScript(BaseModel):
|
785
789
|
condBranchSkillInfo: list[CondBranchSkillInfo] | None = None
|
786
790
|
|
787
791
|
|
@@ -853,6 +857,7 @@ class NiceSkill(BaseModelORJson):
|
|
853
857
|
coolDown: list[int]
|
854
858
|
actIndividuality: list[NiceTrait]
|
855
859
|
script: NiceSkillScript
|
860
|
+
skillEntityScript: NiceSkillEntityScript | None = None
|
856
861
|
extraPassive: list[ExtraPassive]
|
857
862
|
skillAdd: list[NiceSkillAdd]
|
858
863
|
skillSvts: list[NiceSkillSvt] = []
|
File without changes
|
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/__init__.py
RENAMED
File without changes
|
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/basic.py
RENAMED
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/common.py
RENAMED
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/enums.py
RENAMED
File without changes
|
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/rayshift.py
RENAMED
File without changes
|
{fgo_api_types-2025.8.13.11.45.41 → fgo_api_types-2025.8.13.15.41.31}/fgo_api_types/search.py
RENAMED
File without changes
|