Skip to content

Commit

Permalink
Updated exchange_svt_coin enum
Browse files Browse the repository at this point in the history
  • Loading branch information
narumi147 committed Dec 4, 2024
1 parent ad07797 commit 9ed971a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/schemas/gameenums.py
Original file line number Diff line number Diff line change
Expand Up @@ -1970,7 +1970,7 @@ class ItemType(IntEnum):
BATTLE_ITEM = 35
ANIPLEX_PLUS_CHARGE_STONE = 36
PURE_PRI_SHOP_RESET = 37
SHOP17_ITEM = 38
EXCHANGE_SVT_COIN = 38
REDUCE_TRADE_TIME = 39


Expand Down Expand Up @@ -2014,7 +2014,7 @@ class NiceItemType(StrEnum):
battleItem = "battleItem"
aniplexPlusChargeStone = "aniplexPlusChargeStone"
purePriShopReset = "purePriShopReset"
shop17Item = "shop17Item"
exchangeSvtCoin = "exchangeSvtCoin"
reduceTradeTime = "reduceTradeTime"


Expand Down Expand Up @@ -2056,7 +2056,7 @@ class NiceItemType(StrEnum):
35: NiceItemType.battleItem,
36: NiceItemType.aniplexPlusChargeStone,
37: NiceItemType.purePriShopReset,
38: NiceItemType.shop17Item,
38: NiceItemType.exchangeSvtCoin,
39: NiceItemType.reduceTradeTime,
}

Expand Down Expand Up @@ -2139,7 +2139,7 @@ class ShopType(IntEnum):
TRADE_AP = 14
REVIVAL_ITEM = 15
EVENT_SVT_EQUIP = 16
SHOP17 = 17
EXCHANGE_SVT_COIN = 17


class NiceShopType(StrEnum):
Expand All @@ -2162,7 +2162,7 @@ class NiceShopType(StrEnum):
tradeAp = "tradeAp"
revivalItem = "revivalItem"
eventSvtEquip = "eventSvtEquip"
shop17 = "shop17"
exchangeSvtCoin = "exchangeSvtCoin"


SHOP_TYPE_NAME: dict[int, NiceShopType] = {
Expand All @@ -2183,7 +2183,7 @@ class NiceShopType(StrEnum):
14: NiceShopType.tradeAp,
15: NiceShopType.revivalItem,
16: NiceShopType.eventSvtEquip,
17: NiceShopType.shop17,
17: NiceShopType.exchangeSvtCoin,
}


Expand Down

0 comments on commit 9ed971a

Please sign in to comment.