GC-Proto/proto/DungeonChallengeFinishNotif...

26 lines
952 B
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:51:40 +03:00
import "ChallengeFinishType.proto";
2023-08-17 14:18:58 +03:00
import "StrengthenPointData.proto";
2023-01-28 17:00:48 +03:00
import "ChannellerSlabLoopDungeonResultInfo.proto";
2023-05-23 13:12:42 +03:00
import "EffigyChallengeDungeonResultInfo.proto";
import "PotionDungeonResultInfo.proto";
import "CustomDungeonResultInfo.proto";
2024-04-22 15:15:37 +03:00
2022-11-06 15:30:21 +03:00
message DungeonChallengeFinishNotify {
2024-04-22 15:15:37 +03:00
map<uint32, StrengthenPointData> strengthen_point_data_map = 13;
uint32 challenge_record_type = 9;
bool is_success = 1;
bool is_new_record = 10;
ChallengeFinishType finish_type = 7;
uint32 time_cost = 6;
uint32 challenge_index = 5;
uint32 current_value = 12;
oneof detail {
ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 1389;
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 1637;
PotionDungeonResultInfo potion_dungeon_result_info = 319;
CustomDungeonResultInfo custom_dungeon_result_info = 823;
}
2022-11-06 15:30:21 +03:00
}