2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
import "HomeFurnitureSuiteData.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "HomeBlockFieldData.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "WeekendDjinnInfo.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "HomeFurnitureData.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "HomeBlockDotPattern.proto";
|
2022-11-06 15:51:40 +03:00
|
|
|
import "HomeFurnitureGroupData.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "HomeNpcData.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "HomeFurnitureCustomSuiteData.proto";
|
|
|
|
import "HomeAnimalData.proto";
|
2023-01-28 18:50:00 +03:00
|
|
|
|
2022-11-06 15:30:21 +03:00
|
|
|
message HomeBlockArrangementInfo {
|
2023-01-28 17:00:48 +03:00
|
|
|
repeated HomeFurnitureSuiteData furnitureSuiteList = 12;
|
|
|
|
repeated HomeBlockFieldData fieldList = 13;
|
|
|
|
repeated WeekendDjinnInfo weekendDjinnInfoList = 8;
|
|
|
|
repeated HomeFurnitureData persistentFurnitureList = 6;
|
|
|
|
repeated HomeBlockDotPattern dotPatternList = 7;
|
|
|
|
uint32 comfortValue = 9;
|
|
|
|
repeated HomeFurnitureGroupData furnitureGroupList = 3;
|
|
|
|
repeated HomeFurnitureData deployFurniureList = 15;
|
|
|
|
repeated HomeNpcData deployNpcList = 5;
|
|
|
|
repeated HomeFurnitureCustomSuiteData furnitureCustomSuiteList = 4;
|
|
|
|
bool isUnlocked = 1;
|
|
|
|
uint32 blockId = 2;
|
|
|
|
repeated HomeAnimalData deployAnimalList = 14;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|