2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
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";
|
2023-01-29 02:46:20 +03:00
|
|
|
import "Vector.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-04-11 11:18:47 +03:00
|
|
|
// Name: KKJAKFLICEJ
|
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
|
|
|
|