GC-Proto/proto/AvatarEnterSceneInfo.proto

17 lines
490 B
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";
2024-05-22 14:51:09 +03:00
2023-08-17 14:18:58 +03:00
import "ServerBuff.proto";
2024-05-22 14:51:09 +03:00
import "AbilitySyncStateInfo.proto";
2024-04-21 23:51:36 +03:00
2024-05-22 14:51:09 +03:00
// 4.6.0
2022-11-06 15:30:21 +03:00
message AvatarEnterSceneInfo {
2024-05-22 14:51:09 +03:00
uint32 avatar_entity_id = 4;
repeated ServerBuff server_buff_list = 5;
repeated uint32 buff_id_list = 8;
AbilitySyncStateInfo avatar_ability_info = 10;//sus 10 or14
uint64 weapon_guid = 11;
uint32 weapon_entity_id = 12;
AbilitySyncStateInfo weapon_ability_info = 14;//sus 10 or14
uint64 avatar_guid = 15;
}