mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
351 B
Protocol Buffer
17 lines
351 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PotionDungeonAvatar.proto";
|
|
|
|
// CmdId: 8360
|
|
// Name: EFOFHAJFPDA
|
|
message PotionEnterDungeonNotify {
|
|
uint32 level_id = 14;
|
|
repeated PotionDungeonAvatar dungeon_avatar_list = 4;
|
|
uint32 mode_id = 10;
|
|
uint32 stage_id = 11;
|
|
uint32 difficulty_level = 3;
|
|
}
|
|
|