GC-Proto/proto/Shop.proto

22 lines
560 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-03-01 16:54:54 +03:00
import "ShopMcoinProduct.proto";
import "ShopConcertProduct.proto";
import "ShopCardProduct.proto";
2022-11-06 15:30:21 +03:00
import "ShopGoods.proto";
2023-02-28 06:08:38 +03:00
// Name: HNDMELNBJGE
2022-11-06 15:30:21 +03:00
message Shop {
2023-02-28 06:08:38 +03:00
uint32 city_reputation_level = 11;
uint32 city_id = 4;
2023-03-01 16:54:54 +03:00
repeated ShopMcoinProduct mcoinProductList = 1;
2023-02-28 06:08:38 +03:00
uint32 next_refresh_time = 10;
repeated ShopGoods goods_list = 8;
2023-03-01 16:54:54 +03:00
repeated ShopCardProduct cardProductList = 7;
2023-02-28 06:08:38 +03:00
uint32 shop_type = 9;
2023-03-01 16:54:54 +03:00
repeated ShopConcertProduct concertProductList = 12;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00