mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 17:17:43 +00:00
91f8381fb1
* feature(2.7 version): support 2.7 version & upload new protos 1. Support GC in GI 2.7.0; 2. Upload new protos; 3. Fix some bugs cuz by new protos. BREAKING CHANGE: all * fix(database helper): fix player uid issues * fix(ability embryo): uint32 to fixed32 * fix(proto): map mark rename MAP_MARK_FROM_TYPE_NOE to MAP_MARK_FROM_TYPE_NONE * fix(game version): change game version to 2.7.0 * perf(proto): remove unused protos 1. Remove unused protos; 2. Temporarily commented out some of the proto fields. * fix(proto): uint32 to fixed32
36 lines
873 B
Protocol Buffer
Executable File
36 lines
873 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MonsterBornType.proto";
|
|
import "MonsterRoute.proto";
|
|
import "SceneFishInfo.proto";
|
|
import "SceneWeaponInfo.proto";
|
|
|
|
message SceneMonsterInfo {
|
|
uint32 monster_id = 1;
|
|
uint32 group_id = 2;
|
|
uint32 config_id = 3;
|
|
repeated SceneWeaponInfo weapon_list = 4;
|
|
uint32 authority_peer_id = 5;
|
|
repeated uint32 affix_list = 6;
|
|
bool is_elite = 7;
|
|
uint32 owner_entity_id = 8;
|
|
uint32 summoned_tag = 9;
|
|
map<uint32, uint32> summon_tag_map = 10;
|
|
uint32 pose_id = 11;
|
|
MonsterBornType born_type = 12;
|
|
uint32 block_id = 13;
|
|
uint32 mark_flag = 14;
|
|
uint32 title_id = 15;
|
|
uint32 special_name_id = 16;
|
|
uint32 attack_target_id = 17;
|
|
MonsterRoute monster_route = 18;
|
|
uint32 ai_config_id = 19;
|
|
uint32 level_route_id = 20;
|
|
uint32 init_pose_id = 21;
|
|
oneof content {
|
|
SceneFishInfo fish_info = 50;
|
|
}
|
|
}
|