fgo-api-types 2025.9.5.11.48.5__tar.gz → 2025.9.7.7.56.10__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.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/PKG-INFO +1 -1
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/gameenums.py +39 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/pyproject.toml +1 -1
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/LICENSE +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/README.md +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/nice.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.9.5.11.48.5 → fgo_api_types-2025.9.7.7.56.10}/fgo_api_types/gameenums.py
RENAMED
@@ -6959,3 +6959,42 @@ BUFF_CONDITION_TYPE: dict[int, NiceBuffConditionType] = {
|
|
6959
6959
|
3: NiceBuffConditionType.individualitieOr,
|
6960
6960
|
4: NiceBuffConditionType.individualitieAnd,
|
6961
6961
|
}
|
6962
|
+
|
6963
|
+
|
6964
|
+
class BuffConditionTargetType(IntEnum):
|
6965
|
+
NONE = 0
|
6966
|
+
PT_ALL = 1
|
6967
|
+
ENEMY_ALL = 2
|
6968
|
+
FIELD_ALL = 3
|
6969
|
+
PT_FULL = 4
|
6970
|
+
ENEMY_FULL = 5
|
6971
|
+
PT_OTHER_ALL = 6
|
6972
|
+
PT_OTHER_FULL = 7
|
6973
|
+
FIELD_OTHER_ALL = 8
|
6974
|
+
|
6975
|
+
|
6976
|
+
class NiceBuffConditionTargetType(StrEnum):
|
6977
|
+
"""Buff Condition Target Type"""
|
6978
|
+
|
6979
|
+
none = "none"
|
6980
|
+
ptAll = "ptAll"
|
6981
|
+
enemyAll = "enemyAll"
|
6982
|
+
fieldAll = "fieldAll"
|
6983
|
+
ptFull = "ptFull"
|
6984
|
+
enemyFull = "enemyFull"
|
6985
|
+
ptOtherAll = "ptOtherAll"
|
6986
|
+
ptOtherFull = "ptOtherFull"
|
6987
|
+
fieldOtherAll = "fieldOtherAll"
|
6988
|
+
|
6989
|
+
|
6990
|
+
BUFF_CONDITION_TARGET_TYPE: dict[int, NiceBuffConditionTargetType] = {
|
6991
|
+
0: NiceBuffConditionTargetType.none,
|
6992
|
+
1: NiceBuffConditionTargetType.ptAll,
|
6993
|
+
2: NiceBuffConditionTargetType.enemyAll,
|
6994
|
+
3: NiceBuffConditionTargetType.fieldAll,
|
6995
|
+
4: NiceBuffConditionTargetType.ptFull,
|
6996
|
+
5: NiceBuffConditionTargetType.enemyFull,
|
6997
|
+
6: NiceBuffConditionTargetType.ptOtherAll,
|
6998
|
+
7: NiceBuffConditionTargetType.ptOtherFull,
|
6999
|
+
8: NiceBuffConditionTargetType.fieldOtherAll,
|
7000
|
+
}
|
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
|