mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-23 14:32:27 +08:00
重新加回proto
This commit is contained in:
37
protocol/proto/AISnapshotEntityData.proto
Normal file
37
protocol/proto/AISnapshotEntityData.proto
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AISnapshotEntitySkillCycle.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AISnapshotEntityData {
|
||||||
|
float tick_time = 5;
|
||||||
|
uint32 tactic = 2;
|
||||||
|
repeated AISnapshotEntitySkillCycle finished_skill_cycles = 9;
|
||||||
|
float moved_distance = 4;
|
||||||
|
uint32 ai_target_id = 13;
|
||||||
|
uint32 threat_target_id = 3;
|
||||||
|
uint32 threat_list_size = 1;
|
||||||
|
uint32 entity_id = 15;
|
||||||
|
map<uint32, uint32> hitting_avatars = 7;
|
||||||
|
float distance_to_player = 11;
|
||||||
|
uint32 attack_target_id = 10;
|
||||||
|
float real_time = 14;
|
||||||
|
}
|
||||||
28
protocol/proto/AISnapshotEntitySkillCycle.proto
Normal file
28
protocol/proto/AISnapshotEntitySkillCycle.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AISnapshotEntitySkillCycle {
|
||||||
|
bool failed = 12;
|
||||||
|
bool trydoskill = 8;
|
||||||
|
bool success = 9;
|
||||||
|
bool selected = 1;
|
||||||
|
uint32 skill_id = 2;
|
||||||
|
}
|
||||||
26
protocol/proto/AISnapshotInfo.proto
Normal file
26
protocol/proto/AISnapshotInfo.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AISnapshotEntityData.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AISnapshotInfo {
|
||||||
|
repeated AISnapshotEntityData ai_snapshots = 13;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityActionBlink.proto
Normal file
27
protocol/proto/AbilityActionBlink.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionBlink {
|
||||||
|
Vector rot = 11;
|
||||||
|
Vector pos = 10;
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityActionCreateGadget.proto
Normal file
28
protocol/proto/AbilityActionCreateGadget.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionCreateGadget {
|
||||||
|
uint32 room_id = 3;
|
||||||
|
Vector rot = 8;
|
||||||
|
Vector pos = 11;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityActionCreateTile.proto
Normal file
27
protocol/proto/AbilityActionCreateTile.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionCreateTile {
|
||||||
|
Vector rot = 3;
|
||||||
|
Vector pos = 8;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityActionDeductStamina.proto
Normal file
24
protocol/proto/AbilityActionDeductStamina.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionDeductStamina {
|
||||||
|
bool is_swim = 1;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityActionDestroyTile.proto
Normal file
27
protocol/proto/AbilityActionDestroyTile.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionDestroyTile {
|
||||||
|
Vector rot = 3;
|
||||||
|
Vector pos = 1;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityActionFireAfterImage.proto
Normal file
26
protocol/proto/AbilityActionFireAfterImage.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionFireAfterImage {
|
||||||
|
Vector dir = 12;
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityActionGenerateElemBall.proto
Normal file
28
protocol/proto/AbilityActionGenerateElemBall.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionGenerateElemBall {
|
||||||
|
uint32 room_id = 2;
|
||||||
|
Vector pos = 7;
|
||||||
|
Vector rot = 13;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityActionHitEffect.proto
Normal file
24
protocol/proto/AbilityActionHitEffect.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionHitEffect {
|
||||||
|
uint32 trigger_id = 3;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityActionServerMonsterLog.proto
Normal file
24
protocol/proto/AbilityActionServerMonsterLog.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionServerMonsterLog {
|
||||||
|
repeated int32 param_list = 2;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityActionSetCrashDamage.proto
Normal file
27
protocol/proto/AbilityActionSetCrashDamage.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionSetCrashDamage {
|
||||||
|
Vector hit_pos = 2;
|
||||||
|
float damage = 15;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityActionSetRandomOverrideMapValue.proto
Normal file
24
protocol/proto/AbilityActionSetRandomOverrideMapValue.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionSetRandomOverrideMapValue {
|
||||||
|
float random_value = 1;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityActionSummon.proto
Normal file
27
protocol/proto/AbilityActionSummon.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionSummon {
|
||||||
|
Vector pos = 10;
|
||||||
|
Vector rot = 1;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityActionTriggerAbility.proto
Normal file
24
protocol/proto/AbilityActionTriggerAbility.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityActionTriggerAbility {
|
||||||
|
uint32 other_id = 14;
|
||||||
|
}
|
||||||
30
protocol/proto/AbilityAppliedAbility.proto
Normal file
30
protocol/proto/AbilityAppliedAbility.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityScalarValueEntry.proto";
|
||||||
|
import "AbilityString.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityAppliedAbility {
|
||||||
|
AbilityString ability_name = 1;
|
||||||
|
AbilityString ability_override = 2;
|
||||||
|
repeated AbilityScalarValueEntry override_map = 3;
|
||||||
|
uint32 instanced_ability_id = 4;
|
||||||
|
}
|
||||||
40
protocol/proto/AbilityAppliedModifier.proto
Normal file
40
protocol/proto/AbilityAppliedModifier.proto
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityAttachedModifier.proto";
|
||||||
|
import "AbilityString.proto";
|
||||||
|
import "ModifierDurability.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityAppliedModifier {
|
||||||
|
int32 modifier_local_id = 1;
|
||||||
|
uint32 parent_ability_entity_id = 2;
|
||||||
|
AbilityString parent_ability_name = 3;
|
||||||
|
AbilityString parent_ability_override = 4;
|
||||||
|
uint32 instanced_ability_id = 5;
|
||||||
|
uint32 instanced_modifier_id = 6;
|
||||||
|
float exist_duration = 7;
|
||||||
|
AbilityAttachedModifier attached_instanced_modifier = 8;
|
||||||
|
uint32 apply_entity_id = 9;
|
||||||
|
bool is_attached_parent_ability = 10;
|
||||||
|
ModifierDurability modifier_durability = 11;
|
||||||
|
uint32 sbuff_uid = 12;
|
||||||
|
bool is_serverbuff_modifier = 13;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityApplyLevelModifier.proto
Normal file
24
protocol/proto/AbilityApplyLevelModifier.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityApplyLevelModifier {
|
||||||
|
uint32 apply_entity_id = 6;
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityArgument.proto
Normal file
28
protocol/proto/AbilityArgument.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityArgument {
|
||||||
|
oneof arg {
|
||||||
|
uint32 int_arg = 5;
|
||||||
|
float float_arg = 15;
|
||||||
|
string str_arg = 11;
|
||||||
|
}
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityAttachedModifier.proto
Normal file
28
protocol/proto/AbilityAttachedModifier.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityAttachedModifier {
|
||||||
|
bool is_invalid = 1;
|
||||||
|
uint32 owner_entity_id = 2;
|
||||||
|
uint32 instanced_modifier_id = 3;
|
||||||
|
bool is_serverbuff_modifier = 4;
|
||||||
|
int32 attach_name_hash = 5;
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityBornType.proto
Normal file
28
protocol/proto/AbilityBornType.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityBornType {
|
||||||
|
Vector rot = 2;
|
||||||
|
Vector move_dir = 14;
|
||||||
|
Vector pos = 5;
|
||||||
|
}
|
||||||
30
protocol/proto/AbilityChangeNotify.proto
Normal file
30
protocol/proto/AbilityChangeNotify.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityControlBlock.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 1131
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message AbilityChangeNotify {
|
||||||
|
uint32 entity_id = 1;
|
||||||
|
AbilityControlBlock ability_control_block = 15;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityControlBlock.proto
Normal file
26
protocol/proto/AbilityControlBlock.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityEmbryo.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityControlBlock {
|
||||||
|
repeated AbilityEmbryo ability_embryo_list = 1;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityEmbryo.proto
Normal file
26
protocol/proto/AbilityEmbryo.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityEmbryo {
|
||||||
|
uint32 ability_id = 1;
|
||||||
|
fixed32 ability_name_hash = 2;
|
||||||
|
fixed32 ability_override_name_hash = 3;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityFloatValue.proto
Normal file
24
protocol/proto/AbilityFloatValue.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityFloatValue {
|
||||||
|
float value = 1;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityGadgetInfo.proto
Normal file
26
protocol/proto/AbilityGadgetInfo.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityGadgetInfo {
|
||||||
|
uint32 camp_id = 1;
|
||||||
|
uint32 camp_target_type = 2;
|
||||||
|
uint32 target_entity_id = 3;
|
||||||
|
}
|
||||||
29
protocol/proto/AbilityIdentifier.proto
Normal file
29
protocol/proto/AbilityIdentifier.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityIdentifier {
|
||||||
|
uint32 modifier_owner_id = 2;
|
||||||
|
uint32 instanced_modifier_id = 9;
|
||||||
|
uint32 instanced_ability_id = 10;
|
||||||
|
bool is_serverbuff_modifier = 6;
|
||||||
|
uint32 ability_caster_id = 15;
|
||||||
|
int32 local_id = 3;
|
||||||
|
}
|
||||||
31
protocol/proto/AbilityInvocationFailNotify.proto
Normal file
31
protocol/proto/AbilityInvocationFailNotify.proto
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityInvokeEntry.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 1107
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message AbilityInvocationFailNotify {
|
||||||
|
string reason = 7;
|
||||||
|
uint32 entity_id = 13;
|
||||||
|
AbilityInvokeEntry invoke = 3;
|
||||||
|
}
|
||||||
35
protocol/proto/AbilityInvocationFixedNotify.proto
Normal file
35
protocol/proto/AbilityInvocationFixedNotify.proto
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityInvokeEntry.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 1172
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message AbilityInvocationFixedNotify {
|
||||||
|
AbilityInvokeEntry invoke6th = 14;
|
||||||
|
AbilityInvokeEntry invoke5th = 8;
|
||||||
|
AbilityInvokeEntry invoke4th = 1;
|
||||||
|
AbilityInvokeEntry invoke2nd = 5;
|
||||||
|
AbilityInvokeEntry invoke1st = 10;
|
||||||
|
AbilityInvokeEntry invoke3rd = 12;
|
||||||
|
}
|
||||||
30
protocol/proto/AbilityInvocationsNotify.proto
Normal file
30
protocol/proto/AbilityInvocationsNotify.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityInvokeEntry.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 1198
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message AbilityInvocationsNotify {
|
||||||
|
repeated AbilityInvokeEntry invokes = 2;
|
||||||
|
}
|
||||||
84
protocol/proto/AbilityInvokeArgument.proto
Normal file
84
protocol/proto/AbilityInvokeArgument.proto
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
enum AbilityInvokeArgument {
|
||||||
|
ABILITY_INVOKE_ARGUMENT_NONE = 0;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_MODIFIER_CHANGE = 1;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_COMMAND_MODIFIER_CHANGE_REQUEST = 2;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_SPECIAL_FLOAT_ARGUMENT = 3;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_OVERRIDE_PARAM = 4;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_CLEAR_OVERRIDE_PARAM = 5;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_REINIT_OVERRIDEMAP = 6;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_GLOBAL_FLOAT_VALUE = 7;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_CLEAR_GLOBAL_FLOAT_VALUE = 8;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_ABILITY_ELEMENT_STRENGTH = 9;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_ADD_OR_GET_ABILITY_AND_TRIGGER = 10;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_SET_KILLED_STATE = 11;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_SET_ABILITY_TRIGGER = 12;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_ADD_NEW_ABILITY = 13;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_REMOVE_ABILITY = 14;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_SET_MODIFIER_APPLY_ENTITY = 15;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_MODIFIER_DURABILITY_CHANGE = 16;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_ELEMENT_REACTION_VISUAL = 17;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_SET_POSE_PARAMETER = 18;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_UPDATE_BASE_REACTION_DAMAGE = 19;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_TRIGGER_ELEMENT_REACTION = 20;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_LOSE_HP = 21;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_META_DURABILITY_IS_ZERO = 22;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_TRIGGER_ABILITY = 50;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_SET_CRASH_DAMAGE = 51;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_EFFECT = 52;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_SUMMON = 53;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_BLINK = 54;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_GADGET = 55;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_APPLY_LEVEL_MODIFIER = 56;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_GENERATE_ELEM_BALL = 57;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_SET_RANDOM_OVERRIDE_MAP_VALUE = 58;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_SERVER_MONSTER_LOG = 59;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_CREATE_TILE = 60;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_DESTROY_TILE = 61;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_FIRE_AFTER_IMAGE = 62;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_DEDUCT_STAMINA = 63;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_HIT_EFFECT = 64;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_ACTION_SET_BULLET_TRACK_TARGET = 65;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_STEER_BY_CAMERA = 100;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_MONSTER_DEFEND = 101;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_ZONE = 102;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_COST_STAMINA = 103;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_ELITE_SHIELD = 104;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_ELEMENT_SHIELD = 105;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_GLOBAL_SHIELD = 106;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_SHIELD_BAR = 107;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_WIND_SEED_SPAWNER = 108;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_ELEMENT_REACTION = 109;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_FIELD_ENTITY_COUNT_CHANGE = 110;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_SCENE_PROP_SYNC = 111;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_WIDGET_MP_SUPPORT = 112;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_DO_ACTION_BY_SELF_MODIFIER_ELEMENT_DURABILITY_RATIO = 113;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_FIREWORKS_LAUNCHER = 114;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_ATTACK_RESULT_CREATE_COUNT = 115;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_UGC_TIME_CONTROL = 116;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_AVATAR_COMBAT = 117;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_DEATH_ZONE_REGIONAL_PLAY_MIXIN = 118;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_UI_INTERACT = 119;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_SHOOT_FROM_CAMERA = 120;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_ERASE_BRICK_ACTIVITY = 121;
|
||||||
|
}
|
||||||
35
protocol/proto/AbilityInvokeEntry.proto
Normal file
35
protocol/proto/AbilityInvokeEntry.proto
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityInvokeArgument.proto";
|
||||||
|
import "AbilityInvokeEntryHead.proto";
|
||||||
|
import "ForwardType.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityInvokeEntry {
|
||||||
|
AbilityInvokeArgument argument_type = 1;
|
||||||
|
AbilityInvokeEntryHead head = 2;
|
||||||
|
uint32 forward_peer = 4;
|
||||||
|
uint32 event_id = 12;
|
||||||
|
ForwardType forward_type = 3;
|
||||||
|
bytes ability_data = 15;
|
||||||
|
double total_tick_time = 14;
|
||||||
|
uint32 entity_id = 9;
|
||||||
|
}
|
||||||
30
protocol/proto/AbilityInvokeEntryHead.proto
Normal file
30
protocol/proto/AbilityInvokeEntryHead.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityInvokeEntryHead {
|
||||||
|
int32 modifier_config_local_id = 7;
|
||||||
|
bool is_serverbuff_modifier = 2;
|
||||||
|
uint32 instanced_ability_id = 1;
|
||||||
|
uint32 instanced_modifier_id = 12;
|
||||||
|
int32 local_id = 10;
|
||||||
|
uint32 server_buff_uid = 14;
|
||||||
|
uint32 target_id = 3;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityMetaAddAbility.proto
Normal file
26
protocol/proto/AbilityMetaAddAbility.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityAppliedAbility.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaAddAbility {
|
||||||
|
AbilityAppliedAbility ability = 12;
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityMetaAddOrGetAbilityAndTrigger.proto
Normal file
28
protocol/proto/AbilityMetaAddOrGetAbilityAndTrigger.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityString.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaAddOrGetAbilityAndTrigger {
|
||||||
|
AbilityString ability_name = 13;
|
||||||
|
float trigger_argument = 3;
|
||||||
|
AbilityString ability_override = 8;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMetaDurabilityIsZero.proto
Normal file
24
protocol/proto/AbilityMetaDurabilityIsZero.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaDurabilityIsZero {
|
||||||
|
bool is_zero = 5;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityMetaElementReactionVisual.proto
Normal file
27
protocol/proto/AbilityMetaElementReactionVisual.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaElementReactionVisual {
|
||||||
|
int32 hit_index = 2;
|
||||||
|
uint32 element_source_type = 12;
|
||||||
|
uint32 element_reactor_type = 6;
|
||||||
|
uint32 element_reaction_type = 5;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMetaLoseHp.proto
Normal file
24
protocol/proto/AbilityMetaLoseHp.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaLoseHp {
|
||||||
|
uint32 lose_hp_config_idx = 10;
|
||||||
|
}
|
||||||
39
protocol/proto/AbilityMetaModifierChange.proto
Normal file
39
protocol/proto/AbilityMetaModifierChange.proto
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityAttachedModifier.proto";
|
||||||
|
import "AbilityString.proto";
|
||||||
|
import "ModifierAction.proto";
|
||||||
|
import "ModifierProperty.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaModifierChange {
|
||||||
|
AbilityAttachedModifier attached_instanced_modifier = 7;
|
||||||
|
uint32 server_buff_uid = 4;
|
||||||
|
bool is_attached_parent_ability = 10;
|
||||||
|
ModifierAction action = 13;
|
||||||
|
int32 modifier_local_id = 2;
|
||||||
|
AbilityString parent_ability_name = 1;
|
||||||
|
bool is_mute_remote = 6;
|
||||||
|
uint32 apply_entity_id = 5;
|
||||||
|
repeated ModifierProperty properties = 3;
|
||||||
|
AbilityString parent_ability_override = 11;
|
||||||
|
bool is_durability_zero = 9;
|
||||||
|
}
|
||||||
25
protocol/proto/AbilityMetaModifierDurabilityChange.proto
Normal file
25
protocol/proto/AbilityMetaModifierDurabilityChange.proto
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaModifierDurabilityChange {
|
||||||
|
float reduce_durability = 6;
|
||||||
|
float remain_durability = 15;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityMetaReInitOverrideMap.proto
Normal file
26
protocol/proto/AbilityMetaReInitOverrideMap.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityScalarValueEntry.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaReInitOverrideMap {
|
||||||
|
repeated AbilityScalarValueEntry override_map = 7;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMetaSetAbilityTrigger.proto
Normal file
24
protocol/proto/AbilityMetaSetAbilityTrigger.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetAbilityTrigger {
|
||||||
|
uint32 trigger_ability_entity_id = 11;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMetaSetKilledState.proto
Normal file
24
protocol/proto/AbilityMetaSetKilledState.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetKilledState {
|
||||||
|
bool killed = 2;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMetaSetModifierApplyEntityId.proto
Normal file
24
protocol/proto/AbilityMetaSetModifierApplyEntityId.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetModifierApplyEntityId {
|
||||||
|
uint32 apply_entity_id = 10;
|
||||||
|
}
|
||||||
26
protocol/proto/AbilityMetaSetPoseParameter.proto
Normal file
26
protocol/proto/AbilityMetaSetPoseParameter.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AnimatorParameterValueInfoPair.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetPoseParameter {
|
||||||
|
AnimatorParameterValueInfoPair value = 6;
|
||||||
|
}
|
||||||
25
protocol/proto/AbilityMetaSpecialFloatArgument.proto
Normal file
25
protocol/proto/AbilityMetaSpecialFloatArgument.proto
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaSpecialFloatArgument {
|
||||||
|
float argument_value = 14;
|
||||||
|
bool is_on = 10;
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityMetaTriggerElementReaction.proto
Normal file
28
protocol/proto/AbilityMetaTriggerElementReaction.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaTriggerElementReaction {
|
||||||
|
int32 hit_index = 9;
|
||||||
|
uint32 element_source_type = 7;
|
||||||
|
uint32 element_reactor_type = 12;
|
||||||
|
uint32 trigger_entity_id = 2;
|
||||||
|
uint32 element_reaction_type = 1;
|
||||||
|
}
|
||||||
29
protocol/proto/AbilityMetaUpdateBaseReactionDamage.proto
Normal file
29
protocol/proto/AbilityMetaUpdateBaseReactionDamage.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityString.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMetaUpdateBaseReactionDamage {
|
||||||
|
uint32 source_caster_id = 15;
|
||||||
|
AbilityString ability_name = 1;
|
||||||
|
AbilityString global_value_key = 4;
|
||||||
|
uint32 reaction_type = 8;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMixinAvatarCombat.proto
Normal file
24
protocol/proto/AbilityMixinAvatarCombat.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinAvatarCombat {
|
||||||
|
bool is_enter_combat = 9;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityMixinAvatarSteerByCamera.proto
Normal file
27
protocol/proto/AbilityMixinAvatarSteerByCamera.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinAvatarSteerByCamera {
|
||||||
|
Vector target_dir = 7;
|
||||||
|
Vector target_pos = 6;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMixinCostStamina.proto
Normal file
24
protocol/proto/AbilityMixinCostStamina.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinCostStamina {
|
||||||
|
bool is_swim = 3;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMixinDoActionByElementReaction.proto
Normal file
24
protocol/proto/AbilityMixinDoActionByElementReaction.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinDoActionByElementReaction {
|
||||||
|
uint32 target_entity_id = 1;
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinDoActionBySelfModifierElementDurabilityRatio {
|
||||||
|
float last_durability_ratio = 9;
|
||||||
|
}
|
||||||
29
protocol/proto/AbilityMixinElementShield.proto
Normal file
29
protocol/proto/AbilityMixinElementShield.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinElementShield {
|
||||||
|
float sub_shield = 10;
|
||||||
|
float shield = 8;
|
||||||
|
uint32 absorb_type = 1;
|
||||||
|
uint32 player_num = 4;
|
||||||
|
bool is_shield_broken = 9;
|
||||||
|
float max_shield = 12;
|
||||||
|
}
|
||||||
24
protocol/proto/AbilityMixinEliteShield.proto
Normal file
24
protocol/proto/AbilityMixinEliteShield.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinEliteShield {
|
||||||
|
float sub_shield = 2;
|
||||||
|
}
|
||||||
22
protocol/proto/AbilityMixinEmpty.proto
Normal file
22
protocol/proto/AbilityMixinEmpty.proto
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinEmpty {}
|
||||||
24
protocol/proto/AbilityMixinFieldEntityCountChange.proto
Normal file
24
protocol/proto/AbilityMixinFieldEntityCountChange.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinFieldEntityCountChange {
|
||||||
|
uint32 field_entity_count = 14;
|
||||||
|
}
|
||||||
29
protocol/proto/AbilityMixinFireworksLauncher.proto
Normal file
29
protocol/proto/AbilityMixinFireworksLauncher.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinFireworksLauncher {
|
||||||
|
uint32 invoke_type = 2;
|
||||||
|
uint32 start_count_down_time = 3;
|
||||||
|
uint32 fired_bullet_count = 1;
|
||||||
|
uint32 phase = 6;
|
||||||
|
repeated uint32 fireworks_config = 4;
|
||||||
|
uint32 turn_index = 7;
|
||||||
|
}
|
||||||
29
protocol/proto/AbilityMixinGlobalShield.proto
Normal file
29
protocol/proto/AbilityMixinGlobalShield.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinGlobalShield {
|
||||||
|
bool is_create_effect = 4;
|
||||||
|
float sub_shield = 7;
|
||||||
|
float height_offset = 5;
|
||||||
|
uint32 avatar_id = 11;
|
||||||
|
float max_shield = 10;
|
||||||
|
string shield_effect_name = 2;
|
||||||
|
}
|
||||||
33
protocol/proto/AbilityMixinRecoverInfo.proto
Normal file
33
protocol/proto/AbilityMixinRecoverInfo.proto
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "MassivePropSyncInfo.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinRecoverInfo {
|
||||||
|
uint32 local_id = 3;
|
||||||
|
repeated uint32 data_list = 4;
|
||||||
|
bool is_serverbuff_modifier = 5;
|
||||||
|
repeated MassivePropSyncInfo massive_prop_list = 6;
|
||||||
|
oneof source {
|
||||||
|
uint32 instanced_ability_id = 1;
|
||||||
|
uint32 instanced_modifier_id = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
28
protocol/proto/AbilityMixinScenePropSync.proto
Normal file
28
protocol/proto/AbilityMixinScenePropSync.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "MassivePropSyncInfo.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinScenePropSync {
|
||||||
|
repeated int64 delete_id_list = 5;
|
||||||
|
bool is_clear_all = 12;
|
||||||
|
repeated MassivePropSyncInfo massive_prop_list = 15;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityMixinShieldBar.proto
Normal file
27
protocol/proto/AbilityMixinShieldBar.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinShieldBar {
|
||||||
|
uint32 player_num = 14;
|
||||||
|
float max_shield = 15;
|
||||||
|
float shield = 12;
|
||||||
|
uint32 element_type = 13;
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityMixinShootFromCamera.proto
Normal file
27
protocol/proto/AbilityMixinShootFromCamera.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinShootFromCamera {
|
||||||
|
Vector init_pos = 13;
|
||||||
|
Vector forward = 2;
|
||||||
|
}
|
||||||
25
protocol/proto/AbilityMixinUGCTimeControl.proto
Normal file
25
protocol/proto/AbilityMixinUGCTimeControl.proto
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinUGCTimeControl {
|
||||||
|
uint64 start_move_time_ms = 13;
|
||||||
|
uint32 forward = 3;
|
||||||
|
}
|
||||||
22
protocol/proto/AbilityMixinUIInteract.proto
Normal file
22
protocol/proto/AbilityMixinUIInteract.proto
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinUIInteract {}
|
||||||
24
protocol/proto/AbilityMixinWidgetMpSupport.proto
Normal file
24
protocol/proto/AbilityMixinWidgetMpSupport.proto
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinWidgetMpSupport {
|
||||||
|
uint32 target_entity_id = 9;
|
||||||
|
}
|
||||||
40
protocol/proto/AbilityMixinWindSeedSpawner.proto
Normal file
40
protocol/proto/AbilityMixinWindSeedSpawner.proto
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Vector.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinWindSeedSpawner {
|
||||||
|
oneof cmd {
|
||||||
|
AddSignal add_signal = 2;
|
||||||
|
RefreshSeed refresh_seed = 15;
|
||||||
|
CatchSeed catch_seed = 11;
|
||||||
|
}
|
||||||
|
|
||||||
|
message AddSignal {}
|
||||||
|
|
||||||
|
message RefreshSeed {
|
||||||
|
repeated Vector pos_list = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
message CatchSeed {
|
||||||
|
uint32 entity_id = 8;
|
||||||
|
}
|
||||||
|
}
|
||||||
25
protocol/proto/AbilityMixinWindZone.proto
Normal file
25
protocol/proto/AbilityMixinWindZone.proto
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityMixinWindZone {
|
||||||
|
repeated uint32 entity_ids = 13;
|
||||||
|
repeated uint32 zone_id_list = 10;
|
||||||
|
}
|
||||||
30
protocol/proto/AbilityScalarType.proto
Normal file
30
protocol/proto/AbilityScalarType.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
enum AbilityScalarType {
|
||||||
|
ABILITY_SCALAR_TYPE_UNKNOWN = 0;
|
||||||
|
ABILITY_SCALAR_TYPE_FLOAT = 1;
|
||||||
|
ABILITY_SCALAR_TYPE_INT = 2;
|
||||||
|
ABILITY_SCALAR_TYPE_BOOL = 3;
|
||||||
|
ABILITY_SCALAR_TYPE_TRIGGER = 4;
|
||||||
|
ABILITY_SCALAR_TYPE_STRING = 5;
|
||||||
|
ABILITY_SCALAR_TYPE_UINT = 6;
|
||||||
|
}
|
||||||
34
protocol/proto/AbilityScalarValueEntry.proto
Normal file
34
protocol/proto/AbilityScalarValueEntry.proto
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityScalarType.proto";
|
||||||
|
import "AbilityString.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityScalarValueEntry {
|
||||||
|
AbilityString key = 1;
|
||||||
|
AbilityScalarType value_type = 2;
|
||||||
|
oneof value {
|
||||||
|
float float_value = 3;
|
||||||
|
string string_value = 4;
|
||||||
|
int32 int_value = 5;
|
||||||
|
uint32 uint_value = 6;
|
||||||
|
}
|
||||||
|
}
|
||||||
27
protocol/proto/AbilityString.proto
Normal file
27
protocol/proto/AbilityString.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilityString {
|
||||||
|
oneof type {
|
||||||
|
string str = 1;
|
||||||
|
uint32 hash = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
34
protocol/proto/AbilitySyncStateInfo.proto
Normal file
34
protocol/proto/AbilitySyncStateInfo.proto
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "AbilityAppliedAbility.proto";
|
||||||
|
import "AbilityAppliedModifier.proto";
|
||||||
|
import "AbilityMixinRecoverInfo.proto";
|
||||||
|
import "AbilityScalarValueEntry.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message AbilitySyncStateInfo {
|
||||||
|
bool is_inited = 1;
|
||||||
|
repeated AbilityScalarValueEntry dynamic_value_map = 2;
|
||||||
|
repeated AbilityAppliedAbility applied_abilities = 3;
|
||||||
|
repeated AbilityAppliedModifier applied_modifiers = 4;
|
||||||
|
repeated AbilityMixinRecoverInfo mixin_recover_infos = 5;
|
||||||
|
repeated AbilityScalarValueEntry sgv_dynamic_value_map = 6;
|
||||||
|
}
|
||||||
29
protocol/proto/AcceptCityReputationRequestReq.proto
Normal file
29
protocol/proto/AcceptCityReputationRequestReq.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2890
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message AcceptCityReputationRequestReq {
|
||||||
|
uint32 city_id = 14;
|
||||||
|
uint32 request_id = 5;
|
||||||
|
}
|
||||||
29
protocol/proto/AcceptCityReputationRequestRsp.proto
Normal file
29
protocol/proto/AcceptCityReputationRequestRsp.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2873
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message AcceptCityReputationRequestRsp {
|
||||||
|
uint32 request_id = 5;
|
||||||
|
uint32 city_id = 13;
|
||||||
|
int32 retcode = 2;
|
||||||
|
}
|
||||||
35
protocol/proto/Achievement.proto
Normal file
35
protocol/proto/Achievement.proto
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message Achievement {
|
||||||
|
uint32 finish_timestamp = 11;
|
||||||
|
Status status = 13;
|
||||||
|
uint32 cur_progress = 12;
|
||||||
|
uint32 id = 14;
|
||||||
|
uint32 total_progress = 8;
|
||||||
|
|
||||||
|
enum Status {
|
||||||
|
STATUS_INVALID = 0;
|
||||||
|
STATUS_UNFINISHED = 1;
|
||||||
|
STATUS_FINISHED = 2;
|
||||||
|
STATUS_REWARD_TAKEN = 3;
|
||||||
|
}
|
||||||
|
}
|
||||||
30
protocol/proto/AchievementAllDataNotify.proto
Normal file
30
protocol/proto/AchievementAllDataNotify.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Achievement.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2676
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message AchievementAllDataNotify {
|
||||||
|
repeated Achievement achievement_list = 4;
|
||||||
|
repeated uint32 reward_taken_goal_id_list = 2;
|
||||||
|
}
|
||||||
29
protocol/proto/AchievementUpdateNotify.proto
Normal file
29
protocol/proto/AchievementUpdateNotify.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Achievement.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2668
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message AchievementUpdateNotify {
|
||||||
|
repeated Achievement achievement_list = 14;
|
||||||
|
}
|
||||||
28
protocol/proto/ActivityAcceptAllGiveGiftReq.proto
Normal file
28
protocol/proto/ActivityAcceptAllGiveGiftReq.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8113
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityAcceptAllGiveGiftReq {
|
||||||
|
uint32 schedule_id = 3;
|
||||||
|
}
|
||||||
31
protocol/proto/ActivityAcceptAllGiveGiftRsp.proto
Normal file
31
protocol/proto/ActivityAcceptAllGiveGiftRsp.proto
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "ActivityAcceptGiftResultInfo.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8132
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityAcceptAllGiveGiftRsp {
|
||||||
|
repeated ActivityAcceptGiftResultInfo accept_gift_result_info_list = 5;
|
||||||
|
uint32 schedule_id = 10;
|
||||||
|
int32 retcode = 9;
|
||||||
|
}
|
||||||
26
protocol/proto/ActivityAcceptGiftResultInfo.proto
Normal file
26
protocol/proto/ActivityAcceptGiftResultInfo.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message ActivityAcceptGiftResultInfo {
|
||||||
|
map<uint32, uint32> unaccept_gift_num_map = 3;
|
||||||
|
uint32 uid = 6;
|
||||||
|
map<uint32, uint32> accept_gift_num_map = 13;
|
||||||
|
}
|
||||||
29
protocol/proto/ActivityAcceptGiveGiftReq.proto
Normal file
29
protocol/proto/ActivityAcceptGiveGiftReq.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8095
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityAcceptGiveGiftReq {
|
||||||
|
uint32 schedule_id = 3;
|
||||||
|
uint32 uid = 12;
|
||||||
|
}
|
||||||
31
protocol/proto/ActivityAcceptGiveGiftRsp.proto
Normal file
31
protocol/proto/ActivityAcceptGiveGiftRsp.proto
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "ActivityAcceptGiftResultInfo.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8502
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityAcceptGiveGiftRsp {
|
||||||
|
ActivityAcceptGiftResultInfo accept_gift_result_info = 4;
|
||||||
|
int32 retcode = 11;
|
||||||
|
uint32 schedule_id = 10;
|
||||||
|
}
|
||||||
29
protocol/proto/ActivityBannerClearReq.proto
Normal file
29
protocol/proto/ActivityBannerClearReq.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2009
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityBannerClearReq {
|
||||||
|
uint32 schedule_id = 15;
|
||||||
|
uint32 activity_id = 12;
|
||||||
|
}
|
||||||
29
protocol/proto/ActivityBannerClearRsp.proto
Normal file
29
protocol/proto/ActivityBannerClearRsp.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2163
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityBannerClearRsp {
|
||||||
|
uint32 activity_id = 4;
|
||||||
|
int32 retcode = 6;
|
||||||
|
uint32 schedule_id = 11;
|
||||||
|
}
|
||||||
28
protocol/proto/ActivityBannerNotify.proto
Normal file
28
protocol/proto/ActivityBannerNotify.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2155
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityBannerNotify {
|
||||||
|
uint32 schedule_id = 1;
|
||||||
|
uint32 activity_id = 3;
|
||||||
|
}
|
||||||
29
protocol/proto/ActivityCoinInfoNotify.proto
Normal file
29
protocol/proto/ActivityCoinInfoNotify.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2008
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityCoinInfoNotify {
|
||||||
|
uint32 schedule_id = 8;
|
||||||
|
uint32 activity_id = 10;
|
||||||
|
map<uint32, uint32> activity_coin_map = 2;
|
||||||
|
}
|
||||||
34
protocol/proto/ActivityCondStateChangeNotify.proto
Normal file
34
protocol/proto/ActivityCondStateChangeNotify.proto
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Uint32Pair.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 2140
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityCondStateChangeNotify {
|
||||||
|
repeated uint32 activated_sale_id_list = 9;
|
||||||
|
uint32 activity_id = 4;
|
||||||
|
uint32 schedule_id = 5;
|
||||||
|
repeated uint32 expire_cond_list = 11;
|
||||||
|
repeated Uint32Pair disable_transfer_point_interaction_list = 12;
|
||||||
|
repeated uint32 meet_cond_list = 1;
|
||||||
|
}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "Uint32Pair.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8982
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityDisableTransferPointInteractionNotify {
|
||||||
|
bool is_disable = 10;
|
||||||
|
Uint32Pair scene_point_pair = 5;
|
||||||
|
}
|
||||||
26
protocol/proto/ActivityDungeonAvatar.proto
Normal file
26
protocol/proto/ActivityDungeonAvatar.proto
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message ActivityDungeonAvatar {
|
||||||
|
uint32 avatar_id = 1;
|
||||||
|
bool is_trial = 2;
|
||||||
|
uint32 costume_id = 3;
|
||||||
|
}
|
||||||
30
protocol/proto/ActivityFriendGiftWishData.proto
Normal file
30
protocol/proto/ActivityFriendGiftWishData.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "ProfilePicture.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
message ActivityFriendGiftWishData {
|
||||||
|
string nickname = 7;
|
||||||
|
string remark_name = 3;
|
||||||
|
ProfilePicture profile_picture = 11;
|
||||||
|
map<uint32, uint32> gift_num_map = 9;
|
||||||
|
uint32 uid = 8;
|
||||||
|
}
|
||||||
28
protocol/proto/ActivityGetCanGiveFriendGiftReq.proto
Normal file
28
protocol/proto/ActivityGetCanGiveFriendGiftReq.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8559
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityGetCanGiveFriendGiftReq {
|
||||||
|
uint32 schedule_id = 8;
|
||||||
|
}
|
||||||
29
protocol/proto/ActivityGetCanGiveFriendGiftRsp.proto
Normal file
29
protocol/proto/ActivityGetCanGiveFriendGiftRsp.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8848
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityGetCanGiveFriendGiftRsp {
|
||||||
|
uint32 schedule_id = 7;
|
||||||
|
int32 retcode = 3;
|
||||||
|
map<uint32, uint32> gift_num_map = 14;
|
||||||
|
}
|
||||||
28
protocol/proto/ActivityGetFriendGiftWishListReq.proto
Normal file
28
protocol/proto/ActivityGetFriendGiftWishListReq.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8806
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityGetFriendGiftWishListReq {
|
||||||
|
uint32 schedule_id = 6;
|
||||||
|
}
|
||||||
31
protocol/proto/ActivityGetFriendGiftWishListRsp.proto
Normal file
31
protocol/proto/ActivityGetFriendGiftWishListRsp.proto
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "ActivityFriendGiftWishData.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8253
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityGetFriendGiftWishListRsp {
|
||||||
|
int32 retcode = 6;
|
||||||
|
repeated ActivityFriendGiftWishData friend_gift_wish_list = 11;
|
||||||
|
uint32 schedule_id = 10;
|
||||||
|
}
|
||||||
28
protocol/proto/ActivityGetRecvGiftListReq.proto
Normal file
28
protocol/proto/ActivityGetRecvGiftListReq.proto
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8725
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityGetRecvGiftListReq {
|
||||||
|
uint32 schedule_id = 8;
|
||||||
|
}
|
||||||
31
protocol/proto/ActivityGetRecvGiftListRsp.proto
Normal file
31
protocol/proto/ActivityGetRecvGiftListRsp.proto
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "ActivityRecvGiftData.proto";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8120
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityGetRecvGiftListRsp {
|
||||||
|
int32 retcode = 15;
|
||||||
|
repeated ActivityRecvGiftData recv_gift_list = 11;
|
||||||
|
uint32 schedule_id = 6;
|
||||||
|
}
|
||||||
30
protocol/proto/ActivityGiveFriendGiftReq.proto
Normal file
30
protocol/proto/ActivityGiveFriendGiftReq.proto
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8233
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
// IsAllowClient: true
|
||||||
|
message ActivityGiveFriendGiftReq {
|
||||||
|
uint32 uid = 5;
|
||||||
|
uint32 schedule_id = 1;
|
||||||
|
map<uint32, uint32> gift_num_map = 4;
|
||||||
|
}
|
||||||
29
protocol/proto/ActivityGiveFriendGiftRsp.proto
Normal file
29
protocol/proto/ActivityGiveFriendGiftRsp.proto
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8696
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityGiveFriendGiftRsp {
|
||||||
|
repeated uint32 limit_gift_list = 3;
|
||||||
|
uint32 schedule_id = 4;
|
||||||
|
int32 retcode = 10;
|
||||||
|
}
|
||||||
27
protocol/proto/ActivityHaveRecvGiftNotify.proto
Normal file
27
protocol/proto/ActivityHaveRecvGiftNotify.proto
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
|
||||||
|
// Copyright (C) 2022 Sorapointa Team
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Affero General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU Affero General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package proto;
|
||||||
|
option go_package = "./proto;proto";
|
||||||
|
|
||||||
|
// CmdId: 8733
|
||||||
|
// EnetChannelId: 0
|
||||||
|
// EnetIsReliable: true
|
||||||
|
message ActivityHaveRecvGiftNotify {
|
||||||
|
uint32 schedule_id = 7;
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user