mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 14:47:44 +00:00
91f8381fb1
* feature(2.7 version): support 2.7 version & upload new protos 1. Support GC in GI 2.7.0; 2. Upload new protos; 3. Fix some bugs cuz by new protos. BREAKING CHANGE: all * fix(database helper): fix player uid issues * fix(ability embryo): uint32 to fixed32 * fix(proto): map mark rename MAP_MARK_FROM_TYPE_NOE to MAP_MARK_FROM_TYPE_NONE * fix(game version): change game version to 2.7.0 * perf(proto): remove unused protos 1. Remove unused protos; 2. Temporarily commented out some of the proto fields. * fix(proto): uint32 to fixed32
34 lines
967 B
Protocol Buffer
Executable File
34 lines
967 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AvatarExcelInfo.proto";
|
|
import "CurVehicleInfo.proto";
|
|
import "SceneReliquaryInfo.proto";
|
|
import "SceneWeaponInfo.proto";
|
|
import "ServerBuff.proto";
|
|
|
|
message SceneAvatarInfo {
|
|
uint32 uid = 1;
|
|
uint32 avatar_id = 2;
|
|
uint64 guid = 3;
|
|
uint32 peer_id = 4;
|
|
repeated uint32 equip_id_list = 5;
|
|
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;
|
|
repeated uint32 team_resonance_list = 16;
|
|
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;
|
|
}
|