fgo-api-types 2025.8.13.10.7.24__tar.gz → 2025.8.13.11.45.41__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.10.7.24
3
+ Version: 2025.8.13.11.45.41
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -635,11 +635,11 @@ class BaseVals(BaseModel):
635
635
  CondParamAddType: int | None = None
636
636
  CondParamAddValue: int | None = None
637
637
  CondParamAddMaxValue: int | None = None
638
- CondParamAddTargetId: int | None = None
638
+ CondParamAddTargetId: list[int] | None = None
639
639
  CondParamRangeType: int | None = None
640
640
  CondParamRangeMaxCount: int | None = None
641
641
  CondParamRangeMaxValue: int | None = None
642
- CondParamRangeTargetId: int | None = None
642
+ CondParamRangeTargetId: list[int] | None = None
643
643
  ExecOnce: int | None = None
644
644
  ApplyBuffIndividuality: list[list[int]] | None = None
645
645
  ExecWhenCanNotAttack: int | None = None
@@ -754,6 +754,14 @@ class SelectTreasureDeviceInfo(BaseModel):
754
754
  messageOnSelected: str
755
755
 
756
756
 
757
+ class CondBranchSkillInfo(BaseModel):
758
+ condType: NiceCondType
759
+ condValue: list[int]
760
+ skillId: int
761
+ detailText: str
762
+ iconBuffId: int
763
+
764
+
757
765
  class NiceSkillScript(BaseModel):
758
766
  NP_HIGHER: Optional[list[int]] = None
759
767
  NP_LOWER: Optional[list[int]] = None
@@ -774,6 +782,7 @@ class NiceSkillScript(BaseModel):
774
782
  IgnoreBattlePointUp: list[list[int]] | None = None
775
783
  tdChangeByBattlePoint: list[TdChangeByBattlePoint] | None = None
776
784
  selectTreasureDeviceInfo: list[SelectTreasureDeviceInfo] | None = None
785
+ condBranchSkillInfo: list[CondBranchSkillInfo] | None = None
777
786
 
778
787
 
779
788
  class NiceSkillAdd(BaseModelORJson):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.08.13.10.07.24"
3
+ version = "2025.08.13.11.45.41"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"