This commit is contained in:
Skagra42 2026-09-20 15:39:03 -07:00 committed by GitHub
commit 3ccfc1f4ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 124 additions and 3 deletions

View file

@ -7,4 +7,5 @@ enum CardAttribute {
AttrPT = 5;
AttrAnnotation = 6;
AttrDoesntUntap = 7;
AttrDoesntUntapOnce = 8;
}

View file

@ -53,4 +53,7 @@ message ServerInfo_Card {
// unique id of this kind of card, extends the name to specify a specific printing of a card
optional string provider_id = 17;
// whether the card should not be untapped during its controller's next turn
optional bool doesnt_untap_once = 18;
}