GC-Proto/proto/DungeonSettleNotify.proto

27 lines
800 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2024-06-08 09:18:08 +03:00
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-06-08 09:18:08 +03:00
2023-02-28 06:08:38 +03:00
import "StrengthenPointData.proto";
2023-08-17 14:18:58 +03:00
import "ParamList.proto";
2023-02-28 06:08:38 +03:00
import "TowerLevelEndNotify.proto";
import "TrialAvatarFirstPassDungeonNotify.proto";
2024-04-23 17:44:53 +03:00
2024-07-22 06:47:23 +03:00
// Version: 4.7.0
// CmdId: 3857
// CEPEBFLLCLB
2022-11-06 15:30:21 +03:00
message DungeonSettleNotify {
2024-07-22 06:47:23 +03:00
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
2024-06-08 09:18:08 +03:00
oneof detail {
2024-07-22 06:47:23 +03:00
TowerLevelEndNotify tower_level_end_notify = 1190;
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 1546;
2024-06-08 09:18:08 +03:00
}
2024-04-23 17:44:53 +03:00
}