mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
WeaponAwaken (need check),Promot(work),Upgrade(work)
This commit is contained in:
parent
6b01916f61
commit
f3abfbe553
@ -1,25 +1,13 @@
|
|||||||
// https://github.com/SlushinPS/beach-simulator
|
|
||||||
// Copyright (C) 2023 Slushy Team
|
|
||||||
//
|
|
||||||
// This program is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU Affero General Public License as
|
|
||||||
// published by the Free Software Foundation, either version 3 of the
|
|
||||||
// License, or (at your option) any later version.
|
|
||||||
//
|
|
||||||
// This program is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU Affero General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
// CmdId: 23146
|
// 4.7.0
|
||||||
// Obf: AFPFPKMLIPD
|
// CmdId: 25056
|
||||||
|
// Obf: PDGEAGKHCPG
|
||||||
message WeaponAwakenReq {
|
message WeaponAwakenReq {
|
||||||
uint64 target_weapon_guid = 2;
|
uint64 target_weapon_guid = 13;
|
||||||
map<uint32, uint32> affix_level_map = 4;
|
//map<uint32, uint32> affix_level_map = 4; // old
|
||||||
uint64 item_guid = 15;
|
//uint64 item_guid = 15; // old
|
||||||
|
uint32 NEHLGIOLBJA = 9; // maybe item_guid ?
|
||||||
|
repeated uint64 HICOIODAHGK = 15; // list item wp
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,14 @@ syntax = "proto3";
|
|||||||
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
// 4.7.0
|
||||||
|
// CmdId: 1182
|
||||||
|
// OLAEGBJMEFL
|
||||||
message WeaponAwakenRsp {
|
message WeaponAwakenRsp {
|
||||||
map<uint32, uint32> old_affix_level_map = 3;
|
map<uint32, uint32> old_affix_level_map = 2; // sus
|
||||||
map<uint32, uint32> cur_affix_level_map = 12;
|
map<uint32, uint32> cur_affix_level_map = 13; // sus
|
||||||
int32 retcode = 10;
|
int32 retcode = 6;
|
||||||
uint32 target_weapon_awaken_level = 14;
|
uint32 target_weapon_awaken_level = 1;
|
||||||
uint64 target_weapon_guid = 7;
|
uint64 target_weapon_guid = 15;
|
||||||
uint64 avatar_guid = 9;
|
uint64 avatar_guid = 7;
|
||||||
}
|
}
|
@ -1,8 +1,9 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
// 4.6.0
|
// 4.7.0
|
||||||
// CmdId: 27774
|
// CmdId: 9611
|
||||||
|
// MMKGKFCNNFJ
|
||||||
message WeaponPromoteReq {
|
message WeaponPromoteReq {
|
||||||
uint64 target_weapon_guid = 14;
|
uint64 target_weapon_guid = 6;
|
||||||
}
|
}
|
@ -1,11 +1,12 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
// 4.6.0
|
// 4.7.0
|
||||||
// CmdId: 27473
|
// CmdId: 23521
|
||||||
|
// GDCMEIJPPOP
|
||||||
message WeaponPromoteRsp {
|
message WeaponPromoteRsp {
|
||||||
uint64 target_weapon_guid = 5;
|
uint64 target_weapon_guid = 13;
|
||||||
uint32 cur_promote_level = 7; //cur_promote_level or old_promote_level
|
uint32 cur_promote_level = 8; // 2 sus
|
||||||
int32 retcode = 12;
|
int32 retcode = 4;
|
||||||
uint32 old_promote_level = 15; //cur_promote_level or old_promote_level
|
uint32 old_promote_level = 2; // 8 sus
|
||||||
}
|
}
|
@ -3,11 +3,11 @@ option java_package = "emu.grasscutter.net.proto";
|
|||||||
|
|
||||||
import "ItemParam.proto";
|
import "ItemParam.proto";
|
||||||
|
|
||||||
// 4.6.0
|
// 4.7.0
|
||||||
// CmdId: 28307
|
// CmdId: 24162
|
||||||
// sus
|
// LEDEEIJMAJN
|
||||||
message WeaponUpgradeReq {
|
message WeaponUpgradeReq {
|
||||||
repeated ItemParam item_param_list = 3;
|
repeated ItemParam item_param_list = 13;
|
||||||
uint64 target_weapon_guid = 6;
|
uint64 target_weapon_guid = 10;
|
||||||
repeated uint64 food_weapon_guid_list = 13;
|
repeated uint64 food_weapon_guid_list = 3;
|
||||||
}
|
}
|
@ -3,12 +3,13 @@ option java_package = "emu.grasscutter.net.proto";
|
|||||||
|
|
||||||
import "ItemParam.proto";
|
import "ItemParam.proto";
|
||||||
|
|
||||||
// 4.6.0
|
// 4.7.0
|
||||||
// CmdId: 22828
|
// CmdId: 3294
|
||||||
|
// LHEIDHIFFGK
|
||||||
message WeaponUpgradeRsp {
|
message WeaponUpgradeRsp {
|
||||||
repeated ItemParam item_param_list = 5;
|
repeated ItemParam item_param_list = 13;
|
||||||
uint32 cur_level = 8;
|
uint32 cur_level = 3;
|
||||||
uint32 old_level = 9;
|
uint32 old_level = 14;
|
||||||
int32 retcode = 11;
|
int32 retcode = 12;
|
||||||
uint64 target_weapon_guid = 12;
|
uint64 target_weapon_guid = 7;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user