2023-05-23 09:48:59 +03:00
|
|
|
syntax = "proto3";
|
2024-06-08 09:18:08 +03:00
|
|
|
|
2023-05-23 09:48:59 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
|
2023-05-23 13:12:42 +03:00
|
|
|
import "CustomDungeonFinishType.proto";
|
2023-08-17 14:18:58 +03:00
|
|
|
import "ChallengeBrief.proto";
|
2024-06-08 09:18:08 +03:00
|
|
|
|
|
|
|
// Version: 4.6.0
|
2023-05-23 13:12:42 +03:00
|
|
|
message CustomDungeonResultInfo {
|
2024-06-08 09:18:08 +03:00
|
|
|
CustomDungeonFinishType finish_type = 1;
|
|
|
|
bool AOFLEOKAPPE = 4;
|
|
|
|
uint32 get_coin_num = 5;
|
|
|
|
repeated ChallengeBrief child_challenge_list = 6;
|
|
|
|
uint32 time_cost = 8;
|
2023-08-17 14:18:58 +03:00
|
|
|
uint64 dungeon_guid = 11;
|
2024-06-08 09:18:08 +03:00
|
|
|
bool JLPAPANBLCE = 12;
|
|
|
|
bool PGEHHNIADBK = 14;
|
2023-05-23 09:48:59 +03:00
|
|
|
}
|