GC-Proto/proto/InvestigationMonster.proto

35 lines
910 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-02-28 06:08:38 +03:00
// Name: BIMILKAGLEC
2022-11-06 15:30:21 +03:00
message InvestigationMonster {
2023-03-07 05:02:26 +03:00
// Name: HGJIJCEPLEE > 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
uint32 max_boss_chest_num = 13; //HFEFHDCOMLB
bool is_area_locked = 14; // MFGIMDGKDHH
2023-03-11 18:42:44 +03:00
uint32 refresh_interval = 3; //NKADJMFOMGB
bool is_alive = 11; // ABCENJAFGOF
2023-02-28 06:08:38 +03:00
WeeklyBossResinDiscountInfo weekly_boss_resin_discount_info = 9;
uint32 next_refresh_time = 8;
uint32 group_id = 1206;
uint32 id = 6;
uint32 scene_id = 7;
uint32 level = 5;
LockState lock_state = 10;
2023-03-11 18:42:44 +03:00
uint32 JPBJFFCFINC = 4; // JPBJFFCFINC
2023-02-28 06:08:38 +03:00
uint32 resin = 15;
uint32 monster_id = 308;
2023-03-07 05:02:26 +03:00
uint32 boss_chest_num = 1; // HDIBPIICNBB
2023-02-28 06:08:38 +03:00
uint32 city_id = 2;
Vector pos = 12;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00