constant

package
v1.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 11, 2024 License: AGPL-3.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

View Source
const (
	CommAndTest    = 1
	SetWorldLevel  = 1001
	GetPlayerDb    = 1002
	Status         = 1003
	Give           = 1004
	GiveRelic      = 1005
	AddMail        = 1006
	SetJumpMission = 1007
)
View Source
const (
	MailAvatar   = 1 // 角色
	MailMaterial = 2 // 材料
)

邮件奖励类型

Variables

This section is empty.

Functions

This section is empty.

Types

type AcceptApplyFriend added in v1.5.0

type AcceptApplyFriend struct {
	Uid               uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	AcceptApplyFriend []byte
}

type Account added in v1.5.0

type Account struct {
	AccountId  uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	Username   string
	Token      string
	CreateTime int64
}

type AppList added in v1.5.0

type AppList struct {
	App        map[string]AppNet `json:"app"`
	RegionName string            `json:"region_name"`
	MqAddr     string            `json:"mq_addr"`
}

type AppNet added in v1.5.0

type AppNet struct {
	InnerAddr string `json:"InnerAddr"`
	InnerPort string `json:"InnerPort"`
	OuterAddr string `json:"OuterAddr"`
	OuterPort string `json:"OuterPort"`
}

type ApplyFriend added in v1.5.0

type ApplyFriend struct {
	Uid          uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	ReceiveApply []byte
}

type AttackDamageType added in v1.3.1

type AttackDamageType = string
const (
	AttackDamageTypeUnknow    AttackDamageType = "Unknow"
	AttackDamageTypePhysical  AttackDamageType = "Physical"
	AttackDamageTypeFire      AttackDamageType = "Fire"
	AttackDamageTypeIce       AttackDamageType = "Ice"
	AttackDamageTypeThunder   AttackDamageType = "Thunder"
	AttackDamageTypeWind      AttackDamageType = "Wind"
	AttackDamageTypeQuantum   AttackDamageType = "Quantum"
	AttackDamageTypeImaginary AttackDamageType = "Imaginary"
	AttackDamageTypeHeal      AttackDamageType = "Heal"
	AttackDamageTypeAllType   AttackDamageType = "AllType"
)

type BlockData added in v1.5.0

type BlockData struct {
	Uid         uint32 `gorm:"primaryKey"`
	EntryId     uint32 `gorm:"primaryKey"`
	DataVersion uint32
	BinData     []byte
}

type Check added in v1.5.0

type Check struct {
	Data    *CheckData `json:"data"`
	Message string     `json:"message"`
	Retcode any        `json:"retcode"`
}

type CheckData added in v1.5.0

type CheckData struct {
	Id      string   `json:"id"`
	Action  string   `json:"action"`
	Geetest *Geetest `json:"geetest"`
}

type ComboTokenReq added in v1.5.0

type ComboTokenReq struct {
	AppID     any    `json:"app_id"`
	ChannelID any    `json:"channel_id"`
	Data      string `json:"data"`
	Device    string `json:"device"`
	Sign      string `json:"sign"`
}

type ComboTokenReqLoginTokenData added in v1.5.0

type ComboTokenReqLoginTokenData struct {
	Uid   string `json:"uid"`
	Token string `json:"token"`
	Guest bool   `json:"guest"`
}

type ComboTokenRsp added in v1.5.0

type ComboTokenRsp struct {
	Retcode int                     `json:"retcode"`
	Message string                  `json:"message"`
	Data    *ComboTokenRspLoginData `json:"data"`
}

type ComboTokenRspLoginData added in v1.5.0

type ComboTokenRspLoginData struct {
	ComboID       string      `json:"combo_id"`
	OpenID        string      `json:"open_id"`
	ComboToken    string      `json:"combo_token"`
	Data          string      `json:"data"`
	Heartbeat     bool        `json:"heartbeat"`
	AccountType   int         `json:"account_type"`
	FatigueRemind interface{} `json:"fatigue_remind"`
}

type FinishActionType

type FinishActionType string // 自动执行类型
const (
	Recover                         FinishActionType = "Recover"
	ChangeLineup                    FinishActionType = "ChangeLineup"
	AddHeroItem                     FinishActionType = "addHeroItem"
	AddMissionItem                  FinishActionType = "addMissionItem"
	DelMissionItem                  FinishActionType = "delMissionItem"
	AddRecoverMissionItem           FinishActionType = "addRecoverMissionItem"
	DelMission                      FinishActionType = "delMission"
	ActivateGameplayCounter         FinishActionType = "ActivateGameplayCounter"
	DeactivateGameplayCounter       FinishActionType = "DeactivateGameplayCounter"
	DelSubMission                   FinishActionType = "delSubMission"
	RandomCustomValue               FinishActionType = "RandomCustomValue"
	CompensateMissionItem           FinishActionType = "CompensateMissionItem"
	RecycleMissionItem              FinishActionType = "RecycleMissionItem"
	DisableMission                  FinishActionType = "DisableMission"
	SetFloorSavedValue              FinishActionType = "SetFloorSavedValue"
	SetGroupState                   FinishActionType = "SetGroupState"
	EnterEntryIfNotThere            FinishActionType = "EnterEntryIfNotThere"
	SetCustomValue                  FinishActionType = "SetCustomValue"
	AddCustomValue                  FinishActionType = "AddCustomValue"
	FATChangeStoryLine              FinishActionType = "ChangeStoryLine"
	MoveToAnchor                    FinishActionType = "MoveToAnchor"
	ActivateAnchor                  FinishActionType = "ActivateAnchor"
	TeleportRotatableRegion         FinishActionType = "TeleportRotatableRegion"
	ChangeHeroBasicTypeAndSetLeader FinishActionType = "ChangeHeroBasicTypeAndSetLeader"
)

type FormulaType added in v1.3.1

type FormulaType = string
const (
	FormulaTypeUnknown       FormulaType = "Unknown"
	FormulaTypeNormal        FormulaType = "Normal"
	FormulaTypeSepcial       FormulaType = "Sepcial"
	FormulaTypeSelectedRelic FormulaType = "SelectedRelic"
)

type FuncType added in v1.3.1

type FuncType = string
const (
	FuncTypeUnknown FuncType = "Unknown"
	FuncTypeCompose FuncType = "Compose"
	FuncTypeReplace FuncType = "Replace"
)

type Geetest added in v1.5.0

type Geetest struct {
	Challenge  string `json:"challenge"`
	Gt         string `json:"gt"`
	NewCaptcha string `json:"new_captcha"`
	Success    string `json:"success"`
}

type GranterApiGetConfig added in v1.5.0

type GranterApiGetConfig struct {
	Data    *GranterApiGetConfigData `json:"data"`
	Message string                   `json:"message"`
	Retcode any                      `json:"retcode"`
}

type GranterApiGetConfigData added in v1.5.0

type GranterApiGetConfigData struct {
	Protocol                bool          `json:"protocol"`
	QrEnabled               bool          `json:"qr_enabled"`
	LogLevel                string        `json:"log_level"`
	AnnounceURL             string        `json:"announce_url"`
	PushAliasType           int           `json:"push_alias_type"`
	DisableYsdkGuard        bool          `json:"disable_ysdk_guard"`
	EnableAnnouncePicPopup  bool          `json:"enable_announce_pic_popup"`
	AppName                 string        `json:"app_name"`
	QrEnabledApps           QrEnabledApps `json:"qr_enabled_apps"`
	QrAppIcons              QrAppIcons    `json:"qr_app_icons"`
	QrCloudDisplayName      string        `json:"qr_cloud_display_name"`
	EnableUserCenter        bool          `json:"enable_user_center"`
	FunctionalSwitchConfigs []string      `json:"functional_switch_configs"`
}

type Item added in v1.5.0

type Item struct {
	ItemType uint32 // 类型
	ItemId   uint32 // id
	Num      uint32 // 数量
}

type ItemFoodUseTag added in v1.4.0

type ItemFoodUseTag = string
const (
	ItemFoodUseTagHP ItemFoodUseTag = "HP"
	ItemFoodUseTagBP ItemFoodUseTag = "BP"
	ItemFoodUseTagSP ItemFoodUseTag = "SP"
)

type ItemSubType added in v1.3.1

type ItemSubType = string
const (
	ItemSubTypeUnknown               ItemSubType = "Unknown"
	ItemSubTypeVirtual               ItemSubType = "Virtual"
	ItemSubTypeGameplayCounter       ItemSubType = "GameplayCounter"
	ItemSubTypeAvatarCard            ItemSubType = "AvatarCard"
	ItemSubTypeEquipment             ItemSubType = "Equipment"
	ItemSubTypeRelic                 ItemSubType = "Relic"
	ItemSubTypeGift                  ItemSubType = "Gift"
	ItemSubTypeFood                  ItemSubType = "Food"
	ItemSubTypeForceOpitonalGift     ItemSubType = "ForceOpitonalGift"
	ItemSubTypeBook                  ItemSubType = "Book"
	ItemSubTypeHeadIcon              ItemSubType = "HeadIcon"
	ItemSubTypeMusicAlbum            ItemSubType = "MusicAlbum"
	ItemSubTypeFormula               ItemSubType = "Formula"
	ItemSubTypeChatBubble            ItemSubType = "ChatBubble"
	ItemSubTypeAvatarSkin            ItemSubType = "AvatarSkin"
	ItemSubTypePhoneTheme            ItemSubType = "PhoneTheme"
	ItemSubTypeTravelBrochurePaster  ItemSubType = "TravelBrochurePaster"
	ItemSubTypeChessRogueDiceSurface ItemSubType = "ChessRogueDiceSurface"
	ItemSubTypeRogueMedal            ItemSubType = "RogueMedal"
	ItemSubTypeMaterial              ItemSubType = "Material"
	ItemSubTypeEidolon               ItemSubType = "Eidolon"
	ItemSubTypeMuseumExhibit         ItemSubType = "MuseumExhibit"
	ItemSubTypeMuseumStuff           ItemSubType = "MuseumStuff"
	ItemSubTypeAetherSkill           ItemSubType = "AetherSkill"
	ItemSubTypeAetherSpirit          ItemSubType = "AetherSpirit"
	ItemSubTypeMission               ItemSubType = "Mission"
	ItemSubTypeRelicSetShowOnly      ItemSubType = "RelicSetShowOnly"
	ItemSubTypeRelicRarityShowOnly   ItemSubType = "RelicRarityShowOnly"
)

type LimitType added in v1.3.1

type LimitType = string
const (
	LimitTypeNull              LimitType = "Null"
	LimitTypeLevel             LimitType = "Level"
	LimitTypeMainMission       LimitType = "MainMission"
	LimitTypeEventMission      LimitType = "EventMission"
	LimitTypeWorldLevel        LimitType = "WorldLevel"
	LimitTypePreGoods          LimitType = "PreGoods"
	LimitTypeHasNoRefreshGoods LimitType = "HasNoRefreshGoods"
	LimitTypeSubMission        LimitType = "SubMission"
)

type Login added in v1.5.0

type Login struct {
	Data    *LoginData `json:"data"`
	Message string     `json:"message"`
	Retcode any        `json:"retcode"`
}

type LoginAccount added in v1.5.0

type LoginAccount struct {
	UID               string `json:"uid"`
	Name              string `json:"name"`
	Email             string `json:"email"`
	Mobile            string `json:"mobile"`
	IsEmailVerify     string `json:"is_email_verify"`
	Realname          string `json:"realname"`
	IdentityCard      string `json:"identity_card"`
	Token             string `json:"token"`
	SafeMobile        string `json:"safe_mobile"`
	FacebookName      string `json:"facebook_name"`
	GoogleName        string `json:"google_name"`
	TwitterName       string `json:"twitter_name"`
	GameCenterName    string `json:"game_center_name"`
	AppleName         string `json:"apple_name"`
	SonyName          string `json:"sony_name"`
	TapName           string `json:"tap_name"`
	Country           string `json:"country"`
	ReactivateTicket  string `json:"reactivate_ticket"`
	AreaCode          string `json:"area_code"`
	DeviceGrantTicket string `json:"device_grant_ticket"`
	SteamName         string `json:"steam_name"`
	UnmaskedEmail     string `json:"unmasked_email"`
	UnmaskedEmailType int    `json:"unmasked_email_type"`
}

type LoginAccountRequestJson added in v1.5.0

type LoginAccountRequestJson struct {
	Account  string `json:"account"`
	Password string `json:"password"`
	IsCrypto bool   `json:"is_crypto"`
}

type LoginData added in v1.5.0

type LoginData struct {
	Account             *LoginAccount `json:"account"`
	DeviceGrantRequired bool          `json:"device_grant_required"`
	SafeMoblieRequired  bool          `json:"safe_moblie_required"`
	RealpersonRequired  bool          `json:"realperson_required"`
	ReactivateRequired  bool          `json:"reactivate_required"`
	RealnameOperation   string        `json:"realname_operation"`
}

type LoginTokenRequest added in v1.5.0

type LoginTokenRequest struct {
	Uid   string `json:"uid"`
	Token string `json:"token"`
}

type Mail added in v1.5.0

type Mail struct {
	Id        uint32       `gorm:"primarykey;AUTO_INCREMENT"` // 邮件id
	Title     string       // 邮件标题
	Sender    string       // 发件人
	BeginTime sql.NullTime // 开始时间
	EndTime   sql.NullTime // 结束时间
	Content   string       // 内容
	Item      string       // 邮件附件
	ItemList  []*Item      `gorm:"-"`
}

全服邮件

type MissionBeginType

type MissionBeginType string
const (
	MissionBeginTypeUnknown                    MissionBeginType = "Unknown"
	MissionBeginTypeAuto                       MissionBeginType = "Auto"
	MissionBeginTypeManual                     MissionBeginType = "Manual"
	MissionBeginTypeClient                     MissionBeginType = "Client"
	MissionBeginTypeMultiSequence              MissionBeginType = "MultiSequence"
	MissionBeginTypePlayerLevel                MissionBeginType = "PlayerLevel"
	MissionBeginTypeWorldLevel                 MissionBeginType = "WorldLevel"
	MissionBeginTypeMultiEvent                 MissionBeginType = "MultiEvent"
	MissionBeginTypeMBTHeroPathLevel           MissionBeginType = "HeroPathLevel"
	MissionBeginTypeSequenceNextDay            MissionBeginType = "SequenceNextDay"
	MissionBeginTypeCustomValue                MissionBeginType = "CustomValue"
	MissionBeginTypeAnySequence                MissionBeginType = "AnySequence"
	MissionBeginTypeMuseumPhaseRenewPointReach MissionBeginType = "MuseumPhaseRenewPointReach"
	MissionBeginTypeHeliobusPhaseReach         MissionBeginType = "HeliobusPhaseReach"
)

type MysqlConf added in v1.5.0

type MysqlConf struct {
	Dsn string `json:"dsn"`
}

type PlayerBasic added in v1.5.0

type PlayerBasic struct {
	Uid     uint32 `gorm:"primaryKey"`
	BinData []byte
}

type PlayerData added in v1.5.0

type PlayerData struct {
	Uid         uint32 `gorm:"primarykey"`
	Nickname    string
	Level       uint32
	Exp         uint32
	DataVersion uint32
	BinData     []byte
}

type PlayerMail added in v1.5.0

type PlayerMail struct {
	Uid       uint32       `gorm:"primarykey;AUTO_INCREMENT"` // uid
	Id        uint32       `gorm:"primarykey;AUTO_INCREMENT"` // 邮件id
	Title     string       // 邮件标题
	Sender    string       // 发件人
	BeginTime sql.NullTime // 开始时间
	EndTime   sql.NullTime // 结束时间
	Content   string       // 内容
	Item      string       // 邮件附件
	ItemList  []*Item      `gorm:"-"`
}

玩家邮件

type PlayerUid added in v1.5.0

type PlayerUid struct {
	Uid          uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	AccountType  uint32
	AccountId    uint32
	ComboToken   string
	CreateTime   int64
	IsBan        bool
	BanBeginTime int64
	BanEndTime   int64
	BanMsg       string
}

type QrAppIcons added in v1.5.0

type QrAppIcons struct {
	App   string `json:"app"`
	Bbs   string `json:"bbs"`
	Cloud string `json:"cloud"`
}

type QrEnabledApps added in v1.5.0

type QrEnabledApps struct {
	Bbs   bool `json:"bbs"`
	Cloud bool `json:"cloud"`
}

type QuestFinishType

type QuestFinishType string
const (
	Unknown                                            QuestFinishType = "Unknown"
	AutoFinish                                         QuestFinishType = "AutoFinish"
	Talk                                               QuestFinishType = "Talk"
	StageWin                                           QuestFinishType = "StageWin"
	EnterRegion                                        QuestFinishType = "EnterRegion"
	PropState                                          QuestFinishType = "PropState"
	ItemNum                                            QuestFinishType = "ItemNum"
	BuyShopGoods                                       QuestFinishType = "BuyShopGoods"
	FinishMission                                      QuestFinishType = "FinishMission"
	GetAvatarStar                                      QuestFinishType = "GetAvatarStar"
	EquipmentLevel                                     QuestFinishType = "EquipmentLevel"
	EquipmentPromoteUp                                 QuestFinishType = "EquipmentPromoteUp"
	EquipmentRankUp                                    QuestFinishType = "EquipmentRankUp"
	EquipmentStarCnt                                   QuestFinishType = "EquipmentStarCnt"
	EquipmentLevelCnt                                  QuestFinishType = "EquipmentLevelCnt"
	EquipmentPromoteCnt                                QuestFinishType = "EquipmentPromoteCnt"
	EquipmentRankCnt                                   QuestFinishType = "EquipmentRankCnt"
	WorldLevel                                         QuestFinishType = "WorldLevel"
	EnterMapByEntrance                                 QuestFinishType = "EnterMapByEntrance"
	BookNum                                            QuestFinishType = "BookNum"
	PropTypeInteract                                   QuestFinishType = "PropTypeInteract"
	ChallengeFinish                                    QuestFinishType = "ChallengeFinish"
	CocoonFinish                                       QuestFinishType = "CocoonFinish"
	AnyCocoonFinish                                    QuestFinishType = "AnyCocoonFinish"
	ConsumeMissionItem                                 QuestFinishType = "ConsumeMissionItem"
	EnterFloor                                         QuestFinishType = "EnterFloor"
	GetTrialAvatar                                     QuestFinishType = "GetTrialAvatar"
	DelTrialAvatar                                     QuestFinishType = "DelTrialAvatar"
	FinishMainMission                                  QuestFinishType = "FinishMainMission"
	RelicSuit                                          QuestFinishType = "RelicSuit"
	ChallengeFinishCnt                                 QuestFinishType = "ChallengeFinishCnt"
	SubMissionFinishCnt                                QuestFinishType = "SubMissionFinishCnt"
	FinishMissionEvent                                 QuestFinishType = "FinishMissionEvent"
	ClientProgress                                     QuestFinishType = "ClientProgress"
	RelicLevelCnt                                      QuestFinishType = "RelicLevelCnt"
	TreasureChestOpenCnt                               QuestFinishType = "TreasureChestOpenCnt"
	CreateCharacter                                    QuestFinishType = "CreateCharacter"
	ChallengeStars                                     QuestFinishType = "ChallengeStars"
	FinishDailyMissionCnt                              QuestFinishType = "FinishDailyMissionCnt"
	DialogueEventCnt                                   QuestFinishType = "DialogueEventCnt"
	ItemCompose                                        QuestFinishType = "ItemCompose"
	ConsecutiveLoginDays                               QuestFinishType = "ConsecutiveLoginDays"
	MessageSectionFinish                               QuestFinishType = "MessageSectionFinish"
	DialogueEventCntWithGameMode                       QuestFinishType = "DialogueEventCntWithGameMode"
	ExpeditionRewardCnt                                QuestFinishType = "ExpeditionRewardCnt"
	GachaWithType                                      QuestFinishType = "GachaWithType"
	Gacha                                              QuestFinishType = "Gacha"
	MessagePerformSectionFinish                        QuestFinishType = "MessagePerformSectionFinish"
	FinishTodayDailyMissionCnt                         QuestFinishType = "FinishTodayDailyMissionCnt"
	ExpeditionBeginCnt                                 QuestFinishType = "ExpeditionBeginCnt"
	InclinationTextWithType                            QuestFinishType = "InclinationTextWithType"
	TrialStageFinish                                   QuestFinishType = "TrialStageFinish"
	LeavePlane                                         QuestFinishType = "LeavePlane"
	UnlockSpring                                       QuestFinishType = "UnlockSpring"
	PropDestruct                                       QuestFinishType = "PropDestruct"
	ExcellentEnterBattle                               QuestFinishType = "ExcellentEnterBattle"
	BadEnterBattle                                     QuestFinishType = "BadEnterBattle"
	UseMazeSkill                                       QuestFinishType = "UseMazeSkill"
	BattleWithAvatar                                   QuestFinishType = "BattleWithAvatar"
	BattleWinWithSpecificProfessionAvatar              QuestFinishType = "BattleWinWithSpecificProfessionAvatar"
	BattleWinWithSpecificDamageAvatar                  QuestFinishType = "BattleWinWithSpecificDamageAvatar"
	BattleWinWithSingleAvatar                          QuestFinishType = "BattleWinWithSingleAvatar"
	TreasureChestOpenWithWorld                         QuestFinishType = "TreasureChestOpenWithWorld"
	FinishTreasureChallengeWithTag                     QuestFinishType = "FinishTreasureChallengeWithTag"
	RaidFinishCnt                                      QuestFinishType = "RaidFinishCnt"
	ActivityFightFinish                                QuestFinishType = "ActivityFightFinish"
	ExcellentEnterBattleAndWin                         QuestFinishType = "ExcellentEnterBattleAndWin"
	RaidTargetFinish                                   QuestFinishType = "RaidTargetFinish"
	ActivityFightFirstFinishDifficulty                 QuestFinishType = "ActivityFightFirstFinishDifficulty"
	TotalLoginDays                                     QuestFinishType = "TotalLoginDays"
	BoxingClubAccomplish                               QuestFinishType = "BoxingClubAccomplish"
	ActivityFightMaxWave                               QuestFinishType = "ActivityFightMaxWave"
	TakePictureCnt                                     QuestFinishType = "TakePictureCnt"
	TriggerHealVoiceBySpecificAvatar                   QuestFinishType = "TriggerHealVoiceBySpecificAvatar"
	RandomMessageFinishCount                           QuestFinishType = "RandomMessageFinishCount"
	EnterRaidScene                                     QuestFinishType = "EnterRaidScene"
	EnterPlane                                         QuestFinishType = "EnterPlane"
	LeaveFloor                                         QuestFinishType = "LeaveFloor"
	NotInPlane                                         QuestFinishType = "NotInPlane"
	NotInFloor                                         QuestFinishType = "NotInFloor"
	TreasureDungeonFinishFloor                         QuestFinishType = "TreasureDungeonFinishFloor"
	TreasureDungeonAccomplish                          QuestFinishType = "TreasureDungeonAccomplish"
	TeamLeaderChange                                   QuestFinishType = "TeamLeaderChange"
	FinishQuestByClient                                QuestFinishType = "FinishQuestByClient"
	UAVOutBound                                        QuestFinishType = "UAVOutBound"
	DeliveryTwelve                                     QuestFinishType = "DeliveryTwelve"
	AnyChallengeStars                                  QuestFinishType = "AnyChallengeStars"
	ChangeChatBubbleCnt                                QuestFinishType = "ChangeChatBubbleCnt"
	ChangePhoneThemeCnt                                QuestFinishType = "ChangePhoneThemeCnt"
	ConsumeStamina                                     QuestFinishType = "ConsumeStamina"
	PlayerLevel                                        QuestFinishType = "PlayerLevel"
	FinishQuest                                        QuestFinishType = "FinishQuest"
	TakePlayerLevelReward                              QuestFinishType = "TakePlayerLevelReward"
	FinishQuestAndTakeReward                           QuestFinishType = "FinishQuestAndTakeReward"
	KillMonsterGroupList                               QuestFinishType = "KillMonsterGroupList"
	GetTrialAvatarList                                 QuestFinishType = "GetTrialAvatarList"
	AlleyLogisticsShopLink                             QuestFinishType = "AlleyLogisticsShopLink"
	AlleyLogisticsShopListLink                         QuestFinishType = "AlleyLogisticsShopListLink"
	AlleyLogisticsCnt                                  QuestFinishType = "AlleyLogisticsCnt"
	AlleyLogisticsShopRankReachN                       QuestFinishType = "AlleyLogisticsShopRankReachN"
	AlleyLogisticsBattery                              QuestFinishType = "AlleyLogisticsBattery"
	AlleyLogisticsShopBattery                          QuestFinishType = "AlleyLogisticsShopBattery"
	AlleyLogisticsDetonateStarSkiff                    QuestFinishType = "AlleyLogisticsDetonateStarSkiff"
	FinishQuestListAndTakeReward                       QuestFinishType = "FinishQuestListAndTakeReward"
	GetItem                                            QuestFinishType = "GetItem"
	UseItem                                            QuestFinishType = "UseItem"
	GetItemWithType                                    QuestFinishType = "GetItemWithType"
	EquipmentTypeCnt                                   QuestFinishType = "EquipmentTypeCnt"
	AnyEquipmentPromoteCnt                             QuestFinishType = "AnyEquipmentPromoteCnt"
	GetItemWithList                                    QuestFinishType = "GetItemWithList"
	UseItemWithType                                    QuestFinishType = "UseItemWithType"
	GetBookWithWorld                                   QuestFinishType = "GetBookWithWorld"
	ComposeItemWithId                                  QuestFinishType = "ComposeItemWithId"
	ComposeItemWithType                                QuestFinishType = "ComposeItemWithType"
	ComposeConsumeItemWithId                           QuestFinishType = "ComposeConsumeItemWithId"
	ResolveRelic                                       QuestFinishType = "ResolveRelic"
	GetPlanar                                          QuestFinishType = "GetPlanar"
	AnyEquipmentLevelUp                                QuestFinishType = "AnyEquipmentLevelUp"
	AnyRelicLevelUp                                    QuestFinishType = "AnyRelicLevelUp"
	UseSelectedItem                                    QuestFinishType = "UseSelectedItem"
	GetAnyRarityRelic                                  QuestFinishType = "GetAnyRarityRelic"
	ReplaceMaterialCnt                                 QuestFinishType = "ReplaceMaterialCnt"
	SpecificRarityRelicLevelUp                         QuestFinishType = "SpecificRarityRelicLevelUp"
	UseItemInContinuousDays                            QuestFinishType = "UseItemInContinuousDays"
	AvatarLevel                                        QuestFinishType = "AvatarLevel"
	AvatarPromote                                      QuestFinishType = "AvatarPromote"
	AvatarRank                                         QuestFinishType = "AvatarRank"
	UnlockSkilltree                                    QuestFinishType = "UnlockSkilltree"
	AvatarRankUp                                       QuestFinishType = "AvatarRankUp"
	AvatarLevelCnt                                     QuestFinishType = "AvatarLevelCnt"
	AvatarPromoteCnt                                   QuestFinishType = "AvatarPromoteCnt"
	AvatarRankCnt                                      QuestFinishType = "AvatarRankCnt"
	UnlockSkilltreeCnt                                 QuestFinishType = "UnlockSkilltreeCnt"
	AnyAvatarUnlockSkilltreeCnt                        QuestFinishType = "AnyAvatarUnlockSkilltreeCnt"
	AnyAvatarPromoteCnt                                QuestFinishType = "AnyAvatarPromoteCnt"
	AllAvatarUnlockSkilltreeCnt                        QuestFinishType = "AllAvatarUnlockSkilltreeCnt"
	AllAvatarPromoteCnt                                QuestFinishType = "AllAvatarPromoteCnt"
	AnyAvatarLevelUp                                   QuestFinishType = "AnyAvatarLevelUp"
	AnyAvatarDressAllRelicMax                          QuestFinishType = "AnyAvatarDressAllRelicMax"
	AnyAvatarSkilltreeMax                              QuestFinishType = "AnyAvatarSkilltreeMax"
	KillMonster                                        QuestFinishType = "KillMonster"
	KillMonsterList                                    QuestFinishType = "KillMonsterList"
	InteractPropList                                   QuestFinishType = "InteractPropList"
	FarmElementFinish                                  QuestFinishType = "FarmElementFinish"
	AnyFarmElementFinish                               QuestFinishType = "AnyFarmElementFinish"
	FarmRelicFinish                                    QuestFinishType = "FarmRelicFinish"
	AnyFarmRelicFinish                                 QuestFinishType = "AnyFarmRelicFinish"
	AnyMaterialStageFinish                             QuestFinishType = "AnyMaterialStageFinish"
	KillMonsterWithGameMode                            QuestFinishType = "KillMonsterWithGameMode"
	KillMonsterWithRogue                               QuestFinishType = "KillMonsterWithRogue"
	KillMonsterInBattle                                QuestFinishType = "KillMonsterInBattle"
	HeroPathLevel                                      QuestFinishType = "HeroPathLevel"
	HeroPathLevelUpCnt                                 QuestFinishType = "HeroPathLevelUpCnt"
	WaitDays                                           QuestFinishType = "WaitDays"
	PropStateChangedList                               QuestFinishType = "PropStateChangedList"
	RogueFinishCnt                                     QuestFinishType = "RogueFinishCnt"
	RogueFinishWithScore                               QuestFinishType = "RogueFinishWithScore"
	RogueChallengeScore                                QuestFinishType = "RogueChallengeScore"
	RogueExploreRoomFinishCnt                          QuestFinishType = "RogueExploreRoomFinishCnt"
	RogueGetBuffTypeCnt                                QuestFinishType = "RogueGetBuffTypeCnt"
	RogueFinishRoomTypeCnt                             QuestFinishType = "RogueFinishRoomTypeCnt"
	RogueBuffLevel                                     QuestFinishType = "RogueBuffLevel"
	RogueExploreScore                                  QuestFinishType = "RogueExploreScore"
	RogueAppraisalResult                               QuestFinishType = "RogueAppraisalResult"
	RogueBlessLevel                                    QuestFinishType = "RogueBlessLevel"
	RogueQuestFinishWithGameMode                       QuestFinishType = "RogueQuestFinishWithGameMode"
	RogueFinishUnlock                                  QuestFinishType = "RogueFinishUnlock"
	RoguePassAreaProgress                              QuestFinishType = "RoguePassAreaProgress"
	RogueAeonLevel                                     QuestFinishType = "RogueAeonLevel"
	RogueImmerseLevel                                  QuestFinishType = "RogueImmerseLevel"
	RogueTalentEnable                                  QuestFinishType = "RogueTalentEnable"
	RogueKillMonster                                   QuestFinishType = "RogueKillMonster"
	RogueAreaProgressScore                             QuestFinishType = "RogueAreaProgressScore"
	RogueFinishWithDifficulty                          QuestFinishType = "RogueFinishWithDifficulty"
	RogueEncounterSpecialEvent                         QuestFinishType = "RogueEncounterSpecialEvent"
	RoguePropDestruct                                  QuestFinishType = "RoguePropDestruct"
	RogueBuffEnhance                                   QuestFinishType = "RogueBuffEnhance"
	RogueMiracleUnlock                                 QuestFinishType = "RogueMiracleUnlock"
	RogueMonsterEscape                                 QuestFinishType = "RogueMonsterEscape"
	RogueUnlockBuff                                    QuestFinishType = "RogueUnlockBuff"
	RogueFinishWithBuff                                QuestFinishType = "RogueFinishWithBuff"
	RogueFinishWithBuffType                            QuestFinishType = "RogueFinishWithBuffType"
	RogueFinishWithBuffCnt                             QuestFinishType = "RogueFinishWithBuffCnt"
	RogueFinishWithMiracleCnt                          QuestFinishType = "RogueFinishWithMiracleCnt"
	RogueFinishWithCoinCnt                             QuestFinishType = "RogueFinishWithCoinCnt"
	RogueFinishWithMonster                             QuestFinishType = "RogueFinishWithMonster"
	RogueFinishWithDownloadCnt                         QuestFinishType = "RogueFinishWithDownloadCnt"
	RogueFinishWithPropDestroyCnt                      QuestFinishType = "RogueFinishWithPropDestroyCnt"
	RogueFinishWithSkillCastCnt                        QuestFinishType = "RogueFinishWithSkillCastCnt"
	RogueFinishWithAvatarCnt                           QuestFinishType = "RogueFinishWithAvatarCnt"
	RogueFinishWithAllSameBaseType                     QuestFinishType = "RogueFinishWithAllSameBaseType"
	RogueFinishWithEvent                               QuestFinishType = "RogueFinishWithEvent"
	RogueFinishWithAllBattleFullHp                     QuestFinishType = "RogueFinishWithAllBattleFullHp"
	RogueFinishDialogueWithCnt                         QuestFinishType = "RogueFinishDialogueWithCnt"
	RogueKillChestMonster                              QuestFinishType = "RogueKillChestMonster"
	RogueFreeChestMonster                              QuestFinishType = "RogueFreeChestMonster"
	RogueKillBattleMonster                             QuestFinishType = "RogueKillBattleMonster"
	RogueKillMonsterWithRoomLevel                      QuestFinishType = "RogueKillMonsterWithRoomLevel"
	RogueEnterRoomWithLevel                            QuestFinishType = "RogueEnterRoomWithLevel"
	RogueFinishArea                                    QuestFinishType = "RogueFinishArea"
	BattleChallenge                                    QuestFinishType = "BattleChallenge"
	WinBattleWithSomeAvatar                            QuestFinishType = "WinBattleWithSomeAvatar"
	WinBattleWithAssistAvatarCnt                       QuestFinishType = "WinBattleWithAssistAvatarCnt"
	SkillHitTargetAfterDuration                        QuestFinishType = "SkillHitTargetAfterDuration"
	EnterAggroRangeForDuration                         QuestFinishType = "EnterAggroRangeForDuration"
	PunkLordSummonMonsterCnt                           QuestFinishType = "PunkLordSummonMonsterCnt"
	PunkLordSupportCnt                                 QuestFinishType = "PunkLordSupportCnt"
	PunkLordShareMonsterCnt                            QuestFinishType = "PunkLordShareMonsterCnt"
	PunkLordKillMonsterCnt                             QuestFinishType = "PunkLordKillMonsterCnt"
	PunkLordKillSelfMonsterCnt                         QuestFinishType = "PunkLordKillSelfMonsterCnt"
	PunkLordStageFinish                                QuestFinishType = "PunkLordStageFinish"
	MuseumPhaseFinish                                  QuestFinishType = "MuseumPhaseFinish"
	MuseumCollectStuffCnt                              QuestFinishType = "MuseumCollectStuffCnt"
	MuseumCollectExhibitCnt                            QuestFinishType = "MuseumCollectExhibitCnt"
	ActivityMonsterResearchFinishCnt                   QuestFinishType = "ActivityMonsterResearchFinishCnt"
	ActivityExpeditionFinishCnt                        QuestFinishType = "ActivityExpeditionFinishCnt"
	ActivityFantasticStoryFinishBattleWithScore        QuestFinishType = "ActivityFantasticStoryFinishBattleWithScore"
	GetActivePoint                                     QuestFinishType = "GetActivePoint"
	RogueChallengeSuccessCnt                           QuestFinishType = "RogueChallengeSuccessCnt"
	RogueChallengeFinishWithScore                      QuestFinishType = "RogueChallengeFinishWithScore"
	RogueChallengeFinishWithGoal                       QuestFinishType = "RogueChallengeFinishWithGoal"
	MuseumWorkDayCnt                                   QuestFinishType = "MuseumWorkDayCnt"
	MuseumAreaLevel                                    QuestFinishType = "MuseumAreaLevel"
	MuseumTargetFinishCnt                              QuestFinishType = "MuseumTargetFinishCnt"
	PlayStationLogin                                   QuestFinishType = "PlayStationLogin"
	AlleySpecialOrderFinish                            QuestFinishType = "AlleySpecialOrderFinish"
	AlleyPrestigeLevel                                 QuestFinishType = "AlleyPrestigeLevel"
	AlleyEventFinishByType                             QuestFinishType = "AlleyEventFinishByType"
	AlleySpecialOrderFinishById                        QuestFinishType = "AlleySpecialOrderFinishById"
	AlleyShipmentFinish                                QuestFinishType = "AlleyShipmentFinish"
	AlleyShipmentFinishByShipType                      QuestFinishType = "AlleyShipmentFinishByShipType"
	AlleyShipmentProfit                                QuestFinishType = "AlleyShipmentProfit"
	AlleyShipmentProfitByShipType                      QuestFinishType = "AlleyShipmentProfitByShipType"
	AlleyNormalOrderFinish                             QuestFinishType = "AlleyNormalOrderFinish"
	AlleyPlacingGameGoodsNum                           QuestFinishType = "AlleyPlacingGameGoodsNum"
	AetherDivideCollectSpiritType                      QuestFinishType = "AetherDivideCollectSpiritType"
	AetherDivideTrainerLevel                           QuestFinishType = "AetherDivideTrainerLevel"
	AetherDivideCollectPassiveSkillType                QuestFinishType = "AetherDivideCollectPassiveSkillType"
	AetherDivideSpiritLevel                            QuestFinishType = "AetherDivideSpiritLevel"
	AetherDivideFinishHyperlinkDuel                    QuestFinishType = "AetherDivideFinishHyperlinkDuel"
	AetherDivideCertainFinishHyperlinkDuel             QuestFinishType = "AetherDivideCertainFinishHyperlinkDuel"
	StageWinList                                       QuestFinishType = "StageWinList"
	SceneTreasureChestOpenCnt                          QuestFinishType = "SceneTreasureChestOpenCnt"
	AlleyPlacingGameGoodsNumByGoodsId                  QuestFinishType = "AlleyPlacingGameGoodsNumByGoodsId"
	AetherDivideCollectSpiritId                        QuestFinishType = "AetherDivideCollectSpiritId"
	RogueDLCFinishCnt                                  QuestFinishType = "RogueDLCFinishCnt"
	RogueDLCBlockFinishCnt                             QuestFinishType = "RogueDLCBlockFinishCnt"
	RogueDLCBlockEnterCnt                              QuestFinishType = "RogueDLCBlockEnterCnt"
	RogueDLCChessBoardEventCnt                         QuestFinishType = "RogueDLCChessBoardEventCnt"
	RogueDLCGetBuffTypeCnt                             QuestFinishType = "RogueDLCGetBuffTypeCnt"
	RogueDLCGetMiracleCnt                              QuestFinishType = "RogueDLCGetMiracleCnt"
	RogueDLCMarkTypeFinishCnt                          QuestFinishType = "RogueDLCMarkTypeFinishCnt"
	RogueDLCGetCoinCnt                                 QuestFinishType = "RogueDLCGetCoinCnt"
	RogueDLCEnterLayerCnt                              QuestFinishType = "RogueDLCEnterLayerCnt"
	RogueDLCFinishCabinetCnt                           QuestFinishType = "RogueDLCFinishCabinetCnt"
	RogueDLCDialogueEventCnt                           QuestFinishType = "RogueDLCDialogueEventCnt"
	RogueDLCAeonDimensionCnt                           QuestFinishType = "RogueDLCAeonDimensionCnt"
	RogueDLCAeonFinishCnt                              QuestFinishType = "RogueDLCAeonFinishCnt"
	RogueDLCFinishMainStory                            QuestFinishType = "RogueDLCFinishMainStory"
	RogueDLCFinishMainStoryCnt                         QuestFinishType = "RogueDLCFinishMainStoryCnt"
	RogueDLCFinishSubStoryGroup                        QuestFinishType = "RogueDLCFinishSubStoryGroup"
	RogueDLCFinishSubStoryGroupCnt                     QuestFinishType = "RogueDLCFinishSubStoryGroupCnt"
	RogueDLCRollDiceContinuousCnt                      QuestFinishType = "RogueDLCRollDiceContinuousCnt"
	RogueDLCRollDiceMemeryRewardCnt                    QuestFinishType = "RogueDLCRollDiceMemeryRewardCnt"
	RogueDLCFinishByWarriorDice                        QuestFinishType = "RogueDLCFinishByWarriorDice"
	RogueDLCFinishByWarlockDice                        QuestFinishType = "RogueDLCFinishByWarlockDice"
	RogueDLCFinishByKnightDice                         QuestFinishType = "RogueDLCFinishByKnightDice"
	RogueDLCFinishByPriestDicePosivive                 QuestFinishType = "RogueDLCFinishByPriestDicePosivive"
	RogueDLCFinishByBreedDice                          QuestFinishType = "RogueDLCFinishByBreedDice"
	RogueDLCRollDiceAccumulateCnt                      QuestFinishType = "RogueDLCRollDiceAccumulateCnt"
	RogueDLCLightenFirstHiddenCabinet                  QuestFinishType = "RogueDLCLightenFirstHiddenCabinet"
	RogueDLCRollDiceUseCheatCnt                        QuestFinishType = "RogueDLCRollDiceUseCheatCnt"
	RogueDLCRollDiceUseRepeatCnt                       QuestFinishType = "RogueDLCRollDiceUseRepeatCnt"
	RogueDLCNotWarlockDiceEnterEmptyRoom               QuestFinishType = "RogueDLCNotWarlockDiceEnterEmptyRoom"
	RogueDLCFinishAdventureRoomWithLevelCnt            QuestFinishType = "RogueDLCFinishAdventureRoomWithLevelCnt"
	RogueDLCNotBreedkDiceEnterSwarmRoom                QuestFinishType = "RogueDLCNotBreedkDiceEnterSwarmRoom"
	RogueDLCShopSoldOutCnt                             QuestFinishType = "RogueDLCShopSoldOutCnt"
	RogueDLCKillBattleChestMonsterWithAeon             QuestFinishType = "RogueDLCKillBattleChestMonsterWithAeon"
	RogueDLCFinishWithEvent                            QuestFinishType = "RogueDLCFinishWithEvent"
	RogueDLCFinishWithPropDestructCnt                  QuestFinishType = "RogueDLCFinishWithPropDestructCnt"
	RogueDLCFinishAdventureRoomWithMonsterCnt          QuestFinishType = "RogueDLCFinishAdventureRoomWithMonsterCnt"
	RogueDLCFinishWithAeonCrossCnt                     QuestFinishType = "RogueDLCFinishWithAeonCrossCnt"
	RogueDLCFinishAeonEventWithAeonCnt                 QuestFinishType = "RogueDLCFinishAeonEventWithAeonCnt"
	RogueDLCFinishWithMainStoryCnt                     QuestFinishType = "RogueDLCFinishWithMainStoryCnt"
	RogueDLCFinishWithSubStoryGroupCnt                 QuestFinishType = "RogueDLCFinishWithSubStoryGroupCnt"
	RogueDLCFinishManyMoney                            QuestFinishType = "RogueDLCFinishManyMoney"
	RogueDLCSelectedAeonDimensionCnt                   QuestFinishType = "RogueDLCSelectedAeonDimensionCnt"
	RogueDLCFailCnt                                    QuestFinishType = "RogueDLCFailCnt"
	RogueDLCFinishByAnyDiceNegative                    QuestFinishType = "RogueDLCFinishByAnyDiceNegative"
	RogueDLCFinishDialogueEvent                        QuestFinishType = "RogueDLCFinishDialogueEvent"
	RogueDLCGetAeonBuffEnhanceCnt                      QuestFinishType = "RogueDLCGetAeonBuffEnhanceCnt"
	RogueDLCDiceNegativeCnt                            QuestFinishType = "RogueDLCDiceNegativeCnt"
	RogueDLCGetCoinExceptBattleCnt                     QuestFinishType = "RogueDLCGetCoinExceptBattleCnt"
	RogueDLCBuyShopItemOnceRoomCnt                     QuestFinishType = "RogueDLCBuyShopItemOnceRoomCnt"
	RogueDLCContinuationEnterBattleBlockCnt            QuestFinishType = "RogueDLCContinuationEnterBattleBlockCnt"
	RogueDLCBlockFinishFullHpCnt                       QuestFinishType = "RogueDLCBlockFinishFullHpCnt"
	RogueDLCEnterBlockWithCoinCnt                      QuestFinishType = "RogueDLCEnterBlockWithCoinCnt"
	RogueDLCContinuationEnterDiffBlockCnt              QuestFinishType = "RogueDLCContinuationEnterDiffBlockCnt"
	RogueDLCAeonOptionCnt                              QuestFinishType = "RogueDLCAeonOptionCnt"
	RogueDLCEnterBlockWithDiceZero                     QuestFinishType = "RogueDLCEnterBlockWithDiceZero"
	RogueDLCMarkTypeFinishOneLayerCnt                  QuestFinishType = "RogueDLCMarkTypeFinishOneLayerCnt"
	RogueDLCFinishByHappyDice                          QuestFinishType = "RogueDLCFinishByHappyDice"
	SendChatEmojiCnt                                   QuestFinishType = "SendChatEmojiCnt"
	SendTrainMemberChatEmojiCnt                        QuestFinishType = "SendTrainMemberChatEmojiCnt"
	RecvOppositeGenderChatEmoji                        QuestFinishType = "RecvOppositeGenderChatEmoji"
	FinishRogueEndlessWithScore                        QuestFinishType = "FinishRogueEndlessWithScore"
	FinishRogueEndlessWithAllScore                     QuestFinishType = "FinishRogueEndlessWithAllScore"
	SendMaxChatMsgByChatBubble                         QuestFinishType = "SendMaxChatMsgByChatBubble"
	MainMissionHasCustomValue                          QuestFinishType = "MainMissionHasCustomValue"
	HeliobusSnsSpecialPost                             QuestFinishType = "HeliobusSnsSpecialPost"
	HeliobusLevel                                      QuestFinishType = "HeliobusLevel"
	HeliobusPhase                                      QuestFinishType = "HeliobusPhase"
	HeliobusSnsSpecialPostCnt                          QuestFinishType = "HeliobusSnsSpecialPostCnt"
	HeliobusSnsCommentCnt                              QuestFinishType = "HeliobusSnsCommentCnt"
	HeliobusSnsSubCommentCnt                           QuestFinishType = "HeliobusSnsSubCommentCnt"
	HeliobusSnsLikeCnt                                 QuestFinishType = "HeliobusSnsLikeCnt"
	HeliobusSnsSpecialComment                          QuestFinishType = "HeliobusSnsSpecialComment"
	HeliobusChallengeWithSkill                         QuestFinishType = "HeliobusChallengeWithSkill"
	HeliobusChallengeFirstClear                        QuestFinishType = "HeliobusChallengeFirstClear"
	HeliobusChallengeTargetFinish                      QuestFinishType = "HeliobusChallengeTargetFinish"
	TrainVisitorMissionFinish                          QuestFinishType = "TrainVisitorMissionFinish"
	GroupState                                         QuestFinishType = "GroupState"
	WinWithFriendAssist                                QuestFinishType = "WinWithFriendAssist"
	BattleLastStandAndEscape                           QuestFinishType = "BattleLastStandAndEscape"
	TriggerAvatarVoice                                 QuestFinishType = "TriggerAvatarVoice"
	HeliobusSnsSpecialPostTendencyCnt                  QuestFinishType = "HeliobusSnsSpecialPostTendencyCnt"
	HeliobusSnsAllCommentCnt                           QuestFinishType = "HeliobusSnsAllCommentCnt"
	RaidFinished                                       QuestFinishType = "RaidFinished"
	RogueDialogueWithAvatar                            QuestFinishType = "RogueDialogueWithAvatar"
	HeliobusSnsSpecialPostTendency                     QuestFinishType = "HeliobusSnsSpecialPostTendency"
	SpaceZooHybridCount                                QuestFinishType = "SpaceZooHybridCount"
	ActivityStrongChallengeEndScore                    QuestFinishType = "ActivityStrongChallengeEndScore"
	ActivityStrongChallengeAllQuestFinish              QuestFinishType = "ActivityStrongChallengeAllQuestFinish"
	SpaceZooUnlockSpecialCount                         QuestFinishType = "SpaceZooUnlockSpecialCount"
	SpaceZooUnlockSpecialID                            QuestFinishType = "SpaceZooUnlockSpecialID"
	SpaceZooOpCatteryCount                             QuestFinishType = "SpaceZooOpCatteryCount"
	SpaceZooExpPoint                                   QuestFinishType = "SpaceZooExpPoint"
	SpaceZooUnlockFeatureCount                         QuestFinishType = "SpaceZooUnlockFeatureCount"
	SpaceZooExpLevel                                   QuestFinishType = "SpaceZooExpLevel"
	FinishFirstTalkPerformance                         QuestFinishType = "FinishFirstTalkPerformance"
	AnyItemComposeCount                                QuestFinishType = "AnyItemComposeCount"
	ChallengeStorySettleCnt                            QuestFinishType = "ChallengeStorySettleCnt"
	RogueNousFinishWithNousValue                       QuestFinishType = "RogueNousFinishWithNousValue"
	RogueNousFinishWithDifficultyComp                  QuestFinishType = "RogueNousFinishWithDifficultyComp"
	ChallengeGivenTypeFloorSettleSuccCnt               QuestFinishType = "ChallengeGivenTypeFloorSettleSuccCnt"
	TriggerRepeatableAvatarVoice                       QuestFinishType = "TriggerRepeatableAvatarVoice"
	ActivityStrongChallengeBegin                       QuestFinishType = "ActivityStrongChallengeBegin"
	RogueNousFinishSubStory                            QuestFinishType = "RogueNousFinishSubStory"
	RogueNousFinishSubStoryAsRecommend                 QuestFinishType = "RogueNousFinishSubStoryAsRecommend"
	RogueNousFinishWithActionPoint                     QuestFinishType = "RogueNousFinishWithActionPoint"
	RogueNousNousValueChange                           QuestFinishType = "RogueNousNousValueChange"
	RogueNousFinishWithDifficultyCompDicePassive       QuestFinishType = "RogueNousFinishWithDifficultyCompDicePassive"
	RogueNousFinishWithAeonDifficultyComp              QuestFinishType = "RogueNousFinishWithAeonDifficultyComp"
	RogueNousFinishMainStory                           QuestFinishType = "RogueNousFinishMainStory"
	RogueNousValueReachNeagtive                        QuestFinishType = "RogueNousValueReachNeagtive"
	RogueNousValueReachPositive                        QuestFinishType = "RogueNousValueReachPositive"
	RogueNousTalentEnable                              QuestFinishType = "RogueNousTalentEnable"
	RogueCommonGameGetAeonTypeBuffEnhance              QuestFinishType = "RogueCommonGameGetAeonTypeBuffEnhance"
	RogueChessEnterBlockWithTypeCnt                    QuestFinishType = "RogueChessEnterBlockWithTypeCnt"
	RogueChessEnterBlockWithMarkTypeCnt                QuestFinishType = "RogueChessEnterBlockWithMarkTypeCnt"
	RogueChessGameWatchSttReach                        QuestFinishType = "RogueChessGameWatchSttReach"
	RogueNousFinishDiceWithStt                         QuestFinishType = "RogueNousFinishDiceWithStt"
	RogueNousUnlockDiceSurfaceCnt                      QuestFinishType = "RogueNousUnlockDiceSurfaceCnt"
	RogueNousUnlockDiceBranchCnt                       QuestFinishType = "RogueNousUnlockDiceBranchCnt"
	RogueNousFinishWithDiceBranch                      QuestFinishType = "RogueNousFinishWithDiceBranch"
	RogueNousFinishWithDiceSurfaceTag                  QuestFinishType = "RogueNousFinishWithDiceSurfaceTag"
	RogueNousFinishWithDiceSurfaceRarity               QuestFinishType = "RogueNousFinishWithDiceSurfaceRarity"
	RogueNousContinuousRollDiffSurface                 QuestFinishType = "RogueNousContinuousRollDiffSurface"
	RogueChessSetSpecialTypeCnt                        QuestFinishType = "RogueChessSetSpecialTypeCnt"
	RogueNousUnlockDiceBranch                          QuestFinishType = "RogueNousUnlockDiceBranch"
	RogueNousFinishDiceWithMiracleNum                  QuestFinishType = "RogueNousFinishDiceWithMiracleNum"
	RogueNousFinishDiceWithMoneyNum                    QuestFinishType = "RogueNousFinishDiceWithMoneyNum"
	RogueNousContinuationEnterNotAroundCellWithDiceCnt QuestFinishType = "RogueNousContinuationEnterNotAroundCellWithDiceCnt"
	FinishQuestInList                                  QuestFinishType = "FinishQuestInList"
	RogueAdventureEscapeLazerSuccInContinuousRounds    QuestFinishType = "RogueAdventureEscapeLazerSuccInContinuousRounds"
	RogueChessFinishWithMiracleInGroupNum              QuestFinishType = "RogueChessFinishWithMiracleInGroupNum"
	RogueNousFinishStoryCnt                            QuestFinishType = "RogueNousFinishStoryCnt"
	RogueNousFinishDiceWithMapStt                      QuestFinishType = "RogueNousFinishDiceWithMapStt"
	TravelBrochureProgrss                              QuestFinishType = "TravelBrochureProgrss"
	FTChangeStoryLine                                  QuestFinishType = "ChangeStoryLine"
	HeartDialScriptListStep                            QuestFinishType = "HeartDialScriptListStep"
	HeartDialScriptListEmotion                         QuestFinishType = "HeartDialScriptListEmotion"
	HeartDialScriptChangeEmotionCnt                    QuestFinishType = "HeartDialScriptChangeEmotionCnt"
	SceneTreasureChestOpenByTypeCnt                    QuestFinishType = "SceneTreasureChestOpenByTypeCnt"
	PropStateChangeWithSpecificPropId                  QuestFinishType = "PropStateChangeWithSpecificPropId"
	TravelBrochurePasterCollectProgrss                 QuestFinishType = "TravelBrochurePasterCollectProgrss"
	BattleLose                                         QuestFinishType = "BattleLose"
	BattleQuit                                         QuestFinishType = "BattleQuit"
	TelevisionActivityStageScore                       QuestFinishType = "TelevisionActivityStageScore"
	TelevisionActivityFisrtStageScore                  QuestFinishType = "TelevisionActivityFisrtStageScore"
	KillMonsterInTrackList                             QuestFinishType = "KillMonsterInTrackList"
	HeartDialDialoguePerformanceFinish                 QuestFinishType = "HeartDialDialoguePerformanceFinish"
	HeartDialScriptChangeStepCnt                       QuestFinishType = "HeartDialScriptChangeStepCnt"
	RaidCollectionIDFinishList                         QuestFinishType = "RaidCollectionIDFinishList"
	RaidCollectionGroupIDFinishList                    QuestFinishType = "RaidCollectionGroupIDFinishList"
	FloorSavedValue                                    QuestFinishType = "FloorSavedValue"
	SwitchFloor                                        QuestFinishType = "SwitchFloor"
	UseSpecificAssistAvatar                            QuestFinishType = "UseSpecificAssistAvatar"
	RollShopTakeSecretReward                           QuestFinishType = "RollShopTakeSecretReward"
	RollShopTakeSpecialRewardByBuff                    QuestFinishType = "RollShopTakeSpecialRewardByBuff"
	HeartDialChangedEmotionScriptCnt                   QuestFinishType = "HeartDialChangedEmotionScriptCnt"
	HeartDialScriptFinishAllDialogueCnt                QuestFinishType = "HeartDialScriptFinishAllDialogueCnt"
	ActivityMonsterResearchGiftTakeCnt                 QuestFinishType = "ActivityMonsterResearchGiftTakeCnt"
	DrinkMakerLastSequenceEnd                          QuestFinishType = "DrinkMakerLastSequenceEnd"
	FinishMovieGame                                    QuestFinishType = "FinishMovieGame"
	DrinkMakerLevel                                    QuestFinishType = "DrinkMakerLevel"
	DrinkMakerGivenChallengeCount                      QuestFinishType = "DrinkMakerGivenChallengeCount"
	DrinkMakerFinishSequenceCount                      QuestFinishType = "DrinkMakerFinishSequenceCount"
	DrinkMakerRequestSuccCount                         QuestFinishType = "DrinkMakerRequestSuccCount"
	DrinkMakerRequestFailCount                         QuestFinishType = "DrinkMakerRequestFailCount"
	DrinkMakerMakeDrinkByFormulaCount                  QuestFinishType = "DrinkMakerMakeDrinkByFormulaCount"
	OfferingLevel                                      QuestFinishType = "OfferingLevel"
	ActivityFeverTimeFinish                            QuestFinishType = "ActivityFeverTimeFinish"
	MonopolyMoveRollCnt                                QuestFinishType = "MonopolyMoveRollCnt"
	MonopolyPassCellCnt                                QuestFinishType = "MonopolyPassCellCnt"
	MonopolyFinishEventCnt                             QuestFinishType = "MonopolyFinishEventCnt"
	MonopolyTotalDonateCnt                             QuestFinishType = "MonopolyTotalDonateCnt"
	MonopolyAssetUpgrade                               QuestFinishType = "MonopolyAssetUpgrade"
	GetItemListOnce                                    QuestFinishType = "GetItemListOnce"
	WolfBroKillMonster                                 QuestFinishType = "WolfBroKillMonster"
	WolfBroBulletCntReachMax                           QuestFinishType = "WolfBroBulletCntReachMax"
	GroupPropDestruct                                  QuestFinishType = "GroupPropDestruct"
	MonopolyTakePhaseRewardCnt                         QuestFinishType = "MonopolyTakePhaseRewardCnt"
	MonopolyTakeRafflePoolRewardCnt                    QuestFinishType = "MonopolyTakeRafflePoolRewardCnt"
	ChallengeStarsRepeatable                           QuestFinishType = "ChallengeStarsRepeatable"
	MonopolyTotalDonateCntWhenRegionProgressComplete   QuestFinishType = "MonopolyTotalDonateCntWhenRegionProgressComplete"
	MonopolyTakeMbtiRewardCnt                          QuestFinishType = "MonopolyTakeMbtiRewardCnt"
	EvolveBuildLevelStart                              QuestFinishType = "EvolveBuildLevelStart"
	EvolveBuildLevelScore                              QuestFinishType = "EvolveBuildLevelScore"
	EvolveBuildKillMonster                             QuestFinishType = "EvolveBuildKillMonster"
	EvolveBuildFinishLevel                             QuestFinishType = "EvolveBuildFinishLevel"
	ClockParkProgress                                  QuestFinishType = "ClockParkProgress"
	ClockParkReachEndingNum                            QuestFinishType = "ClockParkReachEndingNum"
	ClockParkReachSpecificEnding                       QuestFinishType = "ClockParkReachSpecificEnding"
	ClockParkReachAttribute                            QuestFinishType = "ClockParkReachAttribute"
	EvolveBuildGetSuperWeapon                          QuestFinishType = "EvolveBuildGetSuperWeapon"
	EvolveBuildTakeExpReward                           QuestFinishType = "EvolveBuildTakeExpReward"
	ClockParkReachEndlessScore                         QuestFinishType = "ClockParkReachEndlessScore"
	ClockParkEnterChapterList                          QuestFinishType = "ClockParkEnterChapterList"
	ClockParkGetSameDice                               QuestFinishType = "ClockParkGetSameDice"
	ClockParkPassCheckpointExactly                     QuestFinishType = "ClockParkPassCheckpointExactly"
	FinishGunPlayGame                                  QuestFinishType = "FinishGunPlayGame"
	SpecificRaidTargetFinish                           QuestFinishType = "SpecificRaidTargetFinish"
	FloorSavedValueList                                QuestFinishType = "FloorSavedValueList"
	FinishGunPlayGamePerfect                           QuestFinishType = "FinishGunPlayGamePerfect"
	OrigamiCnt                                         QuestFinishType = "OrigamiCnt"
	BattleWinWithCustomValue                           QuestFinishType = "BattleWinWithCustomValue"
)

type RaidConfigType added in v1.3.1

type RaidConfigType = string
const (
	RaidConfigTypeNone                   RaidConfigType = "None"
	RaidConfigTypeMission                RaidConfigType = "Mission"
	RaidConfigTypeRelic                  RaidConfigType = "Relic"
	RaidConfigTypeChallenge              RaidConfigType = "Challenge"
	RaidConfigTypeTreasureChallenge      RaidConfigType = "TreasureChallenge"
	RaidConfigTypePunkLord               RaidConfigType = "PunkLord"
	RaidConfigTypeSaveMission            RaidConfigType = "SaveMission"
	RaidConfigTypeTrial                  RaidConfigType = "Trial"
	RaidConfigTypeEquilibriumTrial       RaidConfigType = "EquilibriumTrial"
	RaidConfigTypeHeliobus               RaidConfigType = "Heliobus"
	RaidConfigTypeActivityRaidCollection RaidConfigType = "ActivityRaidCollection"
	RaidConfigTypeClockPark              RaidConfigType = "ClockPark"
)

type RaidEnterType added in v1.3.1

type RaidEnterType = string
const (
	RaidEnterTypeDefault     RaidEnterType = "Default"
	RaidEnterTypeSkipUI      RaidEnterType = "SkipUI"
	RaidEnterTypePerformance RaidEnterType = "Performance"
)

type RaidRecoverType added in v1.3.1

type RaidRecoverType = string
const (
	RaidRecoverTypeUnknown       RaidRecoverType = "Unknown"
	RaidRecoverTypeRecoverHp     RaidRecoverType = "RecoverHp"
	RaidRecoverTypeRecoverMp     RaidRecoverType = "RecoverMp"
	RaidRecoverTypeResetMp       RaidRecoverType = "ResetMp"
	RaidRecoverTypeRecoverSp     RaidRecoverType = "RecoverSp"
	RaidRecoverTypeResetSp       RaidRecoverType = "ResetSp"
	RaidRecoverTypeRecoverHalfSp RaidRecoverType = "RecoverHalfSp"
)

type RaidTagType added in v1.3.1

type RaidTagType = string
const (
	RaidTagTypeNone       RaidTagType = "None"
	RaidTagTypeNormalRaid RaidTagType = "NormalRaid"
	RaidTagTypeHardRaid   RaidTagType = "HardRaid"
	RaidTagTypeHardest    RaidTagType = "Hardest"
)

type RaidTeamType added in v1.3.1

type RaidTeamType = string
const (
	RaidTeamTypeNone           RaidTeamType = "None"
	RaidTeamTypePlayer         RaidTeamType = "Player"
	RaidTeamTypeTrial          RaidTeamType = "Trial"
	RaidTeamTypeTrialAndPlayer RaidTeamType = "TrialAndPlayer"
	RaidTeamTypeTrialOnly      RaidTeamType = "TrialOnly"
	RaidTeamTypeTrialOrPlayer  RaidTeamType = "TrialOrPlayer"
)

type RedisConf added in v1.5.0

type RedisConf struct {
	Addr     string `json:"addr"`
	Password string `json:"password"`
	DB       int    `json:"db"`
}

type RegionConf added in v1.5.0

type RegionConf struct {
	Id              uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	Name            string // 区服名称
	AutoCreate      bool   // 是否自动注册
	Title           string // 地区
	Type            uint32 // sdk类型
	ClientSecretKey []byte // 加密密钥
}

type RiskyApiCheck added in v1.5.0

type RiskyApiCheck struct {
	ActionType string `json:"action_type"`
	APIName    string `json:"api_name"`
	Username   string `json:"username"`
}

type RogueConf added in v1.5.0

type RogueConf struct {
	SeasonId  uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	BeginTime sql.NullTime
	EndTime   sql.NullTime
}

type RogueTournRoomType added in v1.3.1

type RogueTournRoomType uint32
const (
	RogueTournRoomTypeUnknown   RogueTournRoomType = 0
	RogueTournRoomTypeBoss      RogueTournRoomType = 1
	RogueTournRoomTypeElite     RogueTournRoomType = 2
	RogueTournRoomTypeBattle    RogueTournRoomType = 3
	RogueTournRoomTypeEncounter RogueTournRoomType = 4
	RogueTournRoomTypeEvent     RogueTournRoomType = 5
	RogueTournRoomTypeCoin      RogueTournRoomType = 6
	RogueTournRoomTypeShop      RogueTournRoomType = 7
	RogueTournRoomTypeReward    RogueTournRoomType = 8
	RogueTournRoomTypeAdventure RogueTournRoomType = 9
	RogueTournRoomTypeRespite   RogueTournRoomType = 10
	RogueTournRoomTypeReforge   RogueTournRoomType = 11
	RogueTournRoomTypeHidden    RogueTournRoomType = 12
)

type ScheduleConf added in v1.5.0

type ScheduleConf struct {
	ScheduleId uint32 `gorm:"primarykey;AUTO_INCREMENT"`
	BeginTime  sql.NullTime
	EndTime    sql.NullTime
}

type SkillAction added in v1.5.0

type SkillAction int
const (
	AddMazeBuff     SkillAction = 1
	AddTeamPlayerHP SkillAction = 2
	AddTeamPlayerSp SkillAction = 3
	SetMonsterDie   SkillAction = 4
	SummonUnit      SkillAction = 5
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL