mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
19 lines
480 B
Protocol Buffer
19 lines
480 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CrystalLinkBuffInfo.proto";
|
|
import "CrystalLinkDungeonAvatarInfo.proto";
|
|
|
|
// CmdId: 8587
|
|
// Name: MOKDJJEKNOJ
|
|
message CrystalLinkDungeonInfoNotify {
|
|
bool is_upper_part = 11;
|
|
uint32 difficulty_id = 7;
|
|
uint32 init_gallery_progress = 9;
|
|
repeated CrystalLinkBuffInfo buff_info_list = 14;
|
|
repeated CrystalLinkDungeonAvatarInfo dungeon_avatar_info_list = 4;
|
|
uint32 level_id = 5;
|
|
}
|
|
|