fgo-api-types 2025.8.6.13.6.6__py3-none-any.whl → 2025.8.13.10.7.24__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/gameenums.py +17 -1
- {fgo_api_types-2025.8.6.13.6.6.dist-info → fgo_api_types-2025.8.13.10.7.24.dist-info}/METADATA +1 -1
- {fgo_api_types-2025.8.6.13.6.6.dist-info → fgo_api_types-2025.8.13.10.7.24.dist-info}/RECORD +5 -5
- {fgo_api_types-2025.8.6.13.6.6.dist-info → fgo_api_types-2025.8.13.10.7.24.dist-info}/LICENSE +0 -0
- {fgo_api_types-2025.8.6.13.6.6.dist-info → fgo_api_types-2025.8.13.10.7.24.dist-info}/WHEEL +0 -0
fgo_api_types/gameenums.py
CHANGED
@@ -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
|
-
|
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,
|
{fgo_api_types-2025.8.6.13.6.6.dist-info → fgo_api_types-2025.8.13.10.7.24.dist-info}/RECORD
RENAMED
@@ -3,12 +3,12 @@ fgo_api_types/base.py,sha256=lNLs5_mzc3x1Cl8Mxvdxw4jOcGld9Bwv28okCsM1B3M,353
|
|
3
3
|
fgo_api_types/basic.py,sha256=EwQoPT_c_LJe22JZek_L-q_ax3Yocy4hceSlEDdzPdo,4589
|
4
4
|
fgo_api_types/common.py,sha256=NZCkvmf6wSvSqh3IUd-l_ta1O3Uv-oofd0zoxxCF4U0,4565
|
5
5
|
fgo_api_types/enums.py,sha256=UQy0wLtwrIM-Mb5AoXEGMePkzFZ-m04KjH1j6rgfYfs,47856
|
6
|
-
fgo_api_types/gameenums.py,sha256=
|
6
|
+
fgo_api_types/gameenums.py,sha256=ZoxZjobq7GCN_omMnB-WqmDkmq1XxNS59MyUjmgQeY0,225600
|
7
7
|
fgo_api_types/nice.py,sha256=oMagfSPBxsq4Uvf-cX_i0ibqc8_YBben5DJ6DKfyVec,98537
|
8
8
|
fgo_api_types/raw.py,sha256=ZDjm3SPrK2r8N5gDQ5GRcjTrtsryp-APG8tSC_izHsQ,64410
|
9
9
|
fgo_api_types/rayshift.py,sha256=GctwvpMBMVEd18_KuTAIMC4aY5_2WuC77-81skk55xM,4854
|
10
10
|
fgo_api_types/search.py,sha256=N1vZh1oGLhyrYRd_Ctcm-iUUynrzRPCiZUFxly3qjP0,19996
|
11
|
-
fgo_api_types-2025.8.
|
12
|
-
fgo_api_types-2025.8.
|
13
|
-
fgo_api_types-2025.8.
|
14
|
-
fgo_api_types-2025.8.
|
11
|
+
fgo_api_types-2025.8.13.10.7.24.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
12
|
+
fgo_api_types-2025.8.13.10.7.24.dist-info/METADATA,sha256=4tkWeuRtWv_MwODjCAXYbpbb8RXjOloL_2XxVggimPo,1305
|
13
|
+
fgo_api_types-2025.8.13.10.7.24.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
14
|
+
fgo_api_types-2025.8.13.10.7.24.dist-info/RECORD,,
|
{fgo_api_types-2025.8.6.13.6.6.dist-info → fgo_api_types-2025.8.13.10.7.24.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|