GC-Proto/proto/WeaponAwakenRsp.proto

17 lines
361 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-02-28 06:08:38 +03:00
// Name: DAEDFCNPJJC
// CmdId: 686
2022-11-06 15:30:21 +03:00
message WeaponAwakenRsp {
2023-02-28 06:42:55 +03:00
map<uint32, uint32> oldAffixLevelMap = 4;
2023-02-28 06:08:38 +03:00
int32 retcode = 5;
uint64 target_weapon_guid = 15;
2023-02-28 06:42:55 +03:00
map<uint32, uint32> curAffixLevelMap = 13;
2023-02-28 06:08:38 +03:00
uint64 avatar_guid = 6;
uint32 target_weapon_awaken_level = 14;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00