Skip to content

Commit

Permalink
Readd addattack2
Browse files Browse the repository at this point in the history
  • Loading branch information
narumi147 authored Jan 15, 2025
1 parent 1266b6a commit 6dc6f61
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/schemas/gameenums.py
Original file line number Diff line number Diff line change
Expand Up @@ -2356,6 +2356,7 @@ class CardType(IntEnum):
BLANK = 5
WEAK = 10
STRENGTH = 11
ADDATTACK2 = 104


class NiceCardType(StrEnum):
Expand All @@ -2369,6 +2370,7 @@ class NiceCardType(StrEnum):
blank = "blank"
weak = "weak"
strength = "strength"
addattack2 = "addattack2"


CARD_TYPE_NAME: dict[int, NiceCardType] = {
Expand All @@ -2380,6 +2382,7 @@ class NiceCardType(StrEnum):
5: NiceCardType.blank,
10: NiceCardType.weak,
11: NiceCardType.strength,
104: NiceCardType.addattack2,
}


Expand Down

0 comments on commit 6dc6f61

Please # to comment.