mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 06:55:06 +01:00
Release 0.1.0
This commit is contained in:
64
proto/pb/cs_equip.proto
Normal file
64
proto/pb/cs_equip.proto
Normal file
@@ -0,0 +1,64 @@
|
||||
syntax = "proto3";
|
||||
package proto;
|
||||
|
||||
option go_package = "/csproto";
|
||||
|
||||
import "common.proto";
|
||||
import "options.proto";
|
||||
|
||||
message CS_EQUIP_PUTON {
|
||||
uint64 charid = 1;
|
||||
int32 slotid = 2;
|
||||
uint64 equipid = 3;
|
||||
}
|
||||
message SC_EQUIP_PUTON {
|
||||
uint64 charid = 1;
|
||||
int32 slotid = 2;
|
||||
uint64 equipid = 3;
|
||||
map<string, int32> suitinfo = 4;
|
||||
uint64 put_off_charid = 5;
|
||||
map<string, int32> old_owner_suitinfo = 6;
|
||||
}
|
||||
message CS_EQUIP_PUTOFF {
|
||||
uint64 charid = 1;
|
||||
int32 slotid = 2;
|
||||
}
|
||||
message SC_EQUIP_PUTOFF {
|
||||
uint64 charid = 1;
|
||||
int32 slotid = 2;
|
||||
map<string, int32> suitinfo = 3;
|
||||
}
|
||||
message CS_EQUIP_MEDICINE_MODIFY {
|
||||
uint64 char_id = 1;
|
||||
int32 equip_medicine_id = 2;
|
||||
}
|
||||
message SC_EQUIP_MEDICINE_MODIFY {
|
||||
uint64 char_id = 1;
|
||||
int32 equip_medicine_id = 2;
|
||||
}
|
||||
message CS_EQUIP_RECYCLE {
|
||||
repeated uint64 equip_instid_list = 1;
|
||||
int32 scope_name = 2;
|
||||
}
|
||||
message SC_EQUIP_RECYCLE {
|
||||
repeated uint64 equip_instid_list = 1;
|
||||
repeated string item_id = 2;
|
||||
repeated int32 item_count = 3;
|
||||
int32 scope_name = 4;
|
||||
}
|
||||
message CS_EQUIP_ENHANCE {
|
||||
uint64 equip_inst_id = 1;
|
||||
uint64 ingredient_inst_id = 2;
|
||||
int32 attr_index = 3;
|
||||
}
|
||||
message SC_EQUIP_ENHANCE {
|
||||
uint64 equip_inst_id = 1;
|
||||
EQUIP_DATA equip_data = 2;
|
||||
}
|
||||
message CS_EQUIP_PRODUCE {
|
||||
string formula_id = 1;
|
||||
}
|
||||
message SC_EQUIP_PRODUCE {
|
||||
string formula_id = 1;
|
||||
uint64 equip_instid = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user