GC-Proto/proto/PotionEnterDungeonNotify.proto

17 lines
351 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "PotionDungeonAvatar.proto";
2023-02-28 04:12:44 +03:00
// Name: LDFPFJDBIAO
// CmdId: 8295
2023-02-18 04:48:44 +03:00
message PotionEnterDungeonNotify {
2023-02-28 04:12:44 +03:00
uint32 level_id = 15;
uint32 stage_id = 12;
uint32 difficulty_level = 7;
uint32 mode_id = 9;
repeated PotionDungeonAvatar dungeon_avatar_list = 11;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00