mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +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: KDDEEFOPBJB
|
|
message RogueDiaryAvatar {
|
|
uint32 level = 13;
|
|
ActivityDungeonAvatar avatar = 4;
|
|
repeated RogueDiaryAvatarDisableStatus disable_status_list = 14;
|
|
uint32 tired_round = 3;
|
|
}
|
|
|