GC-Proto/proto/WeaponUpgradeRsp.proto

17 lines
321 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "ItemParam.proto";
2023-02-28 06:08:38 +03:00
// Name: HFBBOJNPDOF
// CmdId: 623
2022-11-06 15:30:21 +03:00
message WeaponUpgradeRsp {
2023-03-07 05:02:26 +03:00
uint32 cur_level = 15;
2023-02-28 06:08:38 +03:00
repeated ItemParam item_param_list = 3;
2023-03-07 05:02:26 +03:00
uint32 old_level = 5;
2023-02-28 06:08:38 +03:00
uint64 target_weapon_guid = 11;
int32 retcode = 13;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00