Progress.

This commit is contained in:
Skagra42 2026-08-12 01:53:59 -06:00
parent be2883ff01
commit 76c4556289
15 changed files with 81 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;
}