fgo-api-types 2025.8.15.9.54.6__tar.gz → 2025.9.5.11.48.5__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.15.9.54.6
3
+ Version: 2025.9.5.11.48.5
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -900,6 +900,8 @@ class BuffType(IntEnum):
900
900
  DOWN_BUFF_USE_RATE = 233
901
901
  REACTIVE_DAMAGE_GAIN_HP = 234
902
902
  UP_HATE_TO_GRANTED_OPPONENT = 235
903
+ UP_BASE_HP = 236
904
+ ADD_BASE_HP = 237
903
905
  TO_FIELD_CHANGE_FIELD = 10001
904
906
  TO_FIELD_AVOID_BUFF = 10002
905
907
  TO_FIELD_SUB_INDIVIDUALITY_FIELD = 10003
@@ -1124,6 +1126,8 @@ class NiceBuffType(StrEnum):
1124
1126
  downBuffUseRate = "downBuffUseRate"
1125
1127
  reactiveDamageGainHp = "reactiveDamageGainHp"
1126
1128
  upHateToGrantedOpponent = "upHateToGrantedOpponent"
1129
+ upBaseHp = "upBaseHp"
1130
+ addBaseHp = "addBaseHp"
1127
1131
  toFieldChangeField = "toFieldChangeField"
1128
1132
  toFieldAvoidBuff = "toFieldAvoidBuff"
1129
1133
  toFieldSubIndividualityField = "toFieldSubIndividualityField"
@@ -1349,6 +1353,8 @@ BUFF_TYPE_NAME: dict[int, NiceBuffType] = {
1349
1353
  233: NiceBuffType.downBuffUseRate,
1350
1354
  234: NiceBuffType.reactiveDamageGainHp,
1351
1355
  235: NiceBuffType.upHateToGrantedOpponent,
1356
+ 236: NiceBuffType.upBaseHp,
1357
+ 237: NiceBuffType.addBaseHp,
1352
1358
  10001: NiceBuffType.toFieldChangeField,
1353
1359
  10002: NiceBuffType.toFieldAvoidBuff,
1354
1360
  10003: NiceBuffType.toFieldSubIndividualityField,
@@ -1524,6 +1530,8 @@ class BuffAction(IntEnum):
1524
1530
  CHANGE_BUFF_USE_RATE = 159
1525
1531
  HATE_TO_GRANTED_OPPONENT = 160
1526
1532
  REACTIVE_DAMAGE_GAIN_HP = 161
1533
+ BASE_HP_RATE = 162
1534
+ BASE_HP_VALUE = 163
1527
1535
 
1528
1536
 
1529
1537
  class NiceBuffAction(StrEnum):
@@ -1691,6 +1699,8 @@ class NiceBuffAction(StrEnum):
1691
1699
  changeBuffUseRate = "changeBuffUseRate"
1692
1700
  hateToGrantedOpponent = "hateToGrantedOpponent"
1693
1701
  reactiveDamageGainHp = "reactiveDamageGainHp"
1702
+ baseHpRate = "baseHpRate"
1703
+ baseHpValue = "baseHpValue"
1694
1704
 
1695
1705
 
1696
1706
  BUFF_ACTION_NAME: dict[int, NiceBuffAction] = {
@@ -1856,6 +1866,8 @@ BUFF_ACTION_NAME: dict[int, NiceBuffAction] = {
1856
1866
  159: NiceBuffAction.changeBuffUseRate,
1857
1867
  160: NiceBuffAction.hateToGrantedOpponent,
1858
1868
  161: NiceBuffAction.reactiveDamageGainHp,
1869
+ 162: NiceBuffAction.baseHpRate,
1870
+ 163: NiceBuffAction.baseHpValue,
1859
1871
  }
1860
1872
 
1861
1873
 
@@ -107,6 +107,9 @@ from .raw import MstSvtScriptExtendData
107
107
 
108
108
  class AssetURL:
109
109
  back = "{base_url}/{region}/Back/back{bg_id}.png"
110
+ battleAssetUIAtlas = (
111
+ "{base_url}/{region}/Battle/Common/BattleAssetUIAtlas/{item_id}.png"
112
+ )
110
113
  charaGraph = {
111
114
  1: "{base_url}/{region}/CharaGraph/{item_id}/{item_id}a@1.png",
112
115
  2: "{base_url}/{region}/CharaGraph/{item_id}/{item_id}a@2.png",
@@ -731,6 +734,7 @@ class NiceSelectAddInfoBtn(BaseModel):
731
734
  name: str | None = None
732
735
  conds: list[NiceSelectAddInfoBtnCond]
733
736
  image: str | None = None
737
+ imageUrl: HttpUrl | None = None
734
738
 
735
739
 
736
740
  class NiceSelectAddInfo(BaseModel):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.08.15.09.54.06"
3
+ version = "2025.09.05.11.48.05"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"