GC-Proto/proto/DungeonChallengeFinishNotif...

30 lines
1006 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ChallengeFinishType.proto";
import "ChannelerSlabLoopDungeonResultInfo.proto";
import "CustomDungeonResultInfo.proto";
import "EffigyChallengeDungeonResultInfo.proto";
import "PotionDungeonResultInfo.proto";
import "StrengthenPointData.proto";
// Version: 4.7.0
// CmdId: 25587
// CEPEBFLLCLB
message DungeonChallengeFinishNotify {
ChallengeFinishType finish_type = 6;
uint32 time_cost = 5;
map<uint32, StrengthenPointData> strengthen_point_data_map = 7; // sus
uint32 challenge_index = 13;
bool is_success = 1; // sus
uint32 challenge_record_type = 4;
bool is_new_record = 2; // sus
uint32 current_value = 14;
oneof detail {
ChannelerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 917;
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 165;
PotionDungeonResultInfo potion_dungeon_result_info = 1784;
CustomDungeonResultInfo custom_dungeon_result_info = 1317;
}
}