move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

30
proto/ShopGoods.proto Normal file → Executable file
View File

@@ -5,20 +5,24 @@ option java_package = "emu.grasscutter.net.proto";
import "ItemParam.proto";
message ShopGoods {
uint32 goodsId = 1;
ItemParam goodsItem = 2;
uint32 goods_id = 1;
ItemParam goods_item = 2;
uint32 scoin = 3;
uint32 hcoin = 4;
repeated ItemParam costItemList = 5;
uint32 boughtNum = 6;
uint32 buyLimit = 7;
uint32 beginTime = 8;
uint32 endTime = 9;
uint32 nextRefreshTime = 10;
uint32 minLevel = 11;
uint32 maxLevel = 12;
repeated uint32 preGoodsIdList = 13;
repeated ItemParam cost_item_list = 5;
uint32 bought_num = 6;
uint32 buy_limit = 7;
uint32 begin_time = 8;
uint32 end_time = 9;
uint32 next_refresh_time = 10;
uint32 min_level = 11;
uint32 max_level = 12;
repeated uint32 pre_goods_id_list = 13;
uint32 mcoin = 14;
uint32 disableType = 15;
uint32 secondarySheetId = 16;
uint32 disable_type = 15;
uint32 secondary_sheet_id = 16;
uint32 discount_id = 17;
uint32 discount_begin_time = 18;
uint32 discount_end_time = 19;
uint32 single_limit = 20;
}