small update proto p4

This commit is contained in:
Yuuki
2024-08-21 09:48:06 +08:00
parent 914007d231
commit 08af9deb09
69 changed files with 454 additions and 583 deletions

View File

@@ -1,14 +1,15 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// 4.6.0
// CmdId: 336
// 4.7.0
// CmdId: 5692
// ?
message ReliquaryUpgradeRsp {
uint64 target_reliquary_guid = 2;
int32 retcode = 3;
uint32 power_up_rate = 5;
uint32 cur_level = 6;
uint32 old_level = 7;
repeated uint32 cur_append_prop_list = 9; //old_append_prop_list or cur_append_prop_list
repeated uint32 old_append_prop_list = 10; //old_append_prop_list or cur_append_prop_list
uint64 target_reliquary_guid = 12;
int32 retcode = 5;
uint32 power_up_rate = 11;
uint32 cur_level = 7;
uint32 old_level = 14;
// sus
repeated uint32 cur_append_prop_list = 1;
repeated uint32 old_append_prop_list = 8;
}