18 lines
380 B
Protocol Buffer
18 lines
380 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "StoreType.proto";
|
|
|
|
// Name: CJBHIOLLMHI
|
|
// CmdId: 675
|
|
message StoreWeightLimitNotify {
|
|
StoreType store_type = 15;
|
|
uint32 weight_limit = 6;
|
|
uint32 reliquary_count_limit = 2;
|
|
uint32 material_count_limit = 10;
|
|
uint32 furniture_count_limit = 8;
|
|
uint32 weapon_count_limit = 13;
|
|
}
|
|
|