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";
|
2024-05-22 14:51:09 +03:00
|
|
|
|
2023-05-23 09:48:59 +03:00
|
|
|
import "StoreType.proto";
|
2024-05-22 14:51:09 +03:00
|
|
|
|
2024-06-23 20:46:20 +03:00
|
|
|
// 4.7.0
|
2022-11-06 15:30:21 +03:00
|
|
|
message StoreWeightLimitNotify {
|
2024-06-23 20:46:20 +03:00
|
|
|
uint32 weight_limit = 12;
|
|
|
|
uint32 furniture_count_limit = 10;
|
|
|
|
uint32 weapon_count_limit = 7;
|
|
|
|
uint32 reliquary_count_limit = 1;
|
|
|
|
uint32 material_count_limit = 4;
|
|
|
|
StoreType store_type = 15;
|
2024-05-22 14:51:09 +03:00
|
|
|
}
|