Release 0.1.0

This commit is contained in:
xeon
2026-02-02 20:53:22 +03:00
commit 25660300dd
152 changed files with 882089 additions and 0 deletions

33
proto/pb/cs_red_dot.proto Normal file
View File

@@ -0,0 +1,33 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
import "options.proto";
message REMOVE_ITEM_NEW_DATA {
int32 depot_type = 1;
repeated uint64 inst_ids = 2;
}
message CS_REMOVE_ITEM_NEW_TAGS {
repeated uint32 item_ids = 1;
repeated REMOVE_ITEM_NEW_DATA inst_data = 2;
}
message SC_REMOVE_ITEM_NEW_TAGS {
}
message CS_RED_DOT_READ_FORMULA {
repeated uint32 formula_ids = 1;
}
message CS_RED_DOT_READ_CHAR_DOC {
repeated uint32 ids = 1;
}
message CS_RED_DOT_READ_CHAR_VOICE {
repeated uint32 ids = 1;
}
message CS_RED_DOT_READ_EQUIP_FORMULA {
uint32 id = 1;
repeated uint32 ids = 2;
}
message CS_RED_DOT_READ_WEEK_RAID_MISSION {
repeated uint32 mission_ids = 1;
}