mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
366 B
Protocol Buffer
16 lines
366 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ActivityDungeonAvatar.proto";
|
|
import "RogueDiaryAvatarDisableStatus.proto";
|
|
|
|
// Name: HAOPJHKKJLK
|
|
message RogueDiaryAvatar {
|
|
repeated RogueDiaryAvatarDisableStatus disable_status_list = 13;
|
|
uint32 tired_round = 10;
|
|
ActivityDungeonAvatar avatar = 1;
|
|
uint32 level = 6;
|
|
}
|
|
|