GC-Proto/proto/DungeonChallengeFinishNotif...

36 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
2023-01-28 17:00:48 +03:00
2022-11-06 15:51:40 +03:00
import "ChallengeFinishType.proto";
2023-01-28 17:00:48 +03:00
import "ChannellerSlabLoopDungeonResultInfo.proto";
2022-11-06 15:30:21 +03:00
import "EffigyChallengeDungeonResultInfo.proto";
import "PotionDungeonResultInfo.proto";
2023-01-28 17:00:48 +03:00
import "CustomDungeonResultInfo.proto";
2022-11-06 15:30:21 +03:00
import "StrengthenPointData.proto";
message DungeonChallengeFinishNotify {
2023-01-28 17:00:48 +03:00
enum ENNDHCIICGB {
option allow_alias = true;
NONE = 0;
PEPPOHPHJOJ = 946;
DCDNILFDFLB = 0;
NNBKOLMPOEA = 1;
}
2022-12-05 15:02:30 +03:00
2023-01-28 17:00:48 +03:00
uint32 challengeIndex = 8;
ChallengeFinishType finishType = 13;
bool isSuccess = 6;
uint32 challengeRecordType = 5;
bool isNewRecord = 3;
uint32 currentValue = 9;
uint32 timeCost = 11;
map<uint32, StrengthenPointData> strengthenPointDataMap = 7;
2023-01-29 06:17:24 +03:00
oneof detail {
2023-01-28 17:00:48 +03:00
ChannellerSlabLoopDungeonResultInfo channeller_slab_loop_dungeon_result_info = 1867;
EffigyChallengeDungeonResultInfo effigy_challenge_dungeon_result_info = 942;
PotionDungeonResultInfo potion_dungeon_result_info = 709;
CustomDungeonResultInfo custom_dungeon_result_info = 41;
}
2022-11-06 15:30:21 +03:00
}