GC-Proto/proto/DungeonChallengeFinishNotif...

31 lines
1.0 KiB
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
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-28 06:08:38 +03:00
// Name: CHPLAGEPIEC
// CmdId: 956
2022-11-06 15:30:21 +03:00
message DungeonChallengeFinishNotify {
uint32 challengeRecordType = 1;
2023-02-28 06:08:38 +03:00
uint32 challenge_index = 11;
ChallengeFinishType finish_type = 10;
uint32 currentValue = 15;
2023-02-28 06:08:38 +03:00
bool is_success = 4;
map<uint32, StrengthenPointData> strengthen_point_data_map = 6;
uint32 time_cost = 3;
bool is_new_record = 2;
oneof detail {
ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 160;
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 278;
PotionDungeonResultInfo potion_dungeon_result_info = 1681;
CustomDungeonResultInfo custom_dungeon_result_info = 212;
}
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00