Commit 8e44e8dc authored by Chunchi Che's avatar Chunchi Che

and some msg

parent e477dc8a
Pipeline #21096 passed with stage
in 34 seconds
......@@ -681,6 +681,49 @@ message StocGameMessage {
repeated Info options = 2;
}
// 盖放卡片
message MsgSet {}
// 控制权改变
message MsgSwap {}
// 普通召唤宣言
message MsgSummoning {
int32 code = 1;
CardLocation location = 2;
}
// 普通召唤
message MsgSummoned {}
// 反转召唤宣言
message MsgFlipSummoning {
int32 code = 1;
CardLocation location = 2;
}
// 反转召唤
message MsgFlipSummoned {}
// 特殊转换宣言
message MsgSpSummoning {
int32 code = 1;
CardLocation location = 2;
}
// 特殊转换
message MsgSpSummoned {}
// 连锁中
message MsgChaining {
int32 code = 1;
CardLocation location = 2;
}
message MsgAttack { CardLocation location = 1; }
message MsgAttackDisabled {}
// 断线重连
message MsgReloadField {
message ZoneAction {
......@@ -738,5 +781,16 @@ message StocGameMessage {
MsgUpdateCounter update_counter = 27;
MsgSelectCounter select_counter = 28;
MsgSortCard sort_card = 29;
MsgSet set = 30;
MsgSwap swap = 31;
MsgSummoning summoning = 32;
MsgSummoned summoned = 33;
MsgFlipSummoning flip_summoning = 34;
MsgFlipSummoned flip_summoned = 35;
MsgSpSummoning sp_summoning = 36;
MsgSpSummoned sp_summoned = 37;
MsgChaining chaining = 38;
MsgAttack attack = 39;
MsgAttackDisabled attack_disable = 40;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment