2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
2023-08-22 20:09:33 +03:00
|
|
|
import "Vector.proto";
|
|
|
|
import "ServantInfo.proto";
|
|
|
|
|
2022-11-06 15:30:21 +03:00
|
|
|
message SceneEntityAiInfo {
|
2023-08-22 20:09:33 +03:00
|
|
|
bool is_ai_open = 1;
|
|
|
|
Vector born_pos = 2;
|
|
|
|
map<uint32, uint32> skill_cd_map = 3;
|
|
|
|
ServantInfo servant_info = 4;
|
|
|
|
map<uint32, uint32> ai_threat_map = 5;
|
|
|
|
map<uint32, uint32> skill_group_cd_map = 6;
|
|
|
|
uint32 cur_tactic = 7;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|