mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-08-01 10:00:12 +03:00
update proto part 9
This commit is contained in:
@@ -2,24 +2,25 @@ syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
|
||||
import "ItemParam.proto";
|
||||
|
||||
// Name: FINEJDCEECI
|
||||
message ShopCardProduct {
|
||||
message ResinCard {
|
||||
repeated ItemParam baseItemList = 1;
|
||||
repeated ItemParam perDayItemList = 2;
|
||||
}
|
||||
// Name: KPKPFMLBAOL
|
||||
message ResinCard {
|
||||
repeated ItemParam base_item_list = 1; // GFLEMFDCFIM
|
||||
repeated ItemParam per_day_item_list = 2; // HBANPLNDOJA
|
||||
}
|
||||
|
||||
string productId = 1;
|
||||
string priceTier = 2;
|
||||
uint32 mcoinBase = 3;
|
||||
uint32 hcoinPerDay = 4;
|
||||
uint32 days = 5;
|
||||
uint32 remainRewardDays = 6;
|
||||
uint32 cardProductType = 7;
|
||||
oneof extra_card_data {
|
||||
ResinCard resin_card = 101;
|
||||
}
|
||||
string product_id = 1;
|
||||
string price_tier = 2;
|
||||
uint32 mcoin_base = 3;
|
||||
uint32 hcoin_per_day = 4;
|
||||
uint32 days = 5;
|
||||
uint32 remain_reward_days = 6;
|
||||
uint32 card_product_type = 7;
|
||||
oneof extra_card_data {
|
||||
ResinCard resin_card = 101;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user