15 lines
295 B
Protocol Buffer
15 lines
295 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 666
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message CalcWeaponUpgradeReturnItemsRsp {
|
|
int32 retcode = 5;
|
|
uint64 target_weapon_guid = 10;
|
|
repeated ItemParam item_param_list = 3;
|
|
}
|