GC-Proto/proto/InvestigationMonster.proto

29 lines
652 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
import "WeeklyBossResinDiscountInfo.proto";
import "LockState.proto";
import "Rotation.proto";
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
message InvestigationMonster {
2023-01-28 17:00:48 +03:00
uint32 nextRefreshTime = 1;
uint32 bossChestNum = 10;
WeeklyBossResinDiscountInfo weeklyBossResinDiscountInfo = 8;
LockState lockState = 2;
uint32 refreshInterval = 6;
uint32 groupId = 80;
uint32 sceneId = 13;
uint32 cityId = 7;
uint32 maxBossChestNum = 11;
Rotation pos = 4;
bool isAreaLocked = 5;
uint32 level = 3;
uint32 id = 15;
uint32 monsterId = 1493;
uint32 nextBossChestRefreshTime = 12;
uint32 resin = 9;
bool isAlive = 14;
2022-11-06 15:30:21 +03:00
}