mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
343 B
Protocol Buffer
17 lines
343 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PotionAvatarInfo.proto";
|
|
|
|
// Name: DFLDHLOHEEI
|
|
// CmdId: 8630
|
|
message PotionEnterDungeonReq {
|
|
repeated PotionAvatarInfo avatar_info_list = 5;
|
|
uint32 level_id = 8;
|
|
repeated uint32 buff_id_list = 12;
|
|
uint32 stage_id = 6;
|
|
uint32 mode_id = 14;
|
|
}
|
|
|