17 lines
371 B
Protocol Buffer
17 lines
371 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MistTrialBestAvatar.proto";
|
|
|
|
// Name: BJAHBGJAENP
|
|
message MistTrialLevelData {
|
|
uint32 open_time = 7;
|
|
uint32 first_pass_time = 10;
|
|
repeated MistTrialBestAvatar best_avatar_list = 11;
|
|
uint32 level_id = 13;
|
|
MistTrialBestAvatar best_hit_avatar = 12;
|
|
bool is_open = 5;
|
|
}
|
|
|