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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: fgo-api-types
3
- Version: 2025.8.13.11.45.41
3
+ Version: 2025.8.14.0.41.27
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -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: NiceCondType
759
+ condType: NiceBattleBranchSkillCondBranchType
759
760
  condValue: list[int]
760
761
  skillId: int
761
762
  detailText: str
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.08.13.11.45.41"
3
+ version = "2025.08.14.00.41.27"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"