fgo-api-types 2025.8.4.14.3.37__tar.gz → 2025.8.6.8.36.58__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.
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/PKG-INFO +1 -1
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/gameenums.py +7 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/pyproject.toml +1 -1
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/LICENSE +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/README.md +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/nice.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.8.4.14.3.37 → fgo_api_types-2025.8.6.8.36.58}/fgo_api_types/gameenums.py
RENAMED
@@ -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):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|