mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-19 22:49:29 +08:00
29 lines
617 B
Protocol Buffer
29 lines
617 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
|
|
message CAPITAL_LOG {
|
|
required uint32 member_id = 1;
|
|
required string name = 2;
|
|
required uint32 event_type = 3;
|
|
repeated uint32 event_target = 4;
|
|
required uint32 time = 5;
|
|
} // .guild.capital_log
|
|
|
|
message WEEKLY_TASK {
|
|
required uint32 id = 1;
|
|
required uint32 progress = 2;
|
|
required uint32 monday_0clock = 3;
|
|
} // .guild.weekly_task
|
|
|
|
message GUILD_TECHNOLOGY {
|
|
required uint32 id = 1;
|
|
required uint32 state = 2;
|
|
required uint32 progress = 3;
|
|
} // .guild.guild_technology
|
|
|
|
message FLEET_INFO {
|
|
required uint32 id = 1;
|
|
repeated uint32 ship_list = 2;
|
|
} // .guild.fleet_info
|
|
|