GC-Proto/proto/InvestigationMonster.proto

33 lines
786 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-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-02-28 23:24:57 +03:00
uint32 bossChestNum = 13;
bool isAlive = 14;
uint32 maxBossChestNum = 3;
bool isAreaLocked = 11;
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-02-28 23:24:57 +03:00
uint32 refreshInterval = 4;
2023-02-28 06:08:38 +03:00
uint32 resin = 15;
uint32 monster_id = 308;
2023-02-28 23:24:57 +03:00
uint32 nextBossChestRefreshTime = 1;
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