fgo-api-types 2025.8.6.13.6.6__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.6.13.6.6
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
@@ -898,6 +898,7 @@ class BuffType(IntEnum):
898
898
  OVERWRITE_BUFF_USE_RATE = 231
899
899
  UP_BUFF_USE_RATE = 232
900
900
  DOWN_BUFF_USE_RATE = 233
901
+ REACTIVE_DAMAGE_GAIN_HP = 234
901
902
  UP_HATE_TO_GRANTED_OPPONENT = 235
902
903
  TO_FIELD_CHANGE_FIELD = 10001
903
904
  TO_FIELD_AVOID_BUFF = 10002
@@ -1121,6 +1122,7 @@ class NiceBuffType(StrEnum):
1121
1122
  overwriteBuffUseRate = "overwriteBuffUseRate"
1122
1123
  upBuffUseRate = "upBuffUseRate"
1123
1124
  downBuffUseRate = "downBuffUseRate"
1125
+ reactiveDamageGainHp = "reactiveDamageGainHp"
1124
1126
  upHateToGrantedOpponent = "upHateToGrantedOpponent"
1125
1127
  toFieldChangeField = "toFieldChangeField"
1126
1128
  toFieldAvoidBuff = "toFieldAvoidBuff"
@@ -1345,6 +1347,7 @@ BUFF_TYPE_NAME: dict[int, NiceBuffType] = {
1345
1347
  231: NiceBuffType.overwriteBuffUseRate,
1346
1348
  232: NiceBuffType.upBuffUseRate,
1347
1349
  233: NiceBuffType.downBuffUseRate,
1350
+ 234: NiceBuffType.reactiveDamageGainHp,
1348
1351
  235: NiceBuffType.upHateToGrantedOpponent,
1349
1352
  10001: NiceBuffType.toFieldChangeField,
1350
1353
  10002: NiceBuffType.toFieldAvoidBuff,
@@ -1520,6 +1523,7 @@ class BuffAction(IntEnum):
1520
1523
  OVERWRITE_BUFF_USE_RATE = 158
1521
1524
  CHANGE_BUFF_USE_RATE = 159
1522
1525
  HATE_TO_GRANTED_OPPONENT = 160
1526
+ REACTIVE_DAMAGE_GAIN_HP = 161
1523
1527
 
1524
1528
 
1525
1529
  class NiceBuffAction(StrEnum):
@@ -1686,6 +1690,7 @@ class NiceBuffAction(StrEnum):
1686
1690
  overwriteBuffUseRate = "overwriteBuffUseRate"
1687
1691
  changeBuffUseRate = "changeBuffUseRate"
1688
1692
  hateToGrantedOpponent = "hateToGrantedOpponent"
1693
+ reactiveDamageGainHp = "reactiveDamageGainHp"
1689
1694
 
1690
1695
 
1691
1696
  BUFF_ACTION_NAME: dict[int, NiceBuffAction] = {
@@ -1850,6 +1855,7 @@ BUFF_ACTION_NAME: dict[int, NiceBuffAction] = {
1850
1855
  158: NiceBuffAction.overwriteBuffUseRate,
1851
1856
  159: NiceBuffAction.changeBuffUseRate,
1852
1857
  160: NiceBuffAction.hateToGrantedOpponent,
1858
+ 161: NiceBuffAction.reactiveDamageGainHp,
1853
1859
  }
1854
1860
 
1855
1861
 
@@ -2117,7 +2123,8 @@ class DataValsType(IntEnum):
2117
2123
  ApplySupportSvt = 236
2118
2124
  ApplyHighestValueInFieldGroup = 237
2119
2125
  IsClassIconChangeSaveGrand = 238
2120
- PriorityUpHate = 239
2126
+ ExecuteEffectId = 239
2127
+ PriorityUpHate = 240
2121
2128
 
2122
2129
 
2123
2130
  class ClassRelationOverwriteType(IntEnum):
@@ -3408,6 +3415,9 @@ class VoiceCondType(IntEnum):
3408
3415
  LEVEL_UP_LIMIT_COUNT = 24
3409
3416
  LEVEL_UP_LIMIT_COUNT_ABOVE = 25
3410
3417
  LEVEL_UP_LIMIT_COUNT_BELOW = 26
3418
+ SVT_EXCEED_COUNT = 41
3419
+ SVT_EXCEED_COUNT_ABOVE = 42
3420
+ SVT_EXCEED_COUNT_BELOW = 43
3411
3421
 
3412
3422
 
3413
3423
  class NiceVoiceCondType(StrEnum):
@@ -3439,6 +3449,9 @@ class NiceVoiceCondType(StrEnum):
3439
3449
  levelUpLimitCount = "levelUpLimitCount"
3440
3450
  levelUpLimitCountAbove = "levelUpLimitCountAbove"
3441
3451
  levelUpLimitCountBelow = "levelUpLimitCountBelow"
3452
+ svtExceedCount = "svtExceedCount"
3453
+ svtExceedCountAbove = "svtExceedCountAbove"
3454
+ svtExceedCountBelow = "svtExceedCountBelow"
3442
3455
  unknown27 = "unknown27"
3443
3456
  unknown30 = "unknown30"
3444
3457
  unknown32 = "unknown32"
@@ -3477,6 +3490,9 @@ VOICE_COND_NAME: dict[int, NiceVoiceCondType] = {
3477
3490
  24: NiceVoiceCondType.levelUpLimitCount,
3478
3491
  25: NiceVoiceCondType.levelUpLimitCountAbove,
3479
3492
  26: NiceVoiceCondType.levelUpLimitCountBelow,
3493
+ 41: NiceVoiceCondType.svtExceedCount,
3494
+ 42: NiceVoiceCondType.svtExceedCountAbove,
3495
+ 43: NiceVoiceCondType.svtExceedCountBelow,
3480
3496
  27: NiceVoiceCondType.unknown27,
3481
3497
  30: NiceVoiceCondType.unknown30,
3482
3498
  32: NiceVoiceCondType.unknown32,
@@ -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.06.13.06.06"
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"