update proto 3.5 part 1

This commit is contained in:
Akbar Yahya
2023-02-28 11:08:38 +08:00
parent 256417be7f
commit 02a55a91bb
1370 changed files with 24758 additions and 23779 deletions

View File

@@ -2,19 +2,19 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "AbilitySyncStateInfo.proto";
import "EntityRendererChangedInfo.proto";
// Name: NCCBAHIEMNM
message SceneWeaponInfo {
uint32 entityId = 1;
uint32 gadgetId = 2;
uint32 itemId = 3;
uint64 guid = 4;
uint32 level = 5;
uint32 promoteLevel = 6;
AbilitySyncStateInfo abilityInfo = 7;
map<uint32, uint32> affixMap = 8;
EntityRendererChangedInfo rendererChangedInfo = 9;
uint32 entity_id = 1;
uint32 gadget_id = 2;
uint32 item_id = 3;
uint64 guid = 4;
uint32 level = 5;
uint32 promote_level = 6;
AbilitySyncStateInfo ability_info = 7;
map<uint32, uint32> affix_map = 8;
EntityRendererChangedInfo renderer_changed_info = 9;
}