GC-Proto/proto/RogueDiaryAvatar.proto

16 lines
366 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 "ActivityDungeonAvatar.proto";
2023-04-11 06:14:48 +03:00
import "RogueDiaryAvatarDisableStatus.proto";
2023-02-18 04:48:44 +03:00
2023-04-11 06:14:48 +03:00
// Name: HAOPJHKKJLK
2023-02-18 04:48:44 +03:00
message RogueDiaryAvatar {
2023-04-11 06:14:48 +03:00
repeated RogueDiaryAvatarDisableStatus disable_status_list = 13;
uint32 tired_round = 10;
ActivityDungeonAvatar avatar = 1;
uint32 level = 6;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00