update proto 3.5 part 1

This commit is contained in:
Akbar Yahya
2023-02-28 11:08:38 +08:00
parent 256417be7f
commit 02a55a91bb
1370 changed files with 24758 additions and 23779 deletions

View File

@@ -2,25 +2,25 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "AvatarFetterInfo.proto";
import "AvatarExcelInfo.proto";
import "AvatarFetterInfo.proto";
import "PropValue.proto";
import "ShowEquip.proto";
// Name: LFKBPFHPKCN
message ShowAvatarInfo {
uint32 avatarId = 1;
map<uint32, PropValue> propMap = 2;
repeated uint32 talentIdList = 3;
map<uint32, float> fightPropMap = 4;
uint32 skillDepotId = 5;
uint32 coreProudSkillLevel = 6;
repeated uint32 inherentProudSkillList = 7;
map<uint32, uint32> skillLevelMap = 8;
map<uint32, uint32> proudSkillExtraLevelMap = 9;
repeated ShowEquip equipList = 10;
AvatarFetterInfo fetterInfo = 11;
uint32 costumeId = 12;
AvatarExcelInfo excelInfo = 13;
uint32 avatar_id = 1;
map<uint32, PropValue> prop_map = 2;
repeated uint32 talent_id_list = 3;
map<uint32, float> fight_prop_map = 4;
uint32 skill_depot_id = 5;
uint32 core_proud_skill_level = 6;
repeated uint32 inherent_proud_skill_list = 7;
map<uint32, uint32> skill_level_map = 8;
map<uint32, uint32> proud_skill_extra_level_map = 9;
repeated ShowEquip equip_list = 10;
AvatarFetterInfo fetter_info = 11;
uint32 costume_id = 12;
AvatarExcelInfo excel_info = 13;
}