Skip to content

Commit

Permalink
Temp add CardType.ADDATTACK2
Browse files Browse the repository at this point in the history
  • Loading branch information
narumi147 committed Dec 24, 2024
1 parent 2dce88b commit 6b681d8
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 @@ -2355,6 +2355,7 @@ class CardType(IntEnum):
BLANK = 5
WEAK = 10
STRENGTH = 11
ADDATTACK2 = 104


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


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


Expand Down

0 comments on commit 6b681d8

Please sign in to comment.