75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
package resource
|
|
|
|
const (
|
|
TypeAvatarFrame = "avatar_frame"
|
|
TypeProfileCard = "profile_card"
|
|
TypeCoin = "coin"
|
|
TypeVehicle = "vehicle"
|
|
TypeChatBubble = "chat_bubble"
|
|
TypeBadge = "badge"
|
|
TypeFloatingScreen = "floating_screen"
|
|
TypeGift = "gift"
|
|
TypeMicSeatIcon = "mic_seat_icon"
|
|
TypeMicSeatAnimation = "mic_seat_animation"
|
|
TypeEmojiPack = "emoji_pack"
|
|
|
|
StatusActive = "active"
|
|
StatusDisabled = "disabled"
|
|
|
|
GrantStrategyWalletCredit = "wallet_credit"
|
|
GrantStrategyNewEntitlement = "new_entitlement"
|
|
GrantStrategyExtendExpiry = "extend_expiry"
|
|
GrantStrategyIncreaseQuantity = "increase_quantity"
|
|
GrantStrategySetActiveFlag = "set_active_flag"
|
|
|
|
GrantSubjectResource = "resource"
|
|
GrantSubjectGroup = "resource_group"
|
|
|
|
GrantSourceAdmin = "admin"
|
|
GrantSourceManagerCenter = "manager_center"
|
|
GrantSourceGrowthLevel = "growth_level"
|
|
GrantSourceAchievement = "achievement"
|
|
GrantSourceResourceShop = "resource_shop"
|
|
GrantSourceGameRobotInit = "game_robot_init"
|
|
GrantStatusDone = "succeeded"
|
|
GrantStatusRevoked = "revoked"
|
|
ResultWalletCredit = "wallet_credit"
|
|
ResultEntitlement = "entitlement"
|
|
|
|
GroupItemTypeResource = "resource"
|
|
GroupItemTypeWalletAsset = "wallet_asset"
|
|
|
|
GiftTypeNormal = "normal"
|
|
GiftTypeCP = "cp"
|
|
GiftTypeLucky = "lucky"
|
|
GiftTypeSuperLucky = "super_lucky"
|
|
GiftTypeExclusive = "exclusive"
|
|
GiftTypeNoble = "noble"
|
|
GiftTypeFlag = "flag"
|
|
GiftTypeActivity = "activity"
|
|
GiftTypeMagic = "magic"
|
|
GiftTypeCustom = "custom"
|
|
|
|
GiftTypeTabKeyNormal = "Gift"
|
|
GiftTypeTabKeyCP = "CP"
|
|
GiftTypeTabKeyLucky = "Lucky"
|
|
GiftTypeTabKeySuperLucky = "Super Lucky"
|
|
GiftTypeTabKeyExclusive = "Exclusive"
|
|
GiftTypeTabKeyNoble = "Noble"
|
|
GiftTypeTabKeyFlag = "Flag"
|
|
GiftTypeTabKeyActivity = "Activity"
|
|
GiftTypeTabKeyMagic = "Magic"
|
|
GiftTypeTabKeyCustom = "Custom"
|
|
|
|
GiftEffectAnimation = "animation"
|
|
GiftEffectMusic = "music"
|
|
GiftEffectGlobalBroadcast = "global_broadcast"
|
|
|
|
PriceTypeCoin = "coin"
|
|
PriceTypeFree = "free"
|
|
|
|
ShopDurationOneDay int32 = 1
|
|
ShopDurationThreeDays int32 = 3
|
|
ShopDurationSevenDays int32 = 7
|
|
)
|