GC-Proto/proto/StoreWeightLimitNotify.proto

18 lines
380 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
2023-01-28 17:00:48 +03:00
import "StoreType.proto";
2023-02-28 06:08:38 +03:00
// Name: CJBHIOLLMHI
// CmdId: 675
2022-11-06 15:30:21 +03:00
message StoreWeightLimitNotify {
2023-02-28 06:08:38 +03:00
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;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00