GC-Proto/proto/DungeonChallengeFinishNotif...

30 lines
1006 B
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-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-07-05 00:44:58 +03:00
// Version: 4.7.0
// CmdId: 25587
// CEPEBFLLCLB
2022-11-06 15:30:21 +03:00
message DungeonChallengeFinishNotify {
2024-07-05 00:44:58 +03:00
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;
2024-06-08 09:18:08 +03:00
oneof detail {
2024-07-05 00:44:58 +03:00
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;
2024-06-08 09:18:08 +03:00
}
}