fgo-api-types 2025.9.25.11.50.32__py3-none-any.whl → 2025.10.5.3.57.8__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.
@@ -7015,3 +7015,231 @@ BUFF_CONDITION_TARGET_TYPE: dict[int, NiceBuffConditionTargetType] = {
7015
7015
  7: NiceBuffConditionTargetType.ptOtherFull,
7016
7016
  8: NiceBuffConditionTargetType.fieldOtherAll,
7017
7017
  }
7018
+
7019
+
7020
+ class QuestAfterActionCommand(IntEnum):
7021
+ NONE = 0
7022
+ SPOT_HIDE = 100
7023
+ SPOT_GRAY = 101
7024
+ SPOT_DISP = 102
7025
+ SPOT_CHANGE = 103
7026
+ SPOT_ANIM = 104
7027
+ SPOT_HIDE_QUICK = 110
7028
+ SPOT_GRAY_QUICK = 111
7029
+ SPOT_DISP_QUICK = 112
7030
+ SPOT_CHANGE_QUICK = 113
7031
+ SPOT_ANIM_QUICK = 114
7032
+ ROAD_HIDE = 200
7033
+ ROAD_GRAY = 201
7034
+ ROAD_DISP = 202
7035
+ ROAD_HIDE_QUICK = 203
7036
+ ROAD_GRAY_QUICK = 204
7037
+ ROAD_DISP_QUICK = 205
7038
+ CAM_MV_SPOT = 300
7039
+ CAM_MV_ROAD = 301
7040
+ CAM_MV_GIMMICK = 302
7041
+ CAM_MV_COORD = 303
7042
+ CAM_ZOOM = 304
7043
+ CAM_MV_ZOOM_SPOT = 305
7044
+ CAM_MV_ZOOM_ROAD = 306
7045
+ CAM_MV_ZOOM_GIMMICK = 307
7046
+ CAM_MV_ZOOM_COORD = 308
7047
+ CAM_3D_MV_LAYER = 350
7048
+ CAM_3D_MV_COORD = 351
7049
+ CAM_3D_MV_ZOOM_COORD = 352
7050
+ GIMMICK_HIDE = 400
7051
+ GIMMICK_DISP = 401
7052
+ GIMMICK_HIDE_QUICK = 402
7053
+ GIMMICK_DISP_QUICK = 403
7054
+ GIMMICK_MV_COORD = 404
7055
+ GIMMICK_DISP_WITH_FADE = 405
7056
+ GIMMICK_TWEEN_COLOR = 406
7057
+ GIMMICK_SET_COLOR = 407
7058
+ GIMMICK_DISP_UPDATE = 408
7059
+ GIMMICK_DISP_PILE_UP = 409
7060
+ GIMMICK_MV_SPOT = 410
7061
+ GIMMICK_MV_GIMMICK = 411
7062
+ GIMMICK_MV_ROAD = 412
7063
+ QUEST_FOCUS = 500
7064
+ QUEST_UNFOCUS = 501
7065
+ PLAYER_FOCUS = 510
7066
+ AFTER_FADE_IN = 520
7067
+ QUEST_START = 530
7068
+ MAP_CHANGE = 540
7069
+ START_MAP_CHANGE = 550
7070
+ TITLE_INFO_CONTROL = 560
7071
+ MESSAGE_WINDOW = 600
7072
+ MESSAGE_WINDOW_MST = 601
7073
+ MESSAGE_OTHER_WINDOW = 602
7074
+ MESSAGE_OTHER_WINDOW_MST = 603
7075
+ MESSAGE_OTHER_WINDOW_BOOST_SUPPORT = 604
7076
+ EVENT_REWARD = 700
7077
+ WHITE_EARTH_TRANS = 701
7078
+ TRANSITION_TO_FOLDER = 702
7079
+ CLASS_SCORE = 703
7080
+ PLAY_VOICE = 800
7081
+ PLAY_SE = 801
7082
+ BGM_STOP = 850
7083
+ BGM_PLAY = 851
7084
+ WAIT = 900
7085
+ BLANK_EARTH_OBJECT_HIDE = 1000
7086
+ BLANK_EARTH_OBJECT_DISP = 1001
7087
+ BLANK_EARTH_OBJECT_ANIM = 1002
7088
+ BLANK_EARTH_OBJECT_HIDE_QUICK = 1010
7089
+ BLANK_EARTH_OBJECT_DISP_QUICK = 1011
7090
+ BLANK_EARTH_OBJECT_ANIM_QUICK = 1012
7091
+ EVENT_EFFECT_PLAY = 1100
7092
+ CHANGE_DISP_STATE_QUEST_BOARD = 1200
7093
+
7094
+
7095
+ class NiceQuestAfterActionCommand(StrEnum):
7096
+ """Quest After Action Command"""
7097
+
7098
+ none = "none"
7099
+ spotHide = "spotHide"
7100
+ spotGray = "spotGray"
7101
+ spotDisp = "spotDisp"
7102
+ spotChange = "spotChange"
7103
+ spotAnim = "spotAnim"
7104
+ spotHideQuick = "spotHideQuick"
7105
+ spotGrayQuick = "spotGrayQuick"
7106
+ spotDispQuick = "spotDispQuick"
7107
+ spotChangeQuick = "spotChangeQuick"
7108
+ spotAnimQuick = "spotAnimQuick"
7109
+ roadHide = "roadHide"
7110
+ roadGray = "roadGray"
7111
+ roadDisp = "roadDisp"
7112
+ roadHideQuick = "roadHideQuick"
7113
+ roadGrayQuick = "roadGrayQuick"
7114
+ roadDispQuick = "roadDispQuick"
7115
+ camMvSpot = "camMvSpot"
7116
+ camMvRoad = "camMvRoad"
7117
+ camMvGimmick = "camMvGimmick"
7118
+ camMvCoord = "camMvCoord"
7119
+ camZoom = "camZoom"
7120
+ camMvZoomSpot = "camMvZoomSpot"
7121
+ camMvZoomRoad = "camMvZoomRoad"
7122
+ camMvZoomGimmick = "camMvZoomGimmick"
7123
+ camMvZoomCoord = "camMvZoomCoord"
7124
+ cam3DMvLayer = "cam3DMvLayer"
7125
+ cam3DMvCoord = "cam3DMvCoord"
7126
+ cam3DMvZoomCoord = "cam3DMvZoomCoord"
7127
+ gimmickHide = "gimmickHide"
7128
+ gimmickDisp = "gimmickDisp"
7129
+ gimmickHideQuick = "gimmickHideQuick"
7130
+ gimmickDispQuick = "gimmickDispQuick"
7131
+ gimmickMvCoord = "gimmickMvCoord"
7132
+ gimmickDispWithFade = "gimmickDispWithFade"
7133
+ gimmickTweenColor = "gimmickTweenColor"
7134
+ gimmickSetColor = "gimmickSetColor"
7135
+ gimmickDispUpdate = "gimmickDispUpdate"
7136
+ gimmickDispPileUp = "gimmickDispPileUp"
7137
+ gimmickMvSpot = "gimmickMvSpot"
7138
+ gimmickMvGimmick = "gimmickMvGimmick"
7139
+ gimmickMvRoad = "gimmickMvRoad"
7140
+ questFocus = "questFocus"
7141
+ questUnfocus = "questUnfocus"
7142
+ playerFocus = "playerFocus"
7143
+ afterFadeIn = "afterFadeIn"
7144
+ questStart = "questStart"
7145
+ mapChange = "mapChange"
7146
+ startMapChange = "startMapChange"
7147
+ titleInfoControl = "titleInfoControl"
7148
+ messageWindow = "messageWindow"
7149
+ messageWindowMst = "messageWindowMst"
7150
+ messageOtherWindow = "messageOtherWindow"
7151
+ messageOtherWindowMst = "messageOtherWindowMst"
7152
+ messageOtherWindowBoostSupport = "messageOtherWindowBoostSupport"
7153
+ eventReward = "eventReward"
7154
+ whiteEarthTrans = "whiteEarthTrans"
7155
+ transitionToFolder = "transitionToFolder"
7156
+ classScore = "classScore"
7157
+ playVoice = "playVoice"
7158
+ playSe = "playSe"
7159
+ bgmStop = "bgmStop"
7160
+ bgmPlay = "bgmPlay"
7161
+ wait = "wait"
7162
+ blankEarthObjectHide = "blankEarthObjectHide"
7163
+ blankEarthObjectDisp = "blankEarthObjectDisp"
7164
+ blankEarthObjectAnim = "blankEarthObjectAnim"
7165
+ blankEarthObjectHideQuick = "blankEarthObjectHideQuick"
7166
+ blankEarthObjectDispQuick = "blankEarthObjectDispQuick"
7167
+ blankEarthObjectAnimQuick = "blankEarthObjectAnimQuick"
7168
+ eventEffectPlay = "eventEffectPlay"
7169
+ changeDispStateQuestBoard = "changeDispStateQuestBoard"
7170
+
7171
+
7172
+ QUEST_AFTER_ACTION_COMMAND: dict[int, NiceQuestAfterActionCommand] = {
7173
+ 0: NiceQuestAfterActionCommand.none,
7174
+ 100: NiceQuestAfterActionCommand.spotHide,
7175
+ 101: NiceQuestAfterActionCommand.spotGray,
7176
+ 102: NiceQuestAfterActionCommand.spotDisp,
7177
+ 103: NiceQuestAfterActionCommand.spotChange,
7178
+ 104: NiceQuestAfterActionCommand.spotAnim,
7179
+ 110: NiceQuestAfterActionCommand.spotHideQuick,
7180
+ 111: NiceQuestAfterActionCommand.spotGrayQuick,
7181
+ 112: NiceQuestAfterActionCommand.spotDispQuick,
7182
+ 113: NiceQuestAfterActionCommand.spotChangeQuick,
7183
+ 114: NiceQuestAfterActionCommand.spotAnimQuick,
7184
+ 200: NiceQuestAfterActionCommand.roadHide,
7185
+ 201: NiceQuestAfterActionCommand.roadGray,
7186
+ 202: NiceQuestAfterActionCommand.roadDisp,
7187
+ 203: NiceQuestAfterActionCommand.roadHideQuick,
7188
+ 204: NiceQuestAfterActionCommand.roadGrayQuick,
7189
+ 205: NiceQuestAfterActionCommand.roadDispQuick,
7190
+ 300: NiceQuestAfterActionCommand.camMvSpot,
7191
+ 301: NiceQuestAfterActionCommand.camMvRoad,
7192
+ 302: NiceQuestAfterActionCommand.camMvGimmick,
7193
+ 303: NiceQuestAfterActionCommand.camMvCoord,
7194
+ 304: NiceQuestAfterActionCommand.camZoom,
7195
+ 305: NiceQuestAfterActionCommand.camMvZoomSpot,
7196
+ 306: NiceQuestAfterActionCommand.camMvZoomRoad,
7197
+ 307: NiceQuestAfterActionCommand.camMvZoomGimmick,
7198
+ 308: NiceQuestAfterActionCommand.camMvZoomCoord,
7199
+ 350: NiceQuestAfterActionCommand.cam3DMvLayer,
7200
+ 351: NiceQuestAfterActionCommand.cam3DMvCoord,
7201
+ 352: NiceQuestAfterActionCommand.cam3DMvZoomCoord,
7202
+ 400: NiceQuestAfterActionCommand.gimmickHide,
7203
+ 401: NiceQuestAfterActionCommand.gimmickDisp,
7204
+ 402: NiceQuestAfterActionCommand.gimmickHideQuick,
7205
+ 403: NiceQuestAfterActionCommand.gimmickDispQuick,
7206
+ 404: NiceQuestAfterActionCommand.gimmickMvCoord,
7207
+ 405: NiceQuestAfterActionCommand.gimmickDispWithFade,
7208
+ 406: NiceQuestAfterActionCommand.gimmickTweenColor,
7209
+ 407: NiceQuestAfterActionCommand.gimmickSetColor,
7210
+ 408: NiceQuestAfterActionCommand.gimmickDispUpdate,
7211
+ 409: NiceQuestAfterActionCommand.gimmickDispPileUp,
7212
+ 410: NiceQuestAfterActionCommand.gimmickMvSpot,
7213
+ 411: NiceQuestAfterActionCommand.gimmickMvGimmick,
7214
+ 412: NiceQuestAfterActionCommand.gimmickMvRoad,
7215
+ 500: NiceQuestAfterActionCommand.questFocus,
7216
+ 501: NiceQuestAfterActionCommand.questUnfocus,
7217
+ 510: NiceQuestAfterActionCommand.playerFocus,
7218
+ 520: NiceQuestAfterActionCommand.afterFadeIn,
7219
+ 530: NiceQuestAfterActionCommand.questStart,
7220
+ 540: NiceQuestAfterActionCommand.mapChange,
7221
+ 550: NiceQuestAfterActionCommand.startMapChange,
7222
+ 560: NiceQuestAfterActionCommand.titleInfoControl,
7223
+ 600: NiceQuestAfterActionCommand.messageWindow,
7224
+ 601: NiceQuestAfterActionCommand.messageWindowMst,
7225
+ 602: NiceQuestAfterActionCommand.messageOtherWindow,
7226
+ 603: NiceQuestAfterActionCommand.messageOtherWindowMst,
7227
+ 604: NiceQuestAfterActionCommand.messageOtherWindowBoostSupport,
7228
+ 700: NiceQuestAfterActionCommand.eventReward,
7229
+ 701: NiceQuestAfterActionCommand.whiteEarthTrans,
7230
+ 702: NiceQuestAfterActionCommand.transitionToFolder,
7231
+ 703: NiceQuestAfterActionCommand.classScore,
7232
+ 800: NiceQuestAfterActionCommand.playVoice,
7233
+ 801: NiceQuestAfterActionCommand.playSe,
7234
+ 850: NiceQuestAfterActionCommand.bgmStop,
7235
+ 851: NiceQuestAfterActionCommand.bgmPlay,
7236
+ 900: NiceQuestAfterActionCommand.wait,
7237
+ 1000: NiceQuestAfterActionCommand.blankEarthObjectHide,
7238
+ 1001: NiceQuestAfterActionCommand.blankEarthObjectDisp,
7239
+ 1002: NiceQuestAfterActionCommand.blankEarthObjectAnim,
7240
+ 1010: NiceQuestAfterActionCommand.blankEarthObjectHideQuick,
7241
+ 1011: NiceQuestAfterActionCommand.blankEarthObjectDispQuick,
7242
+ 1012: NiceQuestAfterActionCommand.blankEarthObjectAnimQuick,
7243
+ 1100: NiceQuestAfterActionCommand.eventEffectPlay,
7244
+ 1200: NiceQuestAfterActionCommand.changeDispStateQuestBoard,
7245
+ }
fgo_api_types/nice.py CHANGED
@@ -2921,6 +2921,11 @@ class NiceQuestPhaseOverwriteEquipSkills(BaseModelORJson):
2921
2921
  skills: list[NiceQuestPhaseOverwriteEquipSkill]
2922
2922
 
2923
2923
 
2924
+ class NiceQuestPhaseFixedMasterEquip(BaseModelORJson):
2925
+ equipId: int
2926
+ defaultLv: int | None = None
2927
+
2928
+
2924
2929
  class NiceQuestPhaseExtraDetail(BaseModelORJson):
2925
2930
  questSelect: list[int] | None = None
2926
2931
  singleForceSvtId: int | None = None
@@ -2940,6 +2945,7 @@ class NiceQuestPhaseExtraDetail(BaseModelORJson):
2940
2945
  isUseGrandBoard: int | None = None
2941
2946
  turn: int | None = None
2942
2947
  LimitAct: StageLimitActType | None = None
2948
+ fixedMasterEquip: NiceQuestPhaseFixedMasterEquip | None = None
2943
2949
 
2944
2950
 
2945
2951
  class NiceRestriction(BaseModelORJson):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fgo-api-types
3
- Version: 2025.9.25.11.50.32
3
+ Version: 2025.10.5.3.57.8
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  License-File: LICENSE
6
6
  Author: squaresmile
@@ -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=WxiUBCyQEKkDKXM4c0xEWFEpPhMkK0_RIb1fHYPuz7w,47989
6
- fgo_api_types/gameenums.py,sha256=7r-M5g1HJGQXRZLOrnWpBRezZ4O5yTVnyaX3KzLuchs,228451
7
- fgo_api_types/nice.py,sha256=s4Pho3_BAwU9r2ug1yr8BDypMfiWGV1WOKKn7erqeF8,99081
6
+ fgo_api_types/gameenums.py,sha256=S74ZOVaCwbRxRhU9BHfMtWK4VnrwIMEHWYb1UycPq0s,236993
7
+ fgo_api_types/nice.py,sha256=lQ3P3iyzAKZelTHmgMs4Via9qSy-i0WY8u0Orwev17g,99255
8
8
  fgo_api_types/raw.py,sha256=KJPKvKnwERBWcEd6MuuQGXN1l-324_o6qTCszaoyT7E,64515
9
9
  fgo_api_types/rayshift.py,sha256=GctwvpMBMVEd18_KuTAIMC4aY5_2WuC77-81skk55xM,4854
10
10
  fgo_api_types/search.py,sha256=hdmiY6gG-AB0hyZqW96nxpLi6YAS15eAK3fY0LRuMQM,20146
11
- fgo_api_types-2025.9.25.11.50.32.dist-info/METADATA,sha256=A3e7af-AQt5pAax1fHxwpzN761xvoeEeE941qiLuzlA,1379
12
- fgo_api_types-2025.9.25.11.50.32.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
13
- fgo_api_types-2025.9.25.11.50.32.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
14
- fgo_api_types-2025.9.25.11.50.32.dist-info/RECORD,,
11
+ fgo_api_types-2025.10.5.3.57.8.dist-info/METADATA,sha256=UDVnBelM_McrFwTlG4FSF86T7Tc1wzEt7Rje88Bso_s,1377
12
+ fgo_api_types-2025.10.5.3.57.8.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
13
+ fgo_api_types-2025.10.5.3.57.8.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
14
+ fgo_api_types-2025.10.5.3.57.8.dist-info/RECORD,,