2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
2022-11-06 15:51:40 +03:00
|
|
|
import "ChallengeFinishType.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "ChannellerSlabLoopDungeonResultInfo.proto";
|
2023-02-28 06:08:38 +03:00
|
|
|
import "CustomDungeonResultInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "EffigyChallengeDungeonResultInfo.proto";
|
|
|
|
import "PotionDungeonResultInfo.proto";
|
|
|
|
import "StrengthenPointData.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-04-11 11:18:47 +03:00
|
|
|
// CmdId: 942
|
|
|
|
// Name: DHLGODFFBFB
|
2022-11-06 15:30:21 +03:00
|
|
|
message DungeonChallengeFinishNotify {
|
2023-04-11 11:18:47 +03:00
|
|
|
uint32 currentValue = 3; //MDLNIEHGHHD
|
|
|
|
uint32 challengeRecordType = 6; // JGEIIGFGNJG
|
|
|
|
uint32 time_cost = 5;
|
|
|
|
uint32 challenge_index = 14;
|
|
|
|
ChallengeFinishType finish_type = 7;
|
|
|
|
bool is_success = 2;
|
|
|
|
map<uint32, StrengthenPointData> strengthen_point_data_map = 13;
|
|
|
|
bool is_new_record = 8;
|
2023-02-28 06:08:38 +03:00
|
|
|
oneof detail {
|
2023-04-11 11:18:47 +03:00
|
|
|
ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 357;
|
|
|
|
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 1482;
|
|
|
|
PotionDungeonResultInfo potion_dungeon_result_info = 507;
|
|
|
|
CustomDungeonResultInfo custom_dungeon_result_info = 806;
|
2023-02-28 06:08:38 +03:00
|
|
|
}
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|