mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-21 19:34:42 +01:00
Unlock forging blueprints.
This commit is contained in:
14
proto/ForgeDataNotify.proto
Normal file
14
proto/ForgeDataNotify.proto
Normal file
@@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "ForgeQueueData.proto";
|
||||
|
||||
// CmdId: 648
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message ForgeDataNotify {
|
||||
repeated uint32 forge_id_list = 13;
|
||||
uint32 max_queue_num = 15;
|
||||
map<uint32, ForgeQueueData> forge_queue_map = 1;
|
||||
}
|
||||
11
proto/ForgeFormulaDataNotify.proto
Normal file
11
proto/ForgeFormulaDataNotify.proto
Normal file
@@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
// CmdId: 673
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message ForgeFormulaDataNotify {
|
||||
uint32 forge_id = 11;
|
||||
bool is_locked = 8;
|
||||
}
|
||||
13
proto/ForgeQueueData.proto
Normal file
13
proto/ForgeQueueData.proto
Normal file
@@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message ForgeQueueData {
|
||||
uint32 queue_id = 1;
|
||||
uint32 forge_id = 2;
|
||||
uint32 finish_count = 3;
|
||||
uint32 unfinish_count = 4;
|
||||
uint32 next_finish_timestamp = 5;
|
||||
uint32 total_finish_timestamp = 6;
|
||||
uint32 avatar_id = 7;
|
||||
}
|
||||
Reference in New Issue
Block a user