mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-05 00:26:06 +03:00
17 lines
378 B
Protocol Buffer
17 lines
378 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
// CmdId: 619
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message ReliquaryUpgradeRsp {
|
|
int32 retcode = 1;
|
|
uint64 target_reliquary_guid = 10;
|
|
uint32 old_level = 5;
|
|
uint32 cur_level = 6;
|
|
uint32 power_up_rate = 2;
|
|
repeated uint32 old_append_prop_list = 7;
|
|
repeated uint32 cur_append_prop_list = 14;
|
|
}
|