10 lines
191 B
Protocol Buffer
10 lines
191 B
Protocol Buffer
syntax = "proto2";
|
|
enum CardAttribute {
|
|
AttrTapped = 1;
|
|
AttrAttacking = 2;
|
|
AttrFaceDown = 3;
|
|
AttrColor = 4;
|
|
AttrPT = 5;
|
|
AttrAnnotation = 6;
|
|
AttrDoesntUntap = 7;
|
|
}
|