GC-Proto/proto/InvestigationMonster.proto

35 lines
880 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
import "Vector.proto";
2023-02-28 06:08:38 +03:00
import "WeeklyBossResinDiscountInfo.proto";
2023-04-11 11:18:47 +03:00
// Name: GLMNKJIOKFF
2022-11-06 15:30:21 +03:00
message InvestigationMonster {
2023-04-11 11:18:47 +03:00
// Name: ENEAGILHBCC > LockState
2023-02-28 06:08:38 +03:00
enum LockState {
2023-02-28 23:24:57 +03:00
LOCK_STATE_NONE = 0;
LOCK_STATE_QUEST = 1;
2023-02-28 06:08:38 +03:00
}
2023-03-07 05:02:26 +03:00
2023-04-11 11:18:47 +03:00
bool is_area_locked = 8;
uint32 city_id = 5;
uint32 refresh_interval = 10; // CBBFLPAGFOI
uint32 next_refresh_time = 1;
WeeklyBossResinDiscountInfo weekly_boss_resin_discount_info = 12;
bool is_alive = 14;
uint32 level = 13;
uint32 boss_chest_num = 9; // MGMCKOOBFBJ
uint32 DHMMIBILNEE = 11; // DHMMIBILNEE
Vector pos = 2;
uint32 group_id = 1212;
uint32 id = 7;
uint32 scene_id = 6;
uint32 resin = 3;
uint32 monster_id = 518;
LockState lock_state = 4;
uint32 max_boss_chest_num = 15; // HKBNEBOAMDI
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00