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

37
proto/pb/cs_gem.proto Normal file
View File

@@ -0,0 +1,37 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
import "options.proto";
import "common.proto";
message CS_GEM_RECAST {
string formula_id = 1;
int32 count = 2;
repeated uint64 cost_gem_inst_ids = 3;
}
message SC_GEM_RECAST {
string formula_id = 1;
int32 count = 2;
repeated uint64 gem_inst_ids = 3;
}
message CS_GEM_ENHANCE {
uint64 enhance_gem_inst_id = 1;
int32 term_id = 2;
uint64 cost_gem_inst_id = 3;
bool use_enhancement_item = 4;
}
message SC_GEM_ENHANCE {
uint64 gem_inst_id = 1;
repeated GEM_TERM terms = 2;
bool is_success = 3;
REWARD_ITEM refund_item = 4;
}
message CS_GEM_DISMANTLE {
repeated uint64 gem_inst_ids = 1;
}
message SC_GEM_DISMANTLE {
repeated REWARD_ITEM refund_items = 1;
repeated REWARD_ITEM refund_money = 2;
}