GC-Proto/proto/DungeonSettleNotify.proto

29 lines
797 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-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-03-11 18:42:44 +03:00
map<uint32, ParamList> settleShow = 14;
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 {
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