mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-23 12:24:43 +01:00
Merge branch 'tower' into development
This commit is contained in:
@@ -4,8 +4,13 @@ option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "ParamList.proto";
|
||||
import "StrengthenPointData.proto";
|
||||
import "TowerLevelEndNotify.proto";
|
||||
|
||||
message DungeonSettleNotify {
|
||||
oneof Detail {
|
||||
TowerLevelEndNotify tower_level_end_notify = 101;
|
||||
// it has more!
|
||||
}
|
||||
uint32 dungeon_id = 1;
|
||||
bool is_success = 2;
|
||||
repeated uint32 fail_cond_list = 3;
|
||||
|
||||
18
proto/TowerFloorRecordChangeNotify.proto
Normal file
18
proto/TowerFloorRecordChangeNotify.proto
Normal file
@@ -0,0 +1,18 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "TowerFloorRecord.proto";
|
||||
|
||||
message TowerFloorRecordChangeNotify {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
NONE = 0;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
CMD_ID = 2418;
|
||||
}
|
||||
|
||||
repeated TowerFloorRecord tower_floor_record_list = 1;
|
||||
bool is_finished_entrance_floor = 2;
|
||||
}
|
||||
26
proto/TowerLevelEndNotify.proto
Normal file
26
proto/TowerLevelEndNotify.proto
Normal file
@@ -0,0 +1,26 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
import "ItemParam.proto";
|
||||
|
||||
message TowerLevelEndNotify {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
NONE = 0;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
CMD_ID = 2456;
|
||||
}
|
||||
|
||||
enum ContinueStateType {
|
||||
CONTINUE_STATE_CAN_NOT_CONTINUE = 0;
|
||||
CONTINUE_STATE_CAN_ENTER_NEXT_LEVEL = 1;
|
||||
CONTINUE_STATE_CAN_ENTER_NEXT_FLOOR = 2;
|
||||
}
|
||||
|
||||
bool is_success = 1;
|
||||
repeated uint32 finished_star_cond_list = 2;
|
||||
repeated ItemParam reward_item_list = 3;
|
||||
uint32 continue_state = 4;
|
||||
uint32 next_floor_id = 5;
|
||||
}
|
||||
Reference in New Issue
Block a user