mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-26 16:43:55 -07:00
more PB
This commit is contained in:
parent
ca9122b9fb
commit
10018280e5
20 changed files with 970 additions and 1178 deletions
|
|
@ -1,10 +1,10 @@
|
|||
import "serverinfo_cardcounter.proto";
|
||||
|
||||
message ServerInfo_Card {
|
||||
optional sint32 id = 1;
|
||||
optional sint32 id = 1 [default = -1];
|
||||
optional string name = 2;
|
||||
optional sint32 x = 3;
|
||||
optional sint32 y = 4;
|
||||
optional sint32 x = 3 [default = -1];
|
||||
optional sint32 y = 4 [default = -1];
|
||||
optional bool face_down = 5;
|
||||
optional bool tapped = 6;
|
||||
optional bool attacking = 7;
|
||||
|
|
@ -14,7 +14,7 @@ message ServerInfo_Card {
|
|||
optional bool destroy_on_zone_change = 11;
|
||||
optional bool doesnt_untap = 12;
|
||||
repeated ServerInfo_CardCounter counter_list = 13;
|
||||
optional sint32 attach_player_id = 14;
|
||||
optional sint32 attach_player_id = 14 [default = -1];
|
||||
optional string attach_zone = 15;
|
||||
optional sint32 attach_card_id = 16;
|
||||
optional sint32 attach_card_id = 16 [default = -1];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue