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";
|
|
|
|
// CmdId: 8152
|
|
// Name: ICGPFMFGHNF
|
|
message PotionEnterDungeonReq {
|
|
uint32 level_id = 10;
|
|
uint32 mode_id = 11;
|
|
uint32 stage_id = 7;
|
|
repeated uint32 buff_id_list = 5;
|
|
repeated PotionAvatarInfo avatar_info_list = 6;
|
|
}
|
|
|