24 lines
431 B
Protocol Buffer
24 lines
431 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "PotionDungeonAvatar.proto";
|
|
|
|
message PotionEnterDungeonNotify {
|
|
//enum HPMDGJJPEDC {
|
|
// option allow_alias= true;
|
|
// NONE = 0;
|
|
// PEPPOHPHJOJ = 8043;
|
|
// DCDNILFDFLB = 0;
|
|
// NNBKOLMPOEA = 1;
|
|
//}
|
|
|
|
uint32 difficultyLevel = 5;
|
|
uint32 stageId = 8;
|
|
repeated PotionDungeonAvatar dungeonAvatarList = 1;
|
|
uint32 levelId = 14;
|
|
uint32 modeId = 6;
|
|
}
|