mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-05 00:26:06 +03:00
16 lines
337 B
Protocol Buffer
16 lines
337 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 606
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message ReliquaryUpgradeReq {
|
|
uint64 target_reliquary_guid = 5;
|
|
repeated uint64 food_reliquary_guid_list = 15;
|
|
repeated ItemParam item_param_list = 13;
|
|
}
|