GC-Proto/proto/SceneAvatarInfo.proto

36 lines
1.0 KiB
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "AvatarExcelInfo.proto";
2023-02-28 06:08:38 +03:00
import "CurVehicleInfo.proto";
2022-11-06 15:30:21 +03:00
import "SceneReliquaryInfo.proto";
2023-02-28 06:08:38 +03:00
import "SceneWeaponInfo.proto";
2022-11-06 15:30:21 +03:00
import "ServerBuff.proto";
2023-04-11 11:18:47 +03:00
// Name: LJEDENNPCCI
2022-11-06 15:30:21 +03:00
message SceneAvatarInfo {
2023-02-28 06:08:38 +03:00
uint32 uid = 1;
uint32 avatar_id = 2;
uint64 guid = 3;
uint32 peer_id = 4;
2023-04-11 11:18:47 +03:00
repeated uint32 team_resonance_list = 5;
2023-02-28 06:08:38 +03:00
uint32 skill_depot_id = 6;
repeated uint32 talent_id_list = 7;
SceneWeaponInfo weapon = 8;
repeated SceneReliquaryInfo reliquary_list = 9;
uint32 core_proud_skill_level = 11;
repeated uint32 inherent_proud_skill_list = 12;
map<uint32, uint32> skill_level_map = 13;
map<uint32, uint32> proud_skill_extra_level_map = 14;
repeated ServerBuff server_buff_list = 15;
2023-04-11 11:18:47 +03:00
repeated uint32 equip_id_list = 16;
2023-02-28 06:08:38 +03:00
uint32 wearing_flycloak_id = 17;
uint32 born_time = 18;
uint32 costume_id = 19;
CurVehicleInfo cur_vehicle_info = 20;
AvatarExcelInfo excel_info = 21;
uint32 anim_hash = 22;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00