mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
23 lines
520 B
Protocol Buffer
23 lines
520 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 8943
|
|
// Name: BBDEIOEDMOF
|
|
message MistTrialSelectAvatarAndEnterDungeonReq {
|
|
// Name: OKKBHJNLCFB
|
|
message SelectAvatarIndex {
|
|
oneof detail {
|
|
uint32 mist_trial_avatar_id = 6;
|
|
uint64 formal_avatar_guid = 11;
|
|
}
|
|
}
|
|
|
|
repeated uint32 select_trial_avatar_id_list = 10;
|
|
repeated SelectAvatarIndex select_avatar_index_list = 3;
|
|
uint32 trial_id = 12;
|
|
uint32 enter_point_id = 1;
|
|
}
|
|
|