15 lines
293 B
Protocol Buffer
15 lines
293 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// Name: EMACIPMAPCM
|
|
// CmdId: 656
|
|
message WeaponUpgradeReq {
|
|
repeated uint64 food_weapon_guid_list = 14;
|
|
uint64 target_weapon_guid = 10;
|
|
repeated ItemParam item_param_list = 12;
|
|
}
|
|
|