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-03-01 05:23:23 +03:00
import "RogueDiaryAvatarDisableStatus.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: KDDEEFOPBJB
2023-02-18 04:48:44 +03:00
message RogueDiaryAvatar {
2023-02-28 04:12:44 +03:00
uint32 level = 13;
ActivityDungeonAvatar avatar = 4;
2023-03-01 05:23:23 +03:00
repeated RogueDiaryAvatarDisableStatus disable_status_list = 14;
2023-02-28 04:12:44 +03:00
uint32 tired_round = 3;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00