Update proto 3.3
This commit is contained in:
parent
9b5321c106
commit
67789137ff
|
@ -0,0 +1,37 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AISnapshotEntityData {
|
||||||
|
repeated AISnapshotEntitySkillCycle finished_skill_cycles = 14;
|
||||||
|
uint32 attack_target_id = 2;
|
||||||
|
uint32 entity_id = 6;
|
||||||
|
float Unk3300_ALBMEMMJEJA = 13;
|
||||||
|
uint32 Unk3300_IADJCDJOKND = 5;
|
||||||
|
uint32 Unk3300_FNCIDLDKANO = 7;
|
||||||
|
float Unk3300_GPCFOCIFHCD = 15;
|
||||||
|
float Unk3300_FMBBEIHCCJO = 12;
|
||||||
|
float Unk3300_LIJIDJOLLEB = 11;
|
||||||
|
uint32 Unk3300_GNBOAJHMNJO = 9;
|
||||||
|
map<uint32, uint32> hitting_avatars = 4;
|
||||||
|
uint32 Unk3300_FIKEAEPLOHJ = 3;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AISnapshotEntitySkillCycle {
|
||||||
|
bool Unk3300_IIOIBLEOHEK = 14;
|
||||||
|
uint32 skill_id = 12;
|
||||||
|
bool Unk3300_ABKFNGIDFMI = 7;
|
||||||
|
bool Unk3300_IFKDIMDJBDH = 2;
|
||||||
|
bool Unk3300_EGIILMJFEBE = 1;
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AISnapshotInfo {
|
||||||
|
repeated AISnapshotEntityData ai_snapshots = 1;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionBlink {
|
||||||
|
Vector rot = 8;
|
||||||
|
Vector pos = 3;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionCreateGadget {
|
||||||
|
uint32 room_id = 5;
|
||||||
|
Vector rot = 13;
|
||||||
|
Vector pos = 8;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionCreateTile {
|
||||||
|
Vector pos = 15;
|
||||||
|
Vector rot = 13;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionDeductStamina {
|
||||||
|
bool is_swim = 7;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionDestroyTile {
|
||||||
|
Vector pos = 13;
|
||||||
|
Vector rot = 5;
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionFireAfterImage {
|
||||||
|
Vector dir = 10;
|
||||||
|
}
|
|
@ -22,7 +22,7 @@ import "Vector.proto";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityActionGenerateElemBall {
|
message AbilityActionGenerateElemBall {
|
||||||
uint32 room_id = 2;
|
uint32 room_id = 8;
|
||||||
Vector pos = 7;
|
Vector rot = 1;
|
||||||
Vector rot = 13;
|
Vector pos = 14;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionHitEffect {
|
||||||
|
uint32 trigger_id = 13;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionServerMonsterLog {
|
||||||
|
repeated int32 param_list = 3;
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionSetBulletTrackTarget {
|
||||||
|
uint32 Unk3300_GKACKBIEOHK = 10;
|
||||||
|
uint32 Unk3300_HGBOFFKEPDJ = 4;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionSetCrashDamage {
|
||||||
|
float damage = 2;
|
||||||
|
Vector hit_pos = 8;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionSetRandomOverrideMapValue {
|
||||||
|
float random_value = 1;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionSummon {
|
||||||
|
Vector pos = 3;
|
||||||
|
Vector rot = 10;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityActionTriggerAbility {
|
||||||
|
uint32 other_id = 4;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityApplyLevelModifier {
|
||||||
|
uint32 apply_entity_id = 1;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityArgument {
|
||||||
|
oneof arg {
|
||||||
|
uint32 int_arg = 14;
|
||||||
|
float float_arg = 7;
|
||||||
|
string str_arg = 9;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityBornType {
|
||||||
|
Vector move_dir = 3;
|
||||||
|
Vector rot = 15;
|
||||||
|
Vector pos = 12;
|
||||||
|
}
|
|
@ -21,10 +21,15 @@ import "AbilityControlBlock.proto";
|
||||||
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
// CmdId: 1131
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
message AbilityChangeNotify {
|
message AbilityChangeNotify {
|
||||||
uint32 entity_id = 1;
|
// enum CmdId {
|
||||||
AbilityControlBlock ability_control_block = 15;
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 1127;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
AbilityControlBlock ability_control_block = 6;
|
||||||
|
uint32 entity_id = 10;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityFloatValue {
|
||||||
|
float value = 1;
|
||||||
|
}
|
|
@ -20,10 +20,10 @@ syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityIdentifier {
|
message AbilityIdentifier {
|
||||||
uint32 modifier_owner_id = 2;
|
uint32 instanced_ability_id = 4;
|
||||||
uint32 instanced_modifier_id = 9;
|
uint32 Unk3300_IHCKJKLCICI = 10;
|
||||||
uint32 instanced_ability_id = 10;
|
bool is_serverbuff_modifier = 14;
|
||||||
bool is_serverbuff_modifier = 6;
|
int32 local_id = 7;
|
||||||
uint32 ability_caster_id = 15;
|
uint32 Unk3300_OOOLELPBDHJ = 1;
|
||||||
int32 local_id = 3;
|
uint32 instanced_modifier_id = 5;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityInvocationFailNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 1200;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 entity_id = 4;
|
||||||
|
string reason = 8;
|
||||||
|
AbilityInvokeEntry invoke = 11;
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityInvocationFixedNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 1179;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
AbilityInvokeEntry Unk3300_LDIAOMFIBPL = 7;
|
||||||
|
AbilityInvokeEntry Unk3300_ONGNOHLIIBO = 3;
|
||||||
|
AbilityInvokeEntry Unk3300_AHDFHHFHEFM = 10;
|
||||||
|
AbilityInvokeEntry Unk3300_GAFFBFFKDIC = 1;
|
||||||
|
AbilityInvokeEntry Unk3300_EMGKKHKLIEG = 4;
|
||||||
|
AbilityInvokeEntry Unk3300_KFMHLLHECCJ = 9;
|
||||||
|
}
|
|
@ -21,10 +21,15 @@ import "AbilityInvokeEntry.proto";
|
||||||
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
// CmdId: 1198
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
message AbilityInvocationsNotify {
|
message AbilityInvocationsNotify {
|
||||||
repeated AbilityInvokeEntry invokes = 2;
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 1130;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
repeated AbilityInvokeEntry invokes = 5;
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,4 +81,5 @@ enum AbilityInvokeArgument {
|
||||||
ABILITY_INVOKE_ARGUMENT_MIXIN_UI_INTERACT = 119;
|
ABILITY_INVOKE_ARGUMENT_MIXIN_UI_INTERACT = 119;
|
||||||
ABILITY_INVOKE_ARGUMENT_MIXIN_SHOOT_FROM_CAMERA = 120;
|
ABILITY_INVOKE_ARGUMENT_MIXIN_SHOOT_FROM_CAMERA = 120;
|
||||||
ABILITY_INVOKE_ARGUMENT_MIXIN_ERASE_BRICK_ACTIVITY = 121;
|
ABILITY_INVOKE_ARGUMENT_MIXIN_ERASE_BRICK_ACTIVITY = 121;
|
||||||
|
ABILITY_INVOKE_ARGUMENT_MIXIN_BREAKOUT = 122;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,12 +24,13 @@ import "ForwardType.proto";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityInvokeEntry {
|
message AbilityInvokeEntry {
|
||||||
AbilityInvokeArgument argument_type = 1;
|
ForwardType forward_type = 9;
|
||||||
AbilityInvokeEntryHead head = 2;
|
uint32 event_id = 13;
|
||||||
uint32 forward_peer = 4;
|
uint32 entity_id = 7;
|
||||||
uint32 event_id = 12;
|
uint32 forward_peer = 14;
|
||||||
ForwardType forward_type = 3;
|
double total_tick_time = 10;
|
||||||
bytes ability_data = 15;
|
AbilityInvokeEntryHead head = 3;
|
||||||
double total_tick_time = 14;
|
bytes ability_data = 2;
|
||||||
uint32 entity_id = 9;
|
AbilityInvokeArgument argument_type = 8;
|
||||||
|
bool is_ignore_auth = 12;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,11 +20,11 @@ syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityInvokeEntryHead {
|
message AbilityInvokeEntryHead {
|
||||||
|
uint32 instanced_ability_id = 8;
|
||||||
|
uint32 target_id = 6;
|
||||||
|
uint32 server_buff_uid = 1;
|
||||||
|
int32 local_id = 12;
|
||||||
int32 modifier_config_local_id = 7;
|
int32 modifier_config_local_id = 7;
|
||||||
bool is_serverbuff_modifier = 2;
|
bool is_serverbuff_modifier = 15;
|
||||||
uint32 instanced_ability_id = 1;
|
uint32 instanced_modifier_id = 10;
|
||||||
uint32 instanced_modifier_id = 12;
|
|
||||||
int32 local_id = 10;
|
|
||||||
uint32 server_buff_uid = 14;
|
|
||||||
uint32 target_id = 3;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaAddAbility {
|
||||||
|
AbilityAppliedAbility ability = 5;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaAddOrGetAbilityAndTrigger {
|
||||||
|
float trigger_argument = 4;
|
||||||
|
AbilityString ability_name = 12;
|
||||||
|
AbilityString ability_override = 13;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaDurabilityIsZero {
|
||||||
|
bool is_zero = 6;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaElementReactionVisual {
|
||||||
|
uint32 Unk3300_PHKFGIHELFG = 6;
|
||||||
|
uint32 Unk3300_DGBGNEHDODI = 1;
|
||||||
|
int32 hit_index = 14;
|
||||||
|
uint32 Unk3300_OGILJCJPHPB = 2;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaLoseHp {
|
||||||
|
uint32 lose_hp_config_idx = 15;
|
||||||
|
}
|
|
@ -25,15 +25,15 @@ import "ModifierProperty.proto";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityMetaModifierChange {
|
message AbilityMetaModifierChange {
|
||||||
AbilityAttachedModifier attached_instanced_modifier = 7;
|
AbilityAttachedModifier attached_instanced_modifier = 3;
|
||||||
uint32 server_buff_uid = 4;
|
bool is_attached_parent_ability = 5;
|
||||||
bool is_attached_parent_ability = 10;
|
repeated ModifierProperty properties = 14;
|
||||||
ModifierAction action = 13;
|
bool Unk3300_NOPKODKOHJK = 12;
|
||||||
int32 modifier_local_id = 2;
|
int32 modifier_local_id = 2;
|
||||||
AbilityString parent_ability_name = 1;
|
bool Unk3300_PBNENPBMNCI = 8;
|
||||||
bool is_mute_remote = 6;
|
AbilityString parent_ability_name = 13;
|
||||||
uint32 apply_entity_id = 5;
|
uint32 server_buff_uid = 9;
|
||||||
repeated ModifierProperty properties = 3;
|
uint32 apply_entity_id = 7;
|
||||||
AbilityString parent_ability_override = 11;
|
AbilityString parent_ability_override = 15;
|
||||||
bool is_durability_zero = 9;
|
ModifierAction action = 4;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaModifierDurabilityChange {
|
||||||
|
float Unk3300_LDHNFNOGOGF = 13;
|
||||||
|
float Unk3300_IFHFHEHDOIO = 1;
|
||||||
|
}
|
|
@ -22,5 +22,5 @@ import "AbilityScalarValueEntry.proto";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityMetaReInitOverrideMap {
|
message AbilityMetaReInitOverrideMap {
|
||||||
repeated AbilityScalarValueEntry override_map = 7;
|
repeated AbilityScalarValueEntry override_map = 10;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetAbilityTrigger {
|
||||||
|
uint32 trigger_ability_entity_id = 1;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetKilledState {
|
||||||
|
bool killed = 5;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetModifierApplyEntityId {
|
||||||
|
uint32 apply_entity_id = 10;
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaSetPoseParameter {
|
||||||
|
AnimatorParameterValueInfoPair value = 7;
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaSpecialFloatArgument {
|
||||||
|
float argument_value = 4;
|
||||||
|
bool is_on = 10;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaTriggerElementReaction {
|
||||||
|
int32 hit_index = 7;
|
||||||
|
uint32 trigger_entity_id = 14;
|
||||||
|
uint32 Unk3300_PHKFGIHELFG = 13;
|
||||||
|
uint32 Unk3300_OGILJCJPHPB = 12;
|
||||||
|
uint32 Unk3300_DGBGNEHDODI = 2;
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMetaUpdateBaseReactionDamage {
|
||||||
|
uint32 Unk3300_OIPAEGAMCLI = 2;
|
||||||
|
uint32 Unk3300_CAKEJCJKHOA = 13;
|
||||||
|
AbilityString ability_name = 6;
|
||||||
|
AbilityString global_value_key = 14;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinAvatarCombat {
|
||||||
|
bool is_enter_combat = 6;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinAvatarSteerByCamera {
|
||||||
|
Vector target_dir = 7;
|
||||||
|
Vector target_pos = 2;
|
||||||
|
}
|
|
@ -0,0 +1,48 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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 "BreakoutSyncAction.proto";
|
||||||
|
import "BreakoutSyncCreateConnect.proto";
|
||||||
|
import "BreakoutSyncFinishGame.proto";
|
||||||
|
import "BreakoutSyncPing.proto";
|
||||||
|
import "BreakoutSyncSnapShot.proto";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinBreakout {
|
||||||
|
enum SyncType {
|
||||||
|
SYNC_TYPE_NONE = 0;
|
||||||
|
SYNC_TYPE_CREATE_CONNECT = 1;
|
||||||
|
SYNC_TYPE_START_GAME = 2;
|
||||||
|
SYNC_TYPE_PING = 3;
|
||||||
|
SYNC_TYPE_FINISH_GAME = 4;
|
||||||
|
SYNC_TYPE_SNAP_SHOT = 5;
|
||||||
|
SYNC_TYPE_ACTION = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
int32 retcode = 8;
|
||||||
|
SyncType sync_type = 4;
|
||||||
|
oneof sync {
|
||||||
|
BreakoutSyncCreateConnect sync_create_connect = 2;
|
||||||
|
BreakoutSyncPing sync_ping = 1;
|
||||||
|
BreakoutSyncFinishGame sync_finish_game = 5;
|
||||||
|
BreakoutSyncSnapShot sync_snap_shot = 14;
|
||||||
|
BreakoutSyncAction sync_action = 3;
|
||||||
|
}
|
||||||
|
}
|
|
@ -20,5 +20,5 @@ syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message AbilityMixinCostStamina {
|
message AbilityMixinCostStamina {
|
||||||
bool is_swim = 3;
|
bool is_swim = 7;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinDoActionByElementReaction {
|
||||||
|
uint32 target_entity_id = 5;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinDoActionBySelfModifierElementDurabilityRatio {
|
||||||
|
float last_durability_ratio = 14;
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinElementShield {
|
||||||
|
uint32 player_num = 9;
|
||||||
|
float shield = 5;
|
||||||
|
bool is_shield_broken = 8;
|
||||||
|
float sub_shield = 4;
|
||||||
|
float max_shield = 13;
|
||||||
|
uint32 absorb_type = 10;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinEliteShield {
|
||||||
|
float sub_shield = 9;
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinEmpty {}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinEraseBrickActivity {
|
||||||
|
repeated uint32 data = 15;
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinFieldEntityCountChange {
|
||||||
|
uint32 field_entity_count = 8;
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinFireworksLauncher {
|
||||||
|
uint32 Unk3300_FHGLEJNJIHK = 5;
|
||||||
|
uint32 Unk3300_BFJBDJLAOJL = 4;
|
||||||
|
uint32 Unk3300_LPPKOFHKCPH = 7;
|
||||||
|
uint32 Unk3300_BDGCGLGNAIB = 3;
|
||||||
|
repeated uint32 fireworks_config = 12;
|
||||||
|
uint32 phase = 1;
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinGlobalShield {
|
||||||
|
float max_shield = 14;
|
||||||
|
bool is_create_effect = 4;
|
||||||
|
string shield_effect_name = 12;
|
||||||
|
float sub_shield = 10;
|
||||||
|
uint32 avatar_id = 3;
|
||||||
|
float height_offset = 1;
|
||||||
|
}
|
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
|
import "BreakoutSnapShot.proto";
|
||||||
import "MassivePropSyncInfo.proto";
|
import "MassivePropSyncInfo.proto";
|
||||||
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
@ -26,6 +27,7 @@ message AbilityMixinRecoverInfo {
|
||||||
repeated uint32 data_list = 4;
|
repeated uint32 data_list = 4;
|
||||||
bool is_serverbuff_modifier = 5;
|
bool is_serverbuff_modifier = 5;
|
||||||
repeated MassivePropSyncInfo massive_prop_list = 6;
|
repeated MassivePropSyncInfo massive_prop_list = 6;
|
||||||
|
BreakoutSnapShot breakout_snap_shot = 7;
|
||||||
oneof source {
|
oneof source {
|
||||||
uint32 instanced_ability_id = 1;
|
uint32 instanced_ability_id = 1;
|
||||||
uint32 instanced_modifier_id = 2;
|
uint32 instanced_modifier_id = 2;
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinScenePropSync {
|
||||||
|
repeated MassivePropSyncInfo massive_prop_list = 11;
|
||||||
|
repeated int64 delete_id_list = 12;
|
||||||
|
bool is_clear_all = 3;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinShieldBar {
|
||||||
|
float max_shield = 8;
|
||||||
|
float shield = 4;
|
||||||
|
uint32 player_num = 3;
|
||||||
|
uint32 element_type = 7;
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinShootFromCamera {
|
||||||
|
Vector forward = 13;
|
||||||
|
Vector init_pos = 9;
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinUGCTimeControl {
|
||||||
|
uint64 start_move_time_ms = 12;
|
||||||
|
uint32 start_move_time = 9;
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinUIInteract {}
|
|
@ -0,0 +1,24 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinWidgetMpSupport {
|
||||||
|
uint32 target_entity_id = 2;
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinWindSeedSpawner {
|
||||||
|
message AddSignal {}
|
||||||
|
|
||||||
|
message RefreshSeed {
|
||||||
|
repeated Vector pos_list = 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
message CatchSeed {
|
||||||
|
uint32 entity_id = 13;
|
||||||
|
}
|
||||||
|
|
||||||
|
oneof cmd {
|
||||||
|
AddSignal add_signal = 8;
|
||||||
|
RefreshSeed refresh_seed = 12;
|
||||||
|
CatchSeed catch_seed = 14;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AbilityMixinWindZone {
|
||||||
|
repeated uint32 Unk3300_OJPFAIGIBLG = 3;
|
||||||
|
repeated uint32 Unk3300_DJELBGDEDBH = 12;
|
||||||
|
}
|
|
@ -20,7 +20,7 @@ syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
enum AbilityScalarType {
|
enum AbilityScalarType {
|
||||||
ABILITY_SCALAR_TYPE_UNKNOW = 0;
|
ABILITY_SCALAR_TYPE_UNKNOWN = 0;
|
||||||
ABILITY_SCALAR_TYPE_FLOAT = 1;
|
ABILITY_SCALAR_TYPE_FLOAT = 1;
|
||||||
ABILITY_SCALAR_TYPE_INT = 2;
|
ABILITY_SCALAR_TYPE_INT = 2;
|
||||||
ABILITY_SCALAR_TYPE_BOOL = 3;
|
ABILITY_SCALAR_TYPE_BOOL = 3;
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AcceptCityReputationRequestReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2847;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 city_id = 14;
|
||||||
|
uint32 request_id = 8;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AcceptCityReputationRequestRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2878;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 city_id = 1;
|
||||||
|
int32 retcode = 9;
|
||||||
|
uint32 request_id = 10;
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message Achievement {
|
||||||
|
enum Status {
|
||||||
|
STATUS_INVALID = 0;
|
||||||
|
STATUS_UNFINISHED = 1;
|
||||||
|
STATUS_FINISHED = 2;
|
||||||
|
STATUS_REWARD_TAKEN = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32 finish_timestamp = 8;
|
||||||
|
uint32 cur_progress = 11;
|
||||||
|
uint32 total_progress = 6;
|
||||||
|
uint32 id = 14;
|
||||||
|
Status status = 15;
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AchievementAllDataNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2692;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
repeated uint32 reward_taken_goal_id_list = 13;
|
||||||
|
repeated Achievement achievement_list = 8;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message AchievementUpdateNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2691;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
repeated Achievement achievement_list = 11;
|
||||||
|
}
|
|
@ -0,0 +1,212 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
enum ActionReasonType {
|
||||||
|
ACTION_REASON_NONE = 0;
|
||||||
|
ACTION_REASON_QUEST_ITEM = 1;
|
||||||
|
ACTION_REASON_QUEST_REWARD = 2;
|
||||||
|
ACTION_REASON_TRIFLE = 3;
|
||||||
|
ACTION_REASON_SHOP = 4;
|
||||||
|
ACTION_REASON_PLAYER_UPGRADE_REWARD = 5;
|
||||||
|
ACTION_REASON_ADD_AVATAR = 6;
|
||||||
|
ACTION_REASON_GADGET_ENV_ANIMAL = 7;
|
||||||
|
ACTION_REASON_MONSTER_ENV_ANIMAL = 8;
|
||||||
|
ACTION_REASON_COMPOUND = 9;
|
||||||
|
ACTION_REASON_COOK = 10;
|
||||||
|
ACTION_REASON_GATHER = 11;
|
||||||
|
ACTION_REASON_MAIL_ATTACHMENT = 12;
|
||||||
|
ACTION_REASON_CITY_LEVELUP_RETURN = 15;
|
||||||
|
ACTION_REASON_CITY_LEVELUP_REWARD = 17;
|
||||||
|
ACTION_REASON_AREA_EXPLORE_REWARD = 18;
|
||||||
|
ACTION_REASON_UNLOCK_POINT_REWARD = 19;
|
||||||
|
ACTION_REASON_DUNGEON_FIRST_PASS = 20;
|
||||||
|
ACTION_REASON_DUNGEON_PASS = 21;
|
||||||
|
ACTION_REASON_CHANGE_ELEM_TYPE = 23;
|
||||||
|
ACTION_REASON_FETTER_OPEN = 25;
|
||||||
|
ACTION_REASON_DAILY_TASK_SCORE = 26;
|
||||||
|
ACTION_REASON_DAILY_TASK_HOST = 27;
|
||||||
|
ACTION_REASON_RAND_TASK_HOST = 28;
|
||||||
|
ACTION_REASON_EXPEDITION = 29;
|
||||||
|
ACTION_REASON_GACHA = 30;
|
||||||
|
ACTION_REASON_COMBINE = 31;
|
||||||
|
ACTION_REASON_RAND_TASK_GUEST = 32;
|
||||||
|
ACTION_REASON_DAILY_TASK_GUEST = 33;
|
||||||
|
ACTION_REASON_FORGE_OUTPUT = 34;
|
||||||
|
ACTION_REASON_FORGE_RETURN = 35;
|
||||||
|
ACTION_REASON_INIT_AVATAR = 36;
|
||||||
|
ACTION_REASON_MONSTER_DIE = 37;
|
||||||
|
ACTION_REASON_GM = 38;
|
||||||
|
ACTION_REASON_OPEN_CHEST = 39;
|
||||||
|
ACTION_REASON_GADGET_DIE = 40;
|
||||||
|
ACTION_REASON_MONSTER_CHANGE_HP = 41;
|
||||||
|
ACTION_REASON_SUBFIELD_DROP = 42;
|
||||||
|
ACTION_REASON_PUSH_TIPS_REWARD = 43;
|
||||||
|
ACTION_REASON_ACTIVITY_MONSTER_DROP = 44;
|
||||||
|
ACTION_REASON_ACTIVITY_GATHER = 45;
|
||||||
|
ACTION_REASON_ACTIVITY_SUBFIELD_DROP = 46;
|
||||||
|
ACTION_REASON_TOWER_SCHEDULE_REWARD = 47;
|
||||||
|
ACTION_REASON_TOWER_FLOOR_STAR_REWARD = 48;
|
||||||
|
ACTION_REASON_TOWER_FIRST_PASS_REWARD = 49;
|
||||||
|
ACTION_REASON_TOWER_DAILY_REWARD = 50;
|
||||||
|
ACTION_REASON_HIT_CLIENT_TRIVIAL_ENTITY = 51;
|
||||||
|
ACTION_REASON_OPEN_WORLD_BOSS_CHEST = 52;
|
||||||
|
ACTION_REASON_MATERIAL_DELETE_RETURN = 53;
|
||||||
|
ACTION_REASON_SIGN_IN_REWARD = 54;
|
||||||
|
ACTION_REASON_OPEN_BLOSSOM_CHEST = 55;
|
||||||
|
ACTION_REASON_RECHARGE = 56;
|
||||||
|
ACTION_REASON_BONUS_ACTIVITY_REWARD = 57;
|
||||||
|
ACTION_REASON_TOWER_COMMEMORATIVE_REWARD = 58;
|
||||||
|
ACTION_REASON_TOWER_SKIP_FLOOR_REWARD = 59;
|
||||||
|
ACTION_REASON_RECHARGE_BONUS = 60;
|
||||||
|
ACTION_REASON_RECHARGE_CARD = 61;
|
||||||
|
ACTION_REASON_RECHARGE_CARD_DAILY = 62;
|
||||||
|
ACTION_REASON_RECHARGE_CARD_REPLACE = 63;
|
||||||
|
ACTION_REASON_RECHARGE_CARD_REPLACE_FREE = 64;
|
||||||
|
ACTION_REASON_RECHARGE_PLAY_REPLACE = 65;
|
||||||
|
ACTION_REASON_MP_PLAY_TAKE_REWARD = 66;
|
||||||
|
ACTION_REASON_ACTIVITY_WATCHER = 67;
|
||||||
|
ACTION_REASON_SALESMAN_DELIVER_ITEM = 68;
|
||||||
|
ACTION_REASON_SALESMAN_REWARD = 69;
|
||||||
|
ACTION_REASON_REBATE = 70;
|
||||||
|
ACTION_REASON_MCOIN_EXCHANGE_HCOIN = 71;
|
||||||
|
ACTION_REASON_DAILY_TASK_EXCHANGE_LEGENDARY_KEY = 72;
|
||||||
|
ACTION_REASON_UNLOCK_PERSON_LINE = 73;
|
||||||
|
ACTION_REASON_FETTER_LEVEL_REWARD = 74;
|
||||||
|
ACTION_REASON_BUY_RESIN = 75;
|
||||||
|
ACTION_REASON_RECHARGE_PACKAGE = 76;
|
||||||
|
ACTION_REASON_DELIVERY_DAILY_REWARD = 77;
|
||||||
|
ACTION_REASON_CITY_REPUTATION_LEVEL = 78;
|
||||||
|
ACTION_REASON_CITY_REPUTATION_QUEST = 79;
|
||||||
|
ACTION_REASON_CITY_REPUTATION_REQUEST = 80;
|
||||||
|
ACTION_REASON_CITY_REPUTATION_EXPLORE = 81;
|
||||||
|
ACTION_REASON_OFFERGING_LEVEL = 82;
|
||||||
|
ACTION_REASON_ROUTINE_HOST = 83;
|
||||||
|
ACTION_REASON_ROUTINE_GUEST = 84;
|
||||||
|
ACTION_REASON_TREASURE_MAP_SPOT_TOKEN = 89;
|
||||||
|
ACTION_REASON_TREASURE_MAP_BONUS_LEVEL_REWARD = 90;
|
||||||
|
ACTION_REASON_TREASURE_MAP_MP_REWARD = 91;
|
||||||
|
ACTION_REASON_CONVERT = 92;
|
||||||
|
ACTION_REASON_OVERFLOW_TRANSFORM = 93;
|
||||||
|
ACTION_REASON_ACTIVITY_AVATAR_SELECTION_REWARD = 96;
|
||||||
|
ACTION_REASON_ACTIVITY_WATCHER_BATCH = 97;
|
||||||
|
ACTION_REASON_HIT_TREE_DROP = 98;
|
||||||
|
ACTION_REASON_GET_HOME_LEVELUP_REWARD = 99;
|
||||||
|
ACTION_REASON_HOME_DEFAULT_FURNITURE = 100;
|
||||||
|
ACTION_REASON_ACTIVITY_COND = 101;
|
||||||
|
ACTION_REASON_BATTLE_PASS_NOTIFY = 102;
|
||||||
|
ACTION_REASON_RELIQUARY_DECOMPOSE = 103;
|
||||||
|
ACTION_REASON_RECHARGE_GOOGLE_GIFT_GARD = 104;
|
||||||
|
ACTION_REASON_RECHARGE_CONCERT_PRODUCT = 105;
|
||||||
|
ACTION_REASON_RECHARGE_CONCERT_PRODUCT_REPLACE = 106;
|
||||||
|
ACTION_REASON_SEND_CONCERT_PRODUCT_BY_MUIP = 107;
|
||||||
|
ACTION_REASON_RECHARGE_APPLE_GIFT_GARD = 108;
|
||||||
|
ACTION_REASON_PLAYER_USE_ITEM = 1001;
|
||||||
|
ACTION_REASON_DROP_ITEM = 1002;
|
||||||
|
ACTION_REASON_WEAPON_UPGRADE = 1011;
|
||||||
|
ACTION_REASON_WEAPON_PROMOTE = 1012;
|
||||||
|
ACTION_REASON_WEAPON_AWAKEN = 1013;
|
||||||
|
ACTION_REASON_RELIC_UPGRADE = 1014;
|
||||||
|
ACTION_REASON_ABILITY = 1015;
|
||||||
|
ACTION_REASON_DUNGEON_STATUE_DROP = 1016;
|
||||||
|
ACTION_REASON_OFFLINE_MSG = 1017;
|
||||||
|
ACTION_REASON_AVATAR_UPGRADE = 1018;
|
||||||
|
ACTION_REASON_AVATAR_PROMOTE = 1019;
|
||||||
|
ACTION_REASON_QUEST_ACTION = 1021;
|
||||||
|
ACTION_REASON_CITY_LEVELUP = 1022;
|
||||||
|
ACTION_REASON_UPGRADE_SKILL = 1024;
|
||||||
|
ACTION_REASON_UNLOCK_TALENT = 1025;
|
||||||
|
ACTION_REASON_UPGRADE_PROUD_SKILL = 1026;
|
||||||
|
ACTION_REASON_PLAYER_LEVEL_LIMIT_UP = 1027;
|
||||||
|
ACTION_REASON_DUNGEON_DAILY = 1028;
|
||||||
|
ACTION_REASON_ITEM_GIVING = 1030;
|
||||||
|
ACTION_REASON_FORGE_COST = 1031;
|
||||||
|
ACTION_REASON_INVESTIGATION_REWARD = 1032;
|
||||||
|
ACTION_REASON_INVESTIGATION_TARGET_REWARD = 1033;
|
||||||
|
ACTION_REASON_GADGET_INTERACT = 1034;
|
||||||
|
ACTION_REASON_SEA_LAMP_CI_MATERIAL = 1036;
|
||||||
|
ACTION_REASON_SEA_LAMP_CONTRIBUTION_REWARD = 1037;
|
||||||
|
ACTION_REASON_SEA_LAMP_PHASE_REWARD = 1038;
|
||||||
|
ACTION_REASON_SEA_LAMP_FLY_LAMP = 1039;
|
||||||
|
ACTION_REASON_AUTO_RECOVER = 1040;
|
||||||
|
ACTION_REASON_ACTIVITY_EXPIRE_ITEM = 1041;
|
||||||
|
ACTION_REASON_SUB_COIN_NEGATIVE = 1042;
|
||||||
|
ACTION_REASON_BARGAIN_DEDUCT = 1043;
|
||||||
|
ACTION_REASON_BATTLE_PASS_PAID_REWARD = 1044;
|
||||||
|
ACTION_REASON_BATTLE_PASS_LEVEL_REWARD = 1045;
|
||||||
|
ACTION_REASON_TRIAL_AVATAR_ACTIVITY_FIRST_PASS_REWARD = 1046;
|
||||||
|
ACTION_REASON_BUY_BATTLE_PASS_LEVEL = 1047;
|
||||||
|
ACTION_REASON_GRANT_BIRTHDAY_BENEFIT = 1048;
|
||||||
|
ACTION_REASON_ACHIEVEMENT_REWARD = 1049;
|
||||||
|
ACTION_REASON_ACHIEVEMENT_GOAL_REWARD = 1050;
|
||||||
|
ACTION_REASON_FIRST_SHARE_TO_SOCIAL_NETWORK = 1051;
|
||||||
|
ACTION_REASON_DESTROY_MATERIAL = 1052;
|
||||||
|
ACTION_REASON_CODEX_LEVELUP_REWARD = 1053;
|
||||||
|
ACTION_REASON_HUNTING_OFFER_REWARD = 1054;
|
||||||
|
ACTION_REASON_USE_WIDGET_ANCHOR_POINT = 1055;
|
||||||
|
ACTION_REASON_USE_WIDGET_BONFIRE = 1056;
|
||||||
|
ACTION_REASON_UNGRADE_WEAPON_RETURN_MATERIAL = 1057;
|
||||||
|
ACTION_REASON_USE_WIDGET_ONEOFF_GATHER_POINT_DETECTOR = 1058;
|
||||||
|
ACTION_REASON_USE_WIDGET_CLIENT_COLLECTOR = 1059;
|
||||||
|
ACTION_REASON_USE_WIDGET_CLIENT_DETECTOR = 1060;
|
||||||
|
ACTION_REASON_TAKE_GENERAL_REWARD = 1061;
|
||||||
|
ACTION_REASON_ASTER_TAKE_SPECIAL_REWARD = 1062;
|
||||||
|
ACTION_REASON_REMOVE_CODEX_BOOK = 1063;
|
||||||
|
ACTION_REASON_OFFERING_ITEM = 1064;
|
||||||
|
ACTION_REASON_USE_WIDGET_GADGET_BUILDER = 1065;
|
||||||
|
ACTION_REASON_EFFIGY_FIRST_PASS_REWARD = 1066;
|
||||||
|
ACTION_REASON_EFFIGY_REWARD = 1067;
|
||||||
|
ACTION_REASON_REUNION_FIRST_GIFT_REWARD = 1068;
|
||||||
|
ACTION_REASON_REUNION_SIGN_IN_REWARD = 1069;
|
||||||
|
ACTION_REASON_REUNION_WATCHER_REWARD = 1070;
|
||||||
|
ACTION_REASON_SALESMAN_MP_REWARD = 1071;
|
||||||
|
ACTION_REASION_AVATAR_PROMOTE_REWARD = 1072;
|
||||||
|
ACTION_REASON_BLESSING_REDEEM_REWARD = 1073;
|
||||||
|
ACTION_MIRACLE_RING_REWARD = 1074;
|
||||||
|
ACTION_REASON_EXPEDITION_REWARD = 1075;
|
||||||
|
ACTION_REASON_TREASURE_MAP_REMOVE_DETECTOR = 1076;
|
||||||
|
ACTION_REASON_MECHANICUS_DUNGEON_TICKET = 1077;
|
||||||
|
ACTION_REASON_MECHANICUS_LEVELUP_GEAR = 1078;
|
||||||
|
ACTION_REASON_MECHANICUS_BATTLE_SETTLE = 1079;
|
||||||
|
ACTION_REASON_REGION_SEARCH_REWARD = 1080;
|
||||||
|
ACTION_REASON_UNLOCK_COOP_CHAPTER = 1081;
|
||||||
|
ACTION_REASON_TAKE_COOP_REWARD = 1082;
|
||||||
|
ACTION_REASON_FLEUR_FAIR_DUNGEON_REWARD = 1083;
|
||||||
|
ACTION_REASON_ACTIVITY_SCORE = 1084;
|
||||||
|
ACTION_REASON_CHANNELLER_SLAB_ONEOFF_DUNGEON_REWARD = 1085;
|
||||||
|
ACTION_REASON_FURNITURE_MAKE_START = 1086;
|
||||||
|
ACTION_REASON_FURNITURE_MAKE_TAKE = 1087;
|
||||||
|
ACTION_REASON_FURNITURE_MAKE_CANCEL = 1088;
|
||||||
|
ACTION_REASON_FURNITURE_MAKE_FAST_FINISH = 1089;
|
||||||
|
ACTION_REASON_CHANNELLER_SLAB_LOOP_DUNGEON_FIRST_PASS_REWARD = 1090;
|
||||||
|
ACTION_REASON_CHANNELLER_SLAB_LOOP_DUNGEON_SCORE_REWARD = 1091;
|
||||||
|
ACTION_REASON_HOME_LIMITED_SHOP_BUY = 1092;
|
||||||
|
ACTION_REASON_HOME_COIN_COLLECT = 1093;
|
||||||
|
ACTION_REASON_SUMMER_TIME_SENTRY_TOWER_REWARD = 1094;
|
||||||
|
ACTION_REASON_SUMMER_TIME_SPRINT_BOAT_REWARD = 1095;
|
||||||
|
ACTION_REASON_SUMMER_TIME_BOSS_REWARD = 1096;
|
||||||
|
ACTION_REASON_SUMMER_TIME_BOMB_REWARD = 1097;
|
||||||
|
ACTION_REASON_HOME_FETTER_COLLECT = 1098;
|
||||||
|
ACTION_REASON_ECHO_SHELL_REWARD = 1099;
|
||||||
|
ACTION_REASON_HOME_EVENT_REWARD = 1100;
|
||||||
|
ACTION_REASON_BLITZ_RUSH_DUNGEON_REWARD = 1101;
|
||||||
|
ACTION_REASON_FURNITURE_MAKE_RETURN = 1102;
|
||||||
|
ACTION_REASON_HOME_PLANT_BOX_GATHER = 1103;
|
||||||
|
ACTION_REASON_HOME_PLANT_SEED = 1104;
|
||||||
|
ACTION_REASON_HOME_PLANT_GATHER = 1105;
|
||||||
|
ACTION_REASON_CHESS_DUNGEON_REWARD = 1106;
|
||||||
|
ACTION_REASON_GROUP_LINK_BUNDLE_FINISH = 1107;
|
||||||
|
ACTION_REASON_LUNA_RITE_SACRIFICE = 1108;
|
||||||
|
ACTION_REASON_LUNA_RITE_TAKE_SACRIFICE_REWARD = 1109;
|
||||||
|
ACTION_REASON_FISH_BITE = 1110;
|
||||||
|
ACTION_REASON_FISH_SUCC = 1111;
|
||||||
|
ACTION_REASON_PLANT_FLOWER_REWARD = 1112;
|
||||||
|
ACTION_REASON_PLANT_FLOWER_DELIVER_ITEM = 1113;
|
||||||
|
ACTION_REASON_PLANT_FLOWER_GIVE_FLOWER = 1114;
|
||||||
|
ACTION_REASON_PLANT_FLOWER_RECV_FLOWER = 1115;
|
||||||
|
ACTION_REASON_ROGUE_CHALLENGE_SETTLE = 1116;
|
||||||
|
ACTION_REASON_ROGUE_TAKE_FIRST_PASS_REWARD = 1117;
|
||||||
|
ACTION_REASON_ROGUE_UPGRADE_SHIKIGAMI = 1118;
|
||||||
|
ACTION_REASON_ROGUE_REFRESH_CARD = 1119;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityAcceptAllGiveGiftReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8900;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 9;
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityAcceptAllGiveGiftRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8771;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
repeated ActivityAcceptGiftResultInfo accept_gift_result_info_list = 7;
|
||||||
|
uint32 schedule_id = 6;
|
||||||
|
int32 retcode = 12;
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityAcceptGiftResultInfo {
|
||||||
|
map<uint32, uint32> Unk3300_JFHLEBLOFMA = 1;
|
||||||
|
map<uint32, uint32> Unk3300_COCFNBJCFGP = 9;
|
||||||
|
uint32 uid = 12;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityAcceptGiveGiftReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8827;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 uid = 9;
|
||||||
|
uint32 schedule_id = 12;
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityAcceptGiveGiftRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8047;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
int32 retcode = 4;
|
||||||
|
ActivityAcceptGiftResultInfo accept_gift_result_info = 2;
|
||||||
|
uint32 schedule_id = 1;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityBannerClearReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2147;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 activity_id = 14;
|
||||||
|
uint32 schedule_id = 7;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityBannerClearRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2198;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
int32 retcode = 8;
|
||||||
|
uint32 schedule_id = 5;
|
||||||
|
uint32 activity_id = 9;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityBannerNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2160;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 activity_id = 1;
|
||||||
|
uint32 schedule_id = 8;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityCoinInfoNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2018;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 8;
|
||||||
|
map<uint32, uint32> activity_coin_map = 2;
|
||||||
|
uint32 activity_id = 4;
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityCondStateChangeNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2194;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 activity_id = 5;
|
||||||
|
uint32 schedule_id = 14;
|
||||||
|
repeated uint32 Unk3300_HKKNIHNBHAE = 1;
|
||||||
|
repeated uint32 Unk3300_BGNIBLKCPCA = 4;
|
||||||
|
repeated uint32 activated_sale_id_list = 8;
|
||||||
|
repeated Uint32Pair disable_transfer_point_interaction_list = 11;
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityDisableTransferPointInteractionNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8029;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
bool is_disable = 13;
|
||||||
|
Uint32Pair scene_point_pair = 11;
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityDungeonAvatar {
|
||||||
|
uint32 avatar_id = 1;
|
||||||
|
bool is_trial = 2;
|
||||||
|
uint32 costume_id = 3;
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityFriendGiftWishData {
|
||||||
|
map<uint32, uint32> gift_num_map = 5;
|
||||||
|
uint32 uid = 7;
|
||||||
|
ProfilePicture profile_picture = 11;
|
||||||
|
string remark_name = 12;
|
||||||
|
string nickname = 2;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGetCanGiveFriendGiftReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8330;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 2;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGetCanGiveFriendGiftRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8374;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
map<uint32, uint32> gift_num_map = 7;
|
||||||
|
int32 retcode = 11;
|
||||||
|
uint32 schedule_id = 12;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGetFriendGiftWishListReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8642;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 2;
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGetFriendGiftWishListRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8355;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
repeated ActivityFriendGiftWishData friend_gift_wish_list = 12;
|
||||||
|
uint32 schedule_id = 4;
|
||||||
|
int32 retcode = 2;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGetRecvGiftListReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8995;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 5;
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGetRecvGiftListRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8844;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 7;
|
||||||
|
int32 retcode = 9;
|
||||||
|
repeated ActivityRecvGiftData recv_gift_list = 10;
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGiveFriendGiftReq {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8178;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
map<uint32, uint32> gift_num_map = 10;
|
||||||
|
uint32 schedule_id = 15;
|
||||||
|
uint32 uid = 1;
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityGiveFriendGiftRsp {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8373;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 15;
|
||||||
|
int32 retcode = 8;
|
||||||
|
repeated uint32 limit_gift_list = 14;
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityHaveRecvGiftNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 8118;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 schedule_id = 2;
|
||||||
|
}
|
|
@ -25,10 +25,12 @@ import "BartenderActivityDetailInfo.proto";
|
||||||
import "BlessingActivityDetailInfo.proto";
|
import "BlessingActivityDetailInfo.proto";
|
||||||
import "BlitzRushActivityDetailInfo.proto";
|
import "BlitzRushActivityDetailInfo.proto";
|
||||||
import "BounceConjuringActivityDetailInfo.proto";
|
import "BounceConjuringActivityDetailInfo.proto";
|
||||||
|
import "BrickBreakerDetailInfo.proto";
|
||||||
import "BuoyantCombatDetailInfo.proto";
|
import "BuoyantCombatDetailInfo.proto";
|
||||||
import "ChannelerSlabActivityDetailInfo.proto";
|
import "ChannelerSlabActivityDetailInfo.proto";
|
||||||
import "CharAmusementDetailInfo.proto";
|
import "CharAmusementDetailInfo.proto";
|
||||||
import "ChessActivityDetailInfo.proto";
|
import "ChessActivityDetailInfo.proto";
|
||||||
|
import "CoinCollectDetailInfo.proto";
|
||||||
import "CrucibleActivityDetailInfo.proto";
|
import "CrucibleActivityDetailInfo.proto";
|
||||||
import "CrystalLinkActivityDetailInfo.proto";
|
import "CrystalLinkActivityDetailInfo.proto";
|
||||||
import "DeliveryActivityDetailInfo.proto";
|
import "DeliveryActivityDetailInfo.proto";
|
||||||
|
@ -76,7 +78,7 @@ import "TreasureMapActivityDetailInfo.proto";
|
||||||
import "TreasureSeelieActivityDetailInfo.proto";
|
import "TreasureSeelieActivityDetailInfo.proto";
|
||||||
import "TrialAvatarActivityDetailInfo.proto";
|
import "TrialAvatarActivityDetailInfo.proto";
|
||||||
import "UgcActivityDetailInfo.proto";
|
import "UgcActivityDetailInfo.proto";
|
||||||
import "VintageDetailInfo.proto";
|
import "VintageActivityDetailInfo.proto";
|
||||||
import "WaterSpiritActivityDetailInfo.proto";
|
import "WaterSpiritActivityDetailInfo.proto";
|
||||||
import "WindFieldDetailInfo.proto";
|
import "WindFieldDetailInfo.proto";
|
||||||
import "WinterCampActivityDetailInfo.proto";
|
import "WinterCampActivityDetailInfo.proto";
|
||||||
|
@ -84,90 +86,92 @@ import "WinterCampActivityDetailInfo.proto";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message ActivityInfo {
|
message ActivityInfo {
|
||||||
bool is_finished = 6;
|
bool Unk3300_MJNPGEKLOCG = 360;
|
||||||
uint32 activity_type = 4;
|
bool is_finished = 8;
|
||||||
uint32 begin_time = 8;
|
uint32 cur_score = 1268;
|
||||||
repeated uint32 taken_reward_list = 329;
|
uint32 schedule_id = 7;
|
||||||
bool is_hidden = 919;
|
uint32 Unk3300_JAEALAIOOID = 1870;
|
||||||
bool is_quick_open = 1449;
|
bool Unk3300_ICNJJKDHPCH = 14;
|
||||||
repeated uint32 meet_cond_list = 10;
|
repeated uint32 Unk3300_BGNIBLKCPCA = 11;
|
||||||
map<uint32, uint32> activity_coin_map = 682;
|
bool Unk3300_NEPKLLBJFKK = 1645;
|
||||||
bool is_banner_cleared = 102;
|
repeated ActivityWatcherInfo watcher_info_list = 6;
|
||||||
uint32 cur_score = 1906;
|
repeated ActivityPushTipsData activity_push_tips_data_list = 1867;
|
||||||
uint32 first_day_start_time = 592;
|
uint32 activity_id = 13;
|
||||||
uint32 activity_id = 12;
|
repeated uint32 taken_reward_list = 1889;
|
||||||
bool is_play_open_anim = 13;
|
uint32 Unk3300_GCEAKEMMJEA = 697;
|
||||||
uint32 end_time = 5;
|
map<uint32, uint32> activity_coin_map = 36;
|
||||||
uint32 score_limit = 1958;
|
uint32 first_day_start_time = 786;
|
||||||
map<uint32, uint32> wish_gift_num_map = 1399;
|
bool Unk3300_ABJKLALKLDG = 1486;
|
||||||
uint32 selected_avatar_reward_id = 1290;
|
uint32 Unk3300_DMILOONBELH = 3;
|
||||||
bool is_common_content_closed = 1963;
|
bool Unk3300_CBCEHLJJOGI = 1375;
|
||||||
repeated uint32 expire_cond_list = 3;
|
uint32 begin_time = 1;
|
||||||
repeated ActivityPushTipsData activity_push_tips_data_list = 864;
|
bool Unk3300_MDBDPIBEGGH = 12;
|
||||||
repeated ActivityWatcherInfo watcher_info_list = 2;
|
map<uint32, uint32> wish_gift_num_map = 939;
|
||||||
uint32 schedule_id = 15;
|
uint32 end_time = 10;
|
||||||
bool is_starting = 9;
|
repeated uint32 Unk3300_HKKNIHNBHAE = 5;
|
||||||
oneof detail {
|
oneof detail {
|
||||||
SeaLampActivityDetailInfo sam_lamp_info = 7;
|
SeaLampActivityDetailInfo sam_lamp_info = 2;
|
||||||
CrucibleActivityDetailInfo crucible_info = 14;
|
CrucibleActivityDetailInfo crucible_info = 15;
|
||||||
SalesmanActivityDetailInfo salesman_info = 11;
|
SalesmanActivityDetailInfo salesman_info = 9;
|
||||||
TrialAvatarActivityDetailInfo trial_avatar_info = 1;
|
TrialAvatarActivityDetailInfo trial_avatar_info = 4;
|
||||||
DeliveryActivityDetailInfo delivery_info = 1092;
|
DeliveryActivityDetailInfo delivery_info = 1141;
|
||||||
AsterActivityDetailInfo aster_info = 557;
|
AsterActivityDetailInfo aster_info = 1977;
|
||||||
FlightActivityDetailInfo flight_info = 1365;
|
FlightActivityDetailInfo flight_info = 2011;
|
||||||
DragonSpineActivityDetailInfo dragon_spine_info = 1727;
|
DragonSpineActivityDetailInfo dragon_spine_info = 1310;
|
||||||
EffigyActivityDetailInfo effigy_info = 391;
|
EffigyActivityDetailInfo effigy_info = 1374;
|
||||||
TreasureMapActivityDetailInfo treasure_map_info = 1114;
|
TreasureMapActivityDetailInfo treasure_map_info = 1925;
|
||||||
BlessingActivityDetailInfo blessing_info = 1869;
|
BlessingActivityDetailInfo blessing_info = 1962;
|
||||||
SeaLampActivityInfo sea_lamp_info = 494;
|
SeaLampActivityInfo sea_lamp_info = 247;
|
||||||
ExpeditionActivityDetailInfo expedition_info = 202;
|
ExpeditionActivityDetailInfo expedition_info = 1752;
|
||||||
ArenaChallengeActivityDetailInfo arena_challenge_info = 859;
|
ArenaChallengeActivityDetailInfo arena_challenge_info = 538;
|
||||||
FleurFairActivityDetailInfo fleur_fair_info = 857;
|
FleurFairActivityDetailInfo fleur_fair_info = 1447;
|
||||||
WaterSpiritActivityDetailInfo water_spirit_info = 1675;
|
WaterSpiritActivityDetailInfo water_spirit_info = 635;
|
||||||
ChannelerSlabActivityDetailInfo channeler_slab_info = 1015;
|
ChannelerSlabActivityDetailInfo channeler_slab_info = 846;
|
||||||
MistTrialActivityDetailInfo mist_trial_activity_info = 156;
|
MistTrialActivityDetailInfo mist_trial_activity_info = 432;
|
||||||
HideAndSeekActivityDetailInfo hide_and_seek_info = 427;
|
HideAndSeekActivityDetailInfo hide_and_seek_info = 839;
|
||||||
FindHilichurlDetailInfo find_hilichurl_info = 1411;
|
FindHilichurlDetailInfo find_hilichurl_info = 378;
|
||||||
SummerTimeDetailInfo summer_time_info = 1372;
|
SummerTimeDetailInfo summer_time_info = 1910;
|
||||||
BuoyantCombatDetailInfo buoyant_combat_info = 1842;
|
BuoyantCombatDetailInfo buoyant_combat_info = 686;
|
||||||
EchoShellDetailInfo echo_shell_info = 1113;
|
EchoShellDetailInfo echo_shell_info = 1162;
|
||||||
BounceConjuringActivityDetailInfo bounce_conjuring_info = 767;
|
BounceConjuringActivityDetailInfo bounce_conjuring_info = 922;
|
||||||
BlitzRushActivityDetailInfo blitz_rush_info = 794;
|
BlitzRushActivityDetailInfo blitz_rush_info = 64;
|
||||||
ChessActivityDetailInfo chess_info = 927;
|
ChessActivityDetailInfo chess_info = 1006;
|
||||||
SumoActivityDetailInfo sumo_info = 1261;
|
SumoActivityDetailInfo sumo_info = 505;
|
||||||
MoonfinTrialActivityDetailInfo moonfin_trial_info = 1588;
|
MoonfinTrialActivityDetailInfo moonfin_trial_info = 766;
|
||||||
LunaRiteDetailInfo luna_rite_info = 814;
|
LunaRiteDetailInfo luna_rite_info = 1545;
|
||||||
PlantFlowerActivityDetailInfo plant_flower_info = 54;
|
PlantFlowerActivityDetailInfo plant_flower_info = 1274;
|
||||||
MusicGameActivityDetailInfo music_game_info = 460;
|
MusicGameActivityDetailInfo music_game_info = 1989;
|
||||||
RoguelikeDungeonActivityDetailInfo roguelike_dungeon_info = 219;
|
RoguelikeDungeonActivityDetailInfo roguelike_dungeon_info = 970;
|
||||||
DigActivityDetailInfo dig_info = 403;
|
DigActivityDetailInfo dig_info = 1862;
|
||||||
HachiActivityDetailInfo hachi_info = 491;
|
HachiActivityDetailInfo hachi_info = 511;
|
||||||
WinterCampActivityDetailInfo winter_camp_info = 1083;
|
WinterCampActivityDetailInfo winter_camp_info = 699;
|
||||||
PotionActivityDetailInfo potion_info = 1273;
|
PotionActivityDetailInfo potion_info = 1567;
|
||||||
TanukiTravelActivityDetailInfo tanuki_travel_activity_info = 1796;
|
TanukiTravelActivityDetailInfo tanuki_travel_activity_info = 1348;
|
||||||
LanternRiteActivityDetailInfo lantern_rite_activity_info = 1876;
|
LanternRiteActivityDetailInfo lantern_rite_activity_info = 237;
|
||||||
MichiaeMatsuriActivityDetailInfo michiae_matsuri_info = 194;
|
MichiaeMatsuriActivityDetailInfo michiae_matsuri_info = 1839;
|
||||||
BartenderActivityDetailInfo bartender_info = 1725;
|
BartenderActivityDetailInfo bartender_info = 551;
|
||||||
UgcActivityDetailInfo ugc_info = 703;
|
UgcActivityDetailInfo ugc_info = 1182;
|
||||||
CrystalLinkActivityDetailInfo crystal_link_info = 1226;
|
CrystalLinkActivityDetailInfo crystal_link_info = 812;
|
||||||
IrodoriActivityDetailInfo irodori_info = 750;
|
IrodoriActivityDetailInfo irodori_info = 1056;
|
||||||
PhotoActivityDetailInfo photo_info = 328;
|
PhotoActivityDetailInfo photo_info = 1822;
|
||||||
SpiceActivityDetailInfo spice_info = 1891;
|
SpiceActivityDetailInfo spice_info = 789;
|
||||||
GachaActivityDetailInfo gacha_info = 825;
|
GachaActivityDetailInfo gacha_info = 1297;
|
||||||
LuminanceStoneChallengeActivityDetailInfo luminance_stone_challenge_info = 1308;
|
LuminanceStoneChallengeActivityDetailInfo luminance_stone_challenge_info = 444;
|
||||||
RogueDiaryActivityDetailInfo rogue_diary_info = 812;
|
RogueDiaryActivityDetailInfo rogue_diary_info = 560;
|
||||||
SummerTimeV2DetailInfo summer_time_v2_info = 622;
|
SummerTimeV2DetailInfo summer_time_v2_info = 411;
|
||||||
IslandPartyDetailInfo island_party_info = 1885;
|
IslandPartyDetailInfo island_party_info = 740;
|
||||||
GearActivityDetailInfo gear_info = 722;
|
GearActivityDetailInfo gear_info = 1482;
|
||||||
GravenInnocenceDetailInfo graven_innocence_info = 1911;
|
GravenInnocenceDetailInfo graven_innocence_info = 1928;
|
||||||
InstableSprayDetailInfo instable_spray_info = 1043;
|
InstableSprayDetailInfo instable_spray_info = 1145;
|
||||||
MuqadasPotionActivityDetailInfo muqadas_potion_info = 1157;
|
MuqadasPotionActivityDetailInfo muqadas_potion_info = 1662;
|
||||||
TreasureSeelieActivityDetailInfo treasure_seelie_info = 966;
|
TreasureSeelieActivityDetailInfo treasure_seelie_info = 1032;
|
||||||
RockBoardExploreDetailInfo rock_board_explore_info = 1078;
|
RockBoardExploreDetailInfo rock_board_explore_info = 1265;
|
||||||
VintageDetailInfo vintage_info = 445;
|
VintageActivityDetailInfo vintage_info = 1308;
|
||||||
WindFieldDetailInfo wind_field_info = 352;
|
WindFieldDetailInfo wind_field_info = 468;
|
||||||
FungusFighterDetailInfo fungus_fighter_info = 490;
|
FungusFighterDetailInfo fungus_fighter_info = 1757;
|
||||||
CharAmusementDetailInfo char_amusement_info = 1496;
|
CharAmusementDetailInfo char_amusement_info = 621;
|
||||||
EffigyChallengeV2DetailInfo effigy_challenge_info = 1025;
|
EffigyChallengeV2DetailInfo effigy_challenge_info = 233;
|
||||||
|
CoinCollectDetailInfo coin_collect_info = 2002;
|
||||||
|
BrickBreakerDetailInfo brick_breaker_info = 1522;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,10 +21,15 @@ import "ActivityInfo.proto";
|
||||||
|
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
// CmdId: 2060
|
|
||||||
// EnetChannelId: 0
|
|
||||||
// EnetIsReliable: true
|
|
||||||
// IsAllowClient: true
|
|
||||||
message ActivityInfoNotify {
|
message ActivityInfoNotify {
|
||||||
ActivityInfo activity_info = 9;
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2119;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
ActivityInfo activity_info = 12;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityNullDetailInfo {
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
// Proto has been converted from Sorapointa to Grasscutter format
|
||||||
|
// 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";
|
||||||
|
|
||||||
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
|
message ActivityPlayOpenAnimNotify {
|
||||||
|
// enum CmdId {
|
||||||
|
// option allow_alias = true;
|
||||||
|
// NONE = 0;
|
||||||
|
// CMD_ID = 2059;
|
||||||
|
// ENET_CHANNEL_ID = 0;
|
||||||
|
// ENET_IS_RELIABLE = 1;
|
||||||
|
// IS_ALLOW_CLIENT = 1;
|
||||||
|
// }
|
||||||
|
|
||||||
|
uint32 activity_id = 1;
|
||||||
|
}
|
|
@ -22,6 +22,6 @@ import "ActivityPushTipsState.proto";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
message ActivityPushTipsData {
|
message ActivityPushTipsData {
|
||||||
ActivityPushTipsState state = 10;
|
uint32 activity_push_tips_id = 14;
|
||||||
uint32 activity_push_tips_id = 4;
|
ActivityPushTipsState state = 3;
|
||||||
}
|
}
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue