GC-Proto/proto/DungeonSettleNotify.proto

31 lines
991 B
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-02-28 11:59:24 +03:00
import "ParamList.proto";
2023-02-28 06:08:38 +03:00
import "StrengthenPointData.proto";
import "TowerLevelEndNotify.proto";
import "TrialAvatarFirstPassDungeonNotify.proto";
2023-04-09 10:56:27 +03:00
import "DungeonSettleExhibitionInfo.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-04-09 10:56:27 +03:00
uint32 result = 10; //CFMPHBBHMBL
2023-02-28 06:08:38 +03:00
repeated uint32 fail_cond_list = 3;
2023-04-09 10:56:27 +03:00
repeated DungeonSettleExhibitionInfo exhibition_info_list = 14; //DPACDAIBBIL
map<uint32, ParamList> settleShow = 6; //map<uint32, MBLNIKHFGKN> NLEILHLODMF
2023-02-28 06:08:38 +03:00
map<uint32, StrengthenPointData> strengthen_point_data_map = 9;
bool is_success = 15;
2023-04-09 10:56:27 +03:00
uint32 create_player_uid = 12; //IHBGNOACKJJ
2023-02-28 06:08:38 +03:00
oneof detail {
2023-03-07 05:02:26 +03:00
// Type Event
2023-02-28 06:08:38 +03:00
TowerLevelEndNotify tower_level_end_notify = 771;
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 626;
}
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00