mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-29 22:21:37 -08:00
13 lines
293 B
Protocol Buffer
13 lines
293 B
Protocol Buffer
import "game_event.proto";
|
|
|
|
message Event_AttachCard {
|
|
extend GameEvent {
|
|
optional Event_AttachCard ext = 2012;
|
|
}
|
|
optional string start_zone = 1;
|
|
optional sint32 card_id = 2;
|
|
optional sint32 target_player_id = 3;
|
|
optional string target_zone = 4;
|
|
optional sint32 target_card_id = 5;
|
|
}
|