GC-Proto/proto/DungeonSettleNotify.proto

32 lines
1.1 KiB
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
2024-07-08 21:40:42 +03:00
//import "DungeonSettleExhibitionInfo.proto";
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-07-08 21:40:42 +03:00
//import "ChannelerSlabLoopDungeonResultInfo.proto";
//import "EffigyChallengeDungeonResultInfo.proto";
2024-04-23 17:44:53 +03:00
2024-06-08 09:18:08 +03:00
// Version: 4.6.0
// CmdId: 944
2022-11-06 15:30:21 +03:00
message DungeonSettleNotify {
2024-06-08 09:18:08 +03:00
uint32 result = 1;
uint32 close_time = 3;
2024-07-08 21:40:42 +03:00
//repeated DungeonSettleExhibitionInfo exhibition_info_list = 5;
2024-06-08 09:18:08 +03:00
uint32 use_time = 6;
map<uint32, StrengthenPointData> strengthen_point_data_map = 8;
bool is_success = 9;
uint32 create_player_uid = 11;
map<uint32, ParamList> settle_show = 12;
repeated uint32 fail_cond_list = 13;
uint32 dungeon_id = 14;
oneof detail {
TowerLevelEndNotify tower_level_end_notify = 517;
TrialAvatarFirstPassDungeonNotify trial_avatar_first_pass_dungeon_notify = 1297;
2024-07-08 21:40:42 +03:00
//ChannelerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 803;
//EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 974;
2024-06-08 09:18:08 +03:00
}
2024-04-23 17:44:53 +03:00
}