GC-Proto/proto/DungeonChallengeFinishNotif...

29 lines
1.0 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-08-28 12:09:22 +03:00
// Version: 5.0
// CmdId: 753
2024-06-08 09:18:08 +03:00
2024-08-28 12:09:22 +03:00
import "StrengthenPointData.proto";
2022-11-06 15:51:40 +03:00
import "ChallengeFinishType.proto";
2024-08-28 12:09:22 +03:00
//import "ChannellerSlabLoopDungeonResultInfo.proto";
2024-06-08 09:18:08 +03:00
import "CustomDungeonResultInfo.proto";
2023-05-23 13:12:42 +03:00
import "PotionDungeonResultInfo.proto";
2024-08-28 12:09:22 +03:00
//import "EffigyChallengeDungeonResultInfo.proto";
2022-11-06 15:30:21 +03:00
message DungeonChallengeFinishNotify {
2024-08-28 12:09:22 +03:00
uint32 challenge_index = 2;
map<uint32, StrengthenPointData> strengthen_point_data_map = 4;
bool is_success = 5;
uint32 current_value = 6;
uint32 time_cost = 8;
uint32 challenge_record_type = 10;
bool is_new_record = 13;
ChallengeFinishType finish_type = 14;
oneof detail {
//ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 179;
CustomDungeonResultInfo custom_dungeon_result_info = 207;
PotionDungeonResultInfo potion_dungeon_result_info = 354; // proto
//EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 1137;
}
2024-06-08 09:18:08 +03:00
}