27 lines
800 B
Protocol Buffer
27 lines
800 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "StrengthenPointData.proto";
|
|
import "ParamList.proto";
|
|
import "TowerLevelEndNotify.proto";
|
|
import "TrialAvatarFirstPassDungeonNotify.proto";
|
|
|
|
// Version: 4.7.0
|
|
// CmdId: 3857
|
|
// CEPEBFLLCLB
|
|
message DungeonSettleNotify {
|
|
uint32 result = 14; // sus
|
|
uint32 close_time = 13; // OK
|
|
uint32 use_time = 9; // OK
|
|
map<uint32, StrengthenPointData> strengthen_point_data_map = 1; // OK
|
|
bool is_success = 4; // OK
|
|
uint32 create_player_uid = 7; // OK
|
|
map<uint32, ParamList> settle_show = 10; // OK
|
|
repeated uint32 fail_cond_list = 11; // OK
|
|
uint32 dungeon_id = 6; // OK
|
|
oneof detail {
|
|
TowerLevelEndNotify tower_level_end_notify = 1190;
|
|
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 1546;
|
|
}
|
|
} |