GC-Proto/proto/CreateEntityInfo.proto

27 lines
543 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-02-28 06:08:38 +03:00
import "CreateGadgetInfo.proto";
import "Vector.proto";
2023-02-28 06:08:38 +03:00
// Name: PDPKPDBANCA
2022-11-06 15:30:21 +03:00
message CreateEntityInfo {
2023-02-28 06:08:38 +03:00
uint32 level = 5;
Vector pos = 6;
Vector rot = 7;
uint32 scene_id = 10;
uint32 room_id = 11;
uint32 client_unique_id = 12;
oneof entity {
uint32 monster_id = 1;
uint32 npc_id = 2;
uint32 gadget_id = 3;
uint32 item_id = 4;
}
2023-03-07 05:02:26 +03:00
oneof entity_create_info {
2023-02-28 06:08:38 +03:00
CreateGadgetInfo gadget = 13;
}
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00