GC-Proto/proto/Shop.proto

20 lines
508 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 "ShopMcoinProduct.proto";
2022-11-06 15:30:21 +03:00
import "ShopConcertProduct.proto";
2023-01-28 17:00:48 +03:00
import "ShopCardProduct.proto";
2022-11-06 15:30:21 +03:00
import "ShopGoods.proto";
message Shop {
2023-01-28 17:00:48 +03:00
repeated ShopMcoinProduct mcoinProductList = 6;
uint32 cityId = 10;
repeated ShopConcertProduct concertProductList = 13;
uint32 nextRefreshTime = 14;
repeated ShopCardProduct cardProductList = 9;
uint32 cityReputationLevel = 4;
uint32 shopType = 5;
repeated ShopGoods goodsList = 15;
2022-11-06 15:30:21 +03:00
}