GC-Proto/proto/DungeonSettleNotify.proto

30 lines
899 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";
import "DungeonSettleExhibitionInfo.proto";
// 3.6 HELP
2022-11-06 15:30:21 +03:00
message DungeonSettleNotify {
2023-04-11 11:18:47 +03:00
uint32 use_time = 5;
2023-05-22 12:54:27 +03:00
uint32 create_player_uid = 9; // CHNDMCHIOON
2023-04-11 11:18:47 +03:00
map<uint32, ParamList> settle_show = 14;
map<uint32, StrengthenPointData> strengthen_point_data_map = 8;
uint32 close_time = 13;
uint32 dungeon_id = 7;
repeated DungeonSettleExhibitionInfo exhibition_info_list = 11;
bool is_success = 2;
repeated uint32 fail_cond_list = 12;
2023-05-22 12:54:27 +03:00
uint32 result = 10; // BBMMPMLBGJO
2023-02-28 06:08:38 +03:00
oneof detail {
2023-04-11 11:18:47 +03:00
TowerLevelEndNotify tower_level_end_notify = 1587;
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 1512;
2023-02-28 06:08:38 +03:00
}
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00