Add embryos for all skill depots for the main characters

This commit is contained in:
Melledy
2022-06-16 07:54:53 -07:00
parent 00bd23873f
commit 8fdf9bfddf
12 changed files with 253 additions and 44 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 1037
// EnetChannelId: 0
// EnetIsReliable: true
message AvatarSkillDepotChangeNotify {
uint64 avatar_guid = 2;
uint32 entity_id = 8;
uint32 skill_depot_id = 9;
repeated uint32 talent_id_list = 1;
repeated uint32 proud_skill_list = 5;
uint32 core_proud_skill_level = 4;
map<uint32, uint32> skill_level_map = 10;
map<uint32, uint32> proud_skill_extra_level_map = 11;
}