15 lines
306 B
Protocol Buffer
15 lines
306 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 627
|
|
// Name: ENAGFOOLFAD
|
|
message CalcWeaponUpgradeReturnItemsReq {
|
|
repeated ItemParam item_param_list = 13;
|
|
uint64 target_weapon_guid = 1;
|
|
repeated uint64 food_weapon_guid_list = 4;
|
|
}
|
|
|