mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
25 lines
445 B
Protocol Buffer
25 lines
445 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "PotionAvatarInfo.proto";
|
|
|
|
message PotionEnterDungeonReq {
|
|
//enum MOHGCCGKGPE {
|
|
// option allow_alias= true;
|
|
// NONE = 0;
|
|
// PEPPOHPHJOJ = 8571;
|
|
// DCDNILFDFLB = 0;
|
|
// NNBKOLMPOEA = 1;
|
|
// EAJIABGAOCI = 1;
|
|
//}
|
|
|
|
uint32 modeId = 14;
|
|
repeated PotionAvatarInfo avatarInfoList = 8;
|
|
uint32 levelId = 6;
|
|
repeated uint32 buffIdList = 11;
|
|
uint32 stageId = 1;
|
|
}
|