mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-20 19:04:40 +01:00
implement BattlePass (Except missions) (#1316)
* BattlePass * BattlePass
This commit is contained in:
24
proto/BattlePassSchedule.proto
Normal file
24
proto/BattlePassSchedule.proto
Normal file
@@ -0,0 +1,24 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "BattlePassCycle.proto";
|
||||
import "BattlePassProduct.proto";
|
||||
import "BattlePassRewardTag.proto";
|
||||
import "BattlePassUnlockStatus.proto";
|
||||
|
||||
message BattlePassSchedule {
|
||||
uint32 schedule_id = 1;
|
||||
uint32 level = 2;
|
||||
uint32 point = 3;
|
||||
BattlePassUnlockStatus unlock_status = 4;
|
||||
repeated BattlePassRewardTag reward_taken_list = 5;
|
||||
uint32 begin_time = 6;
|
||||
uint32 end_time = 7;
|
||||
BattlePassCycle cur_cycle = 8;
|
||||
bool is_extra_paid_reward_taken = 9;
|
||||
BattlePassProduct product_info = 10;
|
||||
bool is_viewed = 11;
|
||||
uint32 cur_cycle_points = 12;
|
||||
uint32 JPFMGBEBBBJ = 13;
|
||||
}
|
||||
Reference in New Issue
Block a user