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
|
|
|
|
2022-11-06 15:51:40 +03:00
|
|
|
import "ChallengeFinishType.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
import "ChannelerSlabLoopDungeonResultInfo.proto";
|
|
|
|
import "CustomDungeonResultInfo.proto";
|
2023-05-23 13:12:42 +03:00
|
|
|
import "EffigyChallengeDungeonResultInfo.proto";
|
|
|
|
import "PotionDungeonResultInfo.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
import "StrengthenPointData.proto";
|
2024-04-22 15:15:37 +03:00
|
|
|
|
2024-06-08 09:18:08 +03:00
|
|
|
// Version: 4.6.0
|
|
|
|
// CmdId: 20089
|
2022-11-06 15:30:21 +03:00
|
|
|
message DungeonChallengeFinishNotify {
|
2024-06-08 09:18:08 +03:00
|
|
|
ChallengeFinishType finish_type = 2;
|
|
|
|
uint32 time_cost = 3;
|
|
|
|
map<uint32, StrengthenPointData> strengthen_point_data_map = 5;
|
|
|
|
uint32 challenge_index = 7;
|
|
|
|
bool is_success = 8;
|
|
|
|
uint32 challenge_record_type = 9;
|
|
|
|
bool is_new_record = 13;
|
|
|
|
uint32 current_value = 15;
|
|
|
|
oneof detail {
|
|
|
|
ChannelerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 1922;
|
|
|
|
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 1859;
|
|
|
|
PotionDungeonResultInfo potion_dungeon_result_info = 1677;
|
|
|
|
CustomDungeonResultInfo custom_dungeon_result_info = 1349;
|
|
|
|
}
|
|
|
|
}
|