GC-Proto/proto/DungeonSettleNotify.proto

48 lines
1.9 KiB
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "ChannellerSlabLoopDungeonResultInfo.proto";
2023-02-28 06:08:38 +03:00
import "CrystalLinkDungeonSettleInfo.proto";
2023-02-28 11:59:24 +03:00
import "DungeonSettleExhibitionInfo.proto";
2022-11-06 15:30:21 +03:00
import "EffigyChallengeDungeonResultInfo.proto";
2023-02-28 06:08:38 +03:00
import "EffigyChallengeV2SettleInfo.proto";
import "InstableSprayDungeonSettleInfo.proto";
2023-02-28 11:59:24 +03:00
import "ParamList.proto";
2022-11-06 15:30:21 +03:00
import "RoguelikeDungeonSettleInfo.proto";
2023-02-28 06:08:38 +03:00
import "StrengthenPointData.proto";
2022-11-06 15:30:21 +03:00
import "SummerTimeV2DungeonSettleInfo.proto";
2023-01-28 17:00:48 +03:00
import "TeamChainSettleInfo.proto";
2023-02-28 06:08:38 +03:00
import "TowerLevelEndNotify.proto";
import "TrialAvatarFirstPassDungeonNotify.proto";
import "WindFieldDungeonSettleInfo.proto";
2023-02-28 06:08:38 +03:00
// Name: FFCKLBMMNOC
// CmdId: 950
2022-11-06 15:30:21 +03:00
message DungeonSettleNotify {
2023-02-28 06:08:38 +03:00
uint32 dungeon_id = 4;
uint32 use_time = 7;
uint32 close_time = 11;
2023-02-28 11:59:24 +03:00
uint32 createPlayerUid = 10;
2023-02-28 06:08:38 +03:00
repeated uint32 fail_cond_list = 3;
2023-02-28 11:59:24 +03:00
repeated DungeonSettleExhibitionInfo exhibitionInfoList = 14;
map<uint32, ParamList> settleShow = 6;
2023-02-28 06:08:38 +03:00
map<uint32, StrengthenPointData> strengthen_point_data_map = 9;
bool is_success = 15;
2023-02-28 11:59:24 +03:00
uint32 result = 12;
2023-02-28 06:08:38 +03:00
oneof detail {
TowerLevelEndNotify tower_level_end_notify = 771;
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 626;
ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 1006;
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 243;
RoguelikeDungeonSettleInfo roguelike_dungeon_settle_info = 919;
CrystalLinkDungeonSettleInfo crystal_link_settle_info = 202;
SummerTimeV2DungeonSettleInfo summer_time_v2_dungeon_settle_info = 1187;
InstableSprayDungeonSettleInfo instable_spray_settle_info = 1506;
WindFieldDungeonSettleInfo wind_field_dungeon_settle_info = 1577;
EffigyChallengeV2SettleInfo effigy_challenge_v2_settle_info = 757;
TeamChainSettleInfo team_chain_settle_info = 1881;
}
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00