fgo-api-types 2025.8.4.14.3.37__py3-none-any.whl → 2025.8.6.11.16.2__py3-none-any.whl

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/enums.py CHANGED
@@ -364,6 +364,7 @@ class SvtClass(StrEnum):
364
364
  beastEresh = "beastEresh"
365
365
  uOlgaMarieAqua = "uOlgaMarieAqua"
366
366
  uOlgaMarieGrand = "uOlgaMarieGrand"
367
+ aquaFragment = "aquaFragment"
367
368
  unknown = "unknown"
368
369
  agarthaPenth = "agarthaPenth"
369
370
  cccFinaleEmiyaAlter = "cccFinaleEmiyaAlter"
@@ -386,6 +387,17 @@ class SvtClass(StrEnum):
386
387
  grandCaster = "grandCaster"
387
388
  grandAssassin = "grandAssassin"
388
389
  grandBerserker = "grandBerserker"
390
+ grandShielder = "grandShielder"
391
+ grandRuler = "grandRuler"
392
+ grandAlterego = "grandAlterego"
393
+ grandAvenger = "grandAvenger"
394
+ grandMoonCancer = "grandMoonCancer"
395
+ grandForeigner = "grandForeigner"
396
+ grandPretender = "grandPretender"
397
+ grandUnBeastUPlanetOlgaMarie = "grandUnBeastUPlanetOlgaMarie"
398
+ grandUnBeastDoraco = "grandUnBeastDoraco"
399
+ grandUnBeastEresh = "grandUnBeastEresh"
400
+ grandUnBeastUOlgaMarie = "grandUnBeastUOlgaMarie"
389
401
  unBeast = "unBeast"
390
402
 
391
403
 
@@ -430,6 +442,7 @@ CLASS_NAME: dict[int, SvtClass] = {
430
442
  37: SvtClass.uOlgaMarieAqua,
431
443
  39: SvtClass.uOlgaMarieGrand,
432
444
  40: SvtClass.unBeast,
445
+ 96: SvtClass.aquaFragment,
433
446
  97: SvtClass.unknown,
434
447
  # 98
435
448
  # 99
@@ -455,6 +468,17 @@ CLASS_NAME: dict[int, SvtClass] = {
455
468
  10005: SvtClass.grandCaster,
456
469
  10006: SvtClass.grandAssassin,
457
470
  10007: SvtClass.grandBerserker,
471
+ 10008: SvtClass.grandShielder,
472
+ 10009: SvtClass.grandRuler,
473
+ 10010: SvtClass.grandAlterego,
474
+ 10011: SvtClass.grandAvenger,
475
+ 10023: SvtClass.grandMoonCancer,
476
+ 10025: SvtClass.grandForeigner,
477
+ 10028: SvtClass.grandPretender,
478
+ 10031: SvtClass.grandUnBeastUPlanetOlgaMarie,
479
+ 10033: SvtClass.grandUnBeastDoraco,
480
+ 10038: SvtClass.grandUnBeastEresh,
481
+ 10040: SvtClass.grandUnBeastUOlgaMarie,
458
482
  }
459
483
 
460
484
 
@@ -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
+ UP_HATE_TO_GRANTED_OPPONENT = 235
901
902
  TO_FIELD_CHANGE_FIELD = 10001
902
903
  TO_FIELD_AVOID_BUFF = 10002
903
904
  TO_FIELD_SUB_INDIVIDUALITY_FIELD = 10003
@@ -1120,6 +1121,7 @@ class NiceBuffType(StrEnum):
1120
1121
  overwriteBuffUseRate = "overwriteBuffUseRate"
1121
1122
  upBuffUseRate = "upBuffUseRate"
1122
1123
  downBuffUseRate = "downBuffUseRate"
1124
+ upHateToGrantedOpponent = "upHateToGrantedOpponent"
1123
1125
  toFieldChangeField = "toFieldChangeField"
1124
1126
  toFieldAvoidBuff = "toFieldAvoidBuff"
1125
1127
  toFieldSubIndividualityField = "toFieldSubIndividualityField"
@@ -1343,6 +1345,7 @@ BUFF_TYPE_NAME: dict[int, NiceBuffType] = {
1343
1345
  231: NiceBuffType.overwriteBuffUseRate,
1344
1346
  232: NiceBuffType.upBuffUseRate,
1345
1347
  233: NiceBuffType.downBuffUseRate,
1348
+ 235: NiceBuffType.upHateToGrantedOpponent,
1346
1349
  10001: NiceBuffType.toFieldChangeField,
1347
1350
  10002: NiceBuffType.toFieldAvoidBuff,
1348
1351
  10003: NiceBuffType.toFieldSubIndividualityField,
@@ -1516,6 +1519,7 @@ class BuffAction(IntEnum):
1516
1519
  FUNCTION_GUTS_BEFORE = 157
1517
1520
  OVERWRITE_BUFF_USE_RATE = 158
1518
1521
  CHANGE_BUFF_USE_RATE = 159
1522
+ HATE_TO_GRANTED_OPPONENT = 160
1519
1523
 
1520
1524
 
1521
1525
  class NiceBuffAction(StrEnum):
@@ -1681,6 +1685,7 @@ class NiceBuffAction(StrEnum):
1681
1685
  functionGutsBefore = "functionGutsBefore"
1682
1686
  overwriteBuffUseRate = "overwriteBuffUseRate"
1683
1687
  changeBuffUseRate = "changeBuffUseRate"
1688
+ hateToGrantedOpponent = "hateToGrantedOpponent"
1684
1689
 
1685
1690
 
1686
1691
  BUFF_ACTION_NAME: dict[int, NiceBuffAction] = {
@@ -1844,6 +1849,7 @@ BUFF_ACTION_NAME: dict[int, NiceBuffAction] = {
1844
1849
  157: NiceBuffAction.functionGutsBefore,
1845
1850
  158: NiceBuffAction.overwriteBuffUseRate,
1846
1851
  159: NiceBuffAction.changeBuffUseRate,
1852
+ 160: NiceBuffAction.hateToGrantedOpponent,
1847
1853
  }
1848
1854
 
1849
1855
 
@@ -2111,6 +2117,7 @@ class DataValsType(IntEnum):
2111
2117
  ApplySupportSvt = 236
2112
2118
  ApplyHighestValueInFieldGroup = 237
2113
2119
  IsClassIconChangeSaveGrand = 238
2120
+ PriorityUpHate = 239
2114
2121
 
2115
2122
 
2116
2123
  class ClassRelationOverwriteType(IntEnum):
fgo_api_types/nice.py CHANGED
@@ -651,6 +651,7 @@ class BaseVals(BaseModel):
651
651
  ApplySupportSvt: int | None = None
652
652
  ApplyHighestValueInFieldGroup: int | None = None
653
653
  IsClassIconChangeSaveGrand: int | None = None
654
+ PriorityUpHate: int | None = None
654
655
  # These are not DataVals but guesses from SkillLvEntity and EventDropUpValInfo
655
656
  Individuality: Optional[int] = None
656
657
  EventId: Optional[int] = None
@@ -1037,6 +1038,7 @@ class NiceCardDetail(BaseModel):
1037
1038
  attackNpRate: int | None = None
1038
1039
  defenseNpRate: int | None = None
1039
1040
  dropStarRate: int | None = None
1041
+ forceAttackFunctionTargetAll: int | None = None
1040
1042
  positionDamageRates: list[int] | None = None
1041
1043
  positionDamageRatesSlideType: NiceSvtCardPositionDamageRatesSlideType | None = None
1042
1044
  overwriteRates: list[SvtCardAddOverwriteRateData] | None = None
@@ -3237,10 +3239,12 @@ class NiceGrandGraphDetail(BaseModelORJson):
3237
3239
  grandClass: SvtClass | str
3238
3240
  adjustHp: int
3239
3241
  adjustAtk: int
3242
+ closedMessage: str
3240
3243
  condType: NiceCondType
3241
3244
  condTargetId: int
3242
3245
  condNum: int
3243
3246
  adjustIndividuality: list[NiceTrait]
3247
+ nameFull: str | None = None
3244
3248
 
3245
3249
 
3246
3250
  class NiceGrandGraph(BaseModelORJson):
fgo_api_types/raw.py CHANGED
@@ -2628,10 +2628,12 @@ class MstGrandGraphDetail(BaseModelORJson):
2628
2628
  grandClassId: int
2629
2629
  adjustHp: int
2630
2630
  adjustAtk: int
2631
+ closedMessage: str | None = None
2631
2632
  condType: int
2632
2633
  condTargetId: int
2633
2634
  condNum: int
2634
2635
  adjustIndividuality: list[int]
2636
+ nameFull: str | None = None
2635
2637
 
2636
2638
 
2637
2639
  class MstFuncDisp(BaseModelORJson):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: fgo-api-types
3
- Version: 2025.8.4.14.3.37
3
+ Version: 2025.8.6.11.16.2
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -0,0 +1,14 @@
1
+ fgo_api_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ fgo_api_types/base.py,sha256=lNLs5_mzc3x1Cl8Mxvdxw4jOcGld9Bwv28okCsM1B3M,353
3
+ fgo_api_types/basic.py,sha256=EwQoPT_c_LJe22JZek_L-q_ax3Yocy4hceSlEDdzPdo,4589
4
+ fgo_api_types/common.py,sha256=NZCkvmf6wSvSqh3IUd-l_ta1O3Uv-oofd0zoxxCF4U0,4565
5
+ fgo_api_types/enums.py,sha256=xcpV0ZJKLmiwJweEvdE-hJs3KH0pKd7xVf9WnyA3TlY,46162
6
+ fgo_api_types/gameenums.py,sha256=uhfpmpVgsyd2MFUVv2EJhvFl4rT_fRQWsvKErxlxsrc,224956
7
+ fgo_api_types/nice.py,sha256=oMagfSPBxsq4Uvf-cX_i0ibqc8_YBben5DJ6DKfyVec,98537
8
+ fgo_api_types/raw.py,sha256=ZDjm3SPrK2r8N5gDQ5GRcjTrtsryp-APG8tSC_izHsQ,64410
9
+ fgo_api_types/rayshift.py,sha256=GctwvpMBMVEd18_KuTAIMC4aY5_2WuC77-81skk55xM,4854
10
+ fgo_api_types/search.py,sha256=N1vZh1oGLhyrYRd_Ctcm-iUUynrzRPCiZUFxly3qjP0,19996
11
+ fgo_api_types-2025.8.6.11.16.2.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
12
+ fgo_api_types-2025.8.6.11.16.2.dist-info/METADATA,sha256=pePgnzdT0qLnsMq4ZY0vaEqc6iGyksRmaYeeKEijfIo,1304
13
+ fgo_api_types-2025.8.6.11.16.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
14
+ fgo_api_types-2025.8.6.11.16.2.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- fgo_api_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- fgo_api_types/base.py,sha256=lNLs5_mzc3x1Cl8Mxvdxw4jOcGld9Bwv28okCsM1B3M,353
3
- fgo_api_types/basic.py,sha256=EwQoPT_c_LJe22JZek_L-q_ax3Yocy4hceSlEDdzPdo,4589
4
- fgo_api_types/common.py,sha256=NZCkvmf6wSvSqh3IUd-l_ta1O3Uv-oofd0zoxxCF4U0,4565
5
- fgo_api_types/enums.py,sha256=Pu4o_f6xydspoMyfRxZiuvPxrUgVjuncX7rFKDtlXpM,45217
6
- fgo_api_types/gameenums.py,sha256=lhX4N1JgzVOHcFxLi-SbtlqSd0Mgx3SryVUiWbA7zqc,224656
7
- fgo_api_types/nice.py,sha256=LVQe-rz0ER1faEekPFF5C_sPwodlzYNmDf9lUiyhmfQ,98392
8
- fgo_api_types/raw.py,sha256=pVH3KTwn6st7H6mvjIE2PN98-8kH8DKYZtt-TBYW0CU,64341
9
- fgo_api_types/rayshift.py,sha256=GctwvpMBMVEd18_KuTAIMC4aY5_2WuC77-81skk55xM,4854
10
- fgo_api_types/search.py,sha256=N1vZh1oGLhyrYRd_Ctcm-iUUynrzRPCiZUFxly3qjP0,19996
11
- fgo_api_types-2025.8.4.14.3.37.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
12
- fgo_api_types-2025.8.4.14.3.37.dist-info/METADATA,sha256=3g910fYVKgaV13zFSYxqiepjOS3jzqUB4Vrw6EvNM6Y,1304
13
- fgo_api_types-2025.8.4.14.3.37.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
14
- fgo_api_types-2025.8.4.14.3.37.dist-info/RECORD,,