mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 07:55:01 +01:00
32 lines
722 B
Protocol Buffer
32 lines
722 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "nksrv.Net";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "google/protobuf/Duration.proto";
|
|
import "Protos/allmsgs.proto";
|
|
|
|
// Get Tactic Academy data
|
|
message GetTacticAcademyDataRequest {}
|
|
message GetTacticAcademyDataResponse {
|
|
repeated int32 CompletedLessons = 2;
|
|
}
|
|
|
|
// Clear Tactic Academy lesson
|
|
message TacticAcademyClearLessonRequest {
|
|
int32 LessonId = 2;
|
|
}
|
|
message TacticAcademyClearLessonResponse {
|
|
int32 LessonId = 2;
|
|
repeated NetUserCurrencyData RemainingCurrency = 4;
|
|
}
|
|
|
|
// Battle reward / wipeout
|
|
message DoWipeOutRequest {
|
|
|
|
}
|
|
message DoWipeOutResponse {
|
|
int32 WipeoutCount = 2;
|
|
NetRewardData Reward = 3;
|
|
repeated NetUserCurrencyData Currency = 4;
|
|
} |