mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
18 lines
380 B
Protocol Buffer
18 lines
380 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "StoreType.proto";
|
|
|
|
// CmdId: 696
|
|
// Name: NMCECMHCPGB
|
|
message StoreWeightLimitNotify {
|
|
uint32 weight_limit = 4;
|
|
uint32 furniture_count_limit = 3;
|
|
uint32 weapon_count_limit = 12;
|
|
StoreType store_type = 15;
|
|
uint32 reliquary_count_limit = 7;
|
|
uint32 material_count_limit = 11;
|
|
}
|
|
|