2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
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
|
|
|
import "ChallengeBrief.proto";
|
2023-02-28 06:08:38 +03:00
|
|
|
import "CustomDungeonFinishType.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: KFPODEKAIIB
|
2022-11-06 15:30:21 +03:00
|
|
|
message CustomDungeonResultInfo {
|
2023-02-28 06:08:38 +03:00
|
|
|
bool EBDMFAMBJNG = 9;
|
|
|
|
CustomDungeonFinishType finish_type = 1;
|
|
|
|
uint32 got_coin_num = 2;
|
|
|
|
bool is_arrive_finish = 12;
|
|
|
|
bool JNDPMPEBPIK = 8;
|
|
|
|
uint32 time_cost = 13;
|
|
|
|
uint64 dungeon_guid = 14;
|
|
|
|
repeated ChallengeBrief child_challenge_list = 15;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|