2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
|
2022-11-06 15:51:40 +03:00
|
|
|
import "SkyCrystalDetectorData.proto";
|
2022-12-05 15:02:30 +03:00
|
|
|
import "WeatherWizardData.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "LunchBoxData.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "WidgetCoolDownData.proto";
|
|
|
|
import "WidgetSlotData.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "AnchorPointData.proto";
|
|
|
|
import "ClientCollectorData.proto";
|
|
|
|
import "DetectorData.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
message AllWidgetDataNotify {
|
2023-01-28 17:00:48 +03:00
|
|
|
enum CKJPMBIBMDC {
|
|
|
|
option allow_alias = true;
|
|
|
|
NONE = 0;
|
|
|
|
PEPPOHPHJOJ = 4286;
|
|
|
|
DCDNILFDFLB = 0;
|
|
|
|
NNBKOLMPOEA = 1;
|
|
|
|
}
|
2022-12-05 15:02:30 +03:00
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
SkyCrystalDetectorData skyCrystalDetectorData = 2;
|
|
|
|
repeated WidgetCoolDownData normalCoolDownDataList = 4;
|
|
|
|
repeated WidgetSlotData slotList = 14;
|
|
|
|
repeated uint32 backgroundActiveWidgetList = 5;
|
|
|
|
repeated AnchorPointData anchorPointList = 11;
|
|
|
|
WeatherWizardData weatherWizardData = 13;
|
|
|
|
uint32 nextAnchorPointUsableTime = 15;
|
|
|
|
repeated ClientCollectorData clientCollectorDataList = 7;
|
|
|
|
repeated WidgetCoolDownData coolDownGroupDataList = 6;
|
|
|
|
repeated DetectorData oneoffGatherPointDetectorDataList = 8;
|
|
|
|
LunchBoxData lunchBoxData = 1;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|