GC-Proto/proto/ShowAvatarInfo.proto

26 lines
672 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
2022-11-06 15:30:21 +03:00
import "AvatarFetterInfo.proto";
2023-01-28 17:00:48 +03:00
import "AvatarExcelInfo.proto";
2022-11-06 15:30:21 +03:00
import "PropValue.proto";
import "ShowEquip.proto";
option java_package = "emu.grasscutter.net.proto";
message ShowAvatarInfo {
2023-01-28 17:00:48 +03:00
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;
2022-11-06 15:30:21 +03:00
}