hoshimi-venus 0.3.3 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/concert/consts/eff_grades.d.ts +3 -1
- package/out/concert/efficacy_analyze.d.ts +1 -0
- package/out/concert/efficacy_analyze.js +10 -1
- package/out/concert/efficacy_analyze.js.map +1 -1
- package/out/concert/partial/actions/action.js +44 -0
- package/out/concert/partial/actions/action.js.map +1 -1
- package/out/concert/partial/actions/strength_effect_assignment.js +36 -1
- package/out/concert/partial/actions/strength_effect_assignment.js.map +1 -1
- package/out/concert/partial/actions/strength_effect_value_increase.js +2 -2
- package/out/concert/partial/actions/strength_effect_value_increase.js.map +1 -1
- package/out/concert/trigger_proc.js +7 -7
- package/out/concert/trigger_proc.js.map +1 -1
- package/out/main.js +3 -3
- package/out/main.js.map +1 -1
- package/out/types/concert_types.d.ts +2 -2
- package/out/types/proto/proto_api.d.ts +261 -1
- package/out/types/proto/proto_enum.d.ts +42 -5
- package/out/types/proto/proto_enum.js +43 -2
- package/out/types/proto/proto_enum.js.map +1 -1
- package/out/types/proto/proto_master.d.ts +7 -0
- package/out/types/proto/proto_transaction.d.ts +2 -0
- package/out/utils/calc_utils.d.ts +15 -1
- package/out/utils/calc_utils.js +17 -2
- package/out/utils/calc_utils.js.map +1 -1
- package/out/utils/chart_utils.d.ts +2 -2
- package/out/utils/chart_utils.js +9 -8
- package/out/utils/chart_utils.js.map +1 -1
- package/out/utils/skill_utils.js +3 -2
- package/out/utils/skill_utils.js.map +1 -1
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { ResultRankType, LiveSkipType, LinkType, BoxGachaItemType, DokanType, ShopType, ResourceType, ResetTimingType, ActivityFanEventType, GachaContinuousResultType, GachaType, GvgMatchResultType, MarathonType, LadderPanelType, AttributeType, MoodType, SkillPossessionType, AccessoryCategoryType, PhotoContestEvaluationRankType, ProfileBackgroundType, ProfileLayoutType, ProfileInformationType, ProfileColorType, ShopConditionRewardStatusType, ActivityFanEventHappeningType, ItemType, BacksideType, BacksideAreaType, BacksideDifficultyType, BacksidePracticeRankType, BacksideStageType, BacksidePanelType, BacksidePanelAttributeType, MusicChartType, SkillFailureType, StatusEffectType, SkillEfficacyType, PhotoImageType, ActivityCampaignEffectType, DeckEditType, DivisionCannotMoveReasonType, ForumListReplyRequestType, GachaRewardPatternType, GachaAnimationEmbeddedType, GiftSortType, GiftFilterType, GvgChallengeConsumptionType, GraphicType, HomePositionType, FunctionMaintenanceType, MarathonRaidProgressType, RuleType, ProviderType, ErrorCode, PhotoImageRequestType, PhotoShootingActionType, PhotoContestBaseEvaluationType, PhotoContestBaseGuideRankType, ParameterType, TourType, TourEnemyType, TourAreaType, TourStepType, TutorialType } from './proto_enum';
|
1
|
+
import type { ResultRankType, LiveSkipType, LinkType, BoxGachaItemType, DokanType, ShopType, ResourceType, ResetTimingType, ActivityFanEventType, GachaContinuousResultType, GachaType, GvgMatchResultType, MarathonType, LadderPanelType, LeagueDeckType, AttributeType, MoodType, SkillPossessionType, AccessoryCategoryType, PhotoContestEvaluationRankType, ProfileBackgroundType, ProfileLayoutType, ProfileInformationType, ProfileColorType, ShopConditionRewardStatusType, ActivityFanEventHappeningType, ItemType, BacksideType, BacksideAreaType, BacksideDifficultyType, BacksidePracticeRankType, BacksideStageType, BacksidePanelType, BacksidePanelAttributeType, MusicChartType, SkillFailureType, StatusEffectType, SkillEfficacyType, PhotoImageType, ActivityCampaignEffectType, DeckEditType, DivisionCannotMoveReasonType, ForumListReplyRequestType, GachaRewardPatternType, GachaAnimationEmbeddedType, GiftSortType, GiftFilterType, GvgChallengeConsumptionType, GraphicType, HomePositionType, LeagueStatusType, FunctionMaintenanceType, LeagueSeasonResultType, LeagueSeasonCardResultType, MarathonRaidProgressType, RuleType, ProviderType, ErrorCode, PhotoImageRequestType, PhotoShootingActionType, PhotoContestBaseEvaluationType, PhotoContestBaseGuideRankType, ParameterType, TourType, TourEnemyType, TourAreaType, TourStepType, TutorialType } from './proto_enum';
|
2
2
|
import type { Accessory, HelpCategory } from './proto_master';
|
3
3
|
import type { UserPhoto, UserMission, RewardResult, Reward, Payslip, UserPublic, UserCharacter, User, UserItem, UserCard, UserCostume, UserAccessory, UserDeck, UserStory, UserPoint, UserStaff, UserMessage, UserTelephone, UserProfile, UserEmblem, UserCharacterMusic, UserBalance, UserTotalCount, UserArea, UserQuest, UserGachaButton, UserHomeTalk, UserPhotoReport, UserCardSupport, UserMessageSchedule, UserNotification, UserHierarchy, UserTutorial, UserHomePosition, UserMusic, UserDecoration, UserPhotoRecipe, UserBuddy, UserInvite, UserHair, ConsumptionResult, UserGift, UserGiftHistory, UserLoginBonus, MasterTag } from './proto_transaction';
|
4
4
|
export declare type ActiveFanEvent = {
|
@@ -192,6 +192,13 @@ export declare type BuddyCardInfo = {
|
|
192
192
|
rarity: number;
|
193
193
|
level: number;
|
194
194
|
};
|
195
|
+
export declare type DeckPositionCharacter = {
|
196
|
+
userDeckPosition: UserDeckPosition;
|
197
|
+
characterId: string;
|
198
|
+
displayCharacterId: string;
|
199
|
+
displayCostumeId: string;
|
200
|
+
displayHairId: string;
|
201
|
+
};
|
195
202
|
export declare type DivisionInfo = {
|
196
203
|
id: string;
|
197
204
|
levelAvg: number;
|
@@ -576,6 +583,7 @@ export declare type HomeEnterResponse = {
|
|
576
583
|
hasCanReceiveInviteHostRewards: boolean;
|
577
584
|
existsUnclearedExercise: boolean;
|
578
585
|
extraStoryPartInfos: ExtraStoryPartInfo[];
|
586
|
+
leagueInfo: HomeLeagueInfo;
|
579
587
|
pvpRewardResultInfo: PvpRewardResultInfo;
|
580
588
|
gvgRewardResultInfo: GvgRewardResultInfo;
|
581
589
|
tourRewardResultInfos: TourRewardResultInfo[];
|
@@ -584,6 +592,7 @@ export declare type HomeEnterResponse = {
|
|
584
592
|
raceRewardResultInfos: RaceRewardResultInfo[];
|
585
593
|
raceDailyRewardResultInfos: RaceDailyRewardResultInfo[];
|
586
594
|
buddyUsedRewardResultInfo: BuddyUsedRewardResultInfo;
|
595
|
+
leagueRewardResultInfo: LeagueRewardResultInfo;
|
587
596
|
commonResponse: CommonResponse;
|
588
597
|
};
|
589
598
|
export declare type HomeEventMissionInfo = {
|
@@ -705,6 +714,65 @@ export declare type LastCardInfo = {
|
|
705
714
|
level: number;
|
706
715
|
rarity: number;
|
707
716
|
};
|
717
|
+
export declare type LeagueCardInfo = {
|
718
|
+
cardId: string;
|
719
|
+
level: number;
|
720
|
+
rarity: number;
|
721
|
+
};
|
722
|
+
export declare type LeagueCardRanking = {
|
723
|
+
userId: string;
|
724
|
+
name: string;
|
725
|
+
cardInfo: LeagueCardInfo;
|
726
|
+
value: string;
|
727
|
+
rank: number;
|
728
|
+
emblemId: string;
|
729
|
+
};
|
730
|
+
export declare type LeagueDailyResultInfo = {
|
731
|
+
date: string;
|
732
|
+
point: string;
|
733
|
+
rank: number;
|
734
|
+
winCount: number;
|
735
|
+
loseCount: number;
|
736
|
+
headline: string;
|
737
|
+
mvpCardId: string;
|
738
|
+
};
|
739
|
+
export declare type LeagueNewsInfo = {
|
740
|
+
date: string;
|
741
|
+
deckACards: LiveCardInfo[];
|
742
|
+
deckAWinCount: number;
|
743
|
+
deckALoseCount: number;
|
744
|
+
deckBCards: LiveCardInfo[];
|
745
|
+
deckBWinCount: number;
|
746
|
+
deckBLoseCount: number;
|
747
|
+
beforeRank: number;
|
748
|
+
beforePoint: string;
|
749
|
+
headline: string;
|
750
|
+
interview: string;
|
751
|
+
body: string;
|
752
|
+
thumbnailAssetId: string;
|
753
|
+
thumbnailShootMillisecond: number;
|
754
|
+
thumbnailEffectShootMilliseconds: number[];
|
755
|
+
mvpDeckType: LeagueDeckType;
|
756
|
+
mvpCardId: string;
|
757
|
+
mvpSeasonCardResultInfo: LeagueSeasonCardResultInfo;
|
758
|
+
mvpMusicId: string;
|
759
|
+
mvpStageId: string;
|
760
|
+
displayPositionCharacters: DeckPositionCharacter[];
|
761
|
+
};
|
762
|
+
export declare type LeaguePointRanking = {
|
763
|
+
userId: string;
|
764
|
+
name: string;
|
765
|
+
point: string;
|
766
|
+
rank: number;
|
767
|
+
deckACards: LiveCardInfo[];
|
768
|
+
deckBCards: LiveCardInfo[];
|
769
|
+
emblemId: string;
|
770
|
+
};
|
771
|
+
export declare type LeagueSeasonRewardInfo = {
|
772
|
+
upgradeRewardId: string;
|
773
|
+
stayRewardId: string;
|
774
|
+
downgradeRewardId: string;
|
775
|
+
};
|
708
776
|
export declare type LessonInfo = {
|
709
777
|
lessonProgress: ActivityLessonProgress;
|
710
778
|
campaignEffects: ActivityCampaignEffect[];
|
@@ -2054,6 +2122,13 @@ export declare type CardReleaseSupportRequest = {
|
|
2054
2122
|
export declare type CardReleaseSupportResponse = {
|
2055
2123
|
commonResponse: CommonResponse;
|
2056
2124
|
};
|
2125
|
+
export declare type CardRankUpRequest = {
|
2126
|
+
cardId: string;
|
2127
|
+
rank: number;
|
2128
|
+
};
|
2129
|
+
export declare type CardRankUpResponse = {
|
2130
|
+
commonResponse: CommonResponse;
|
2131
|
+
};
|
2057
2132
|
export declare type LoginBonusPackageItem = {
|
2058
2133
|
shopItem: ShopItem;
|
2059
2134
|
loginBonuses: ShopLoginBonus[];
|
@@ -2942,6 +3017,15 @@ export declare type HomePvpInfo = {
|
|
2942
3017
|
remainingChallengeCount: number;
|
2943
3018
|
latestPvpSeason: PvpSeasonInfo;
|
2944
3019
|
};
|
3020
|
+
export declare type HomeLeagueInfo = {
|
3021
|
+
nextBattleStartTime: string;
|
3022
|
+
battleEndTime: string;
|
3023
|
+
nextSeasonStartTime: string;
|
3024
|
+
statusType: LeagueStatusType;
|
3025
|
+
isNewsUnread: boolean;
|
3026
|
+
isNewSeasonNotJoined: boolean;
|
3027
|
+
isRemainingImperfectDeck: boolean;
|
3028
|
+
};
|
2945
3029
|
export declare type PvpRewardResultInfo = {
|
2946
3030
|
name: string;
|
2947
3031
|
point: string;
|
@@ -3051,6 +3135,17 @@ export declare type PurchasedConditionRewardShopInfo = {
|
|
3051
3135
|
shopInfo: ShopInfo;
|
3052
3136
|
conditionRewardPackageItem: ConditionRewardPackageItem;
|
3053
3137
|
};
|
3138
|
+
export declare type LeagueRewardResultInfo = {
|
3139
|
+
leagueSeasonName: string;
|
3140
|
+
leagueGradeName: string;
|
3141
|
+
seasonResultType: LeagueSeasonResultType;
|
3142
|
+
rank: number;
|
3143
|
+
point: string;
|
3144
|
+
winCount: number;
|
3145
|
+
loseCount: number;
|
3146
|
+
rewards: Reward[];
|
3147
|
+
highestLeagueGradeName: string;
|
3148
|
+
};
|
3054
3149
|
export declare type InviteTopResponse = {
|
3055
3150
|
inviteCode: string;
|
3056
3151
|
guestInfos: InviteGuestInfo[];
|
@@ -3099,6 +3194,171 @@ export declare type LadderPanelReachResponse = {
|
|
3099
3194
|
reachablePanelCount: number;
|
3100
3195
|
commonResponse: CommonResponse;
|
3101
3196
|
};
|
3197
|
+
export declare type LeagueTopResponse = {
|
3198
|
+
seasonInfo: LeagueSeasonInfo;
|
3199
|
+
newsInfo: LeagueNewsInfo;
|
3200
|
+
seasonResultInfo: LeagueSeasonResultInfo;
|
3201
|
+
dailyResultInfos: LeagueDailyResultInfo[];
|
3202
|
+
seasonCardResultInfos: LeagueSeasonCardResultInfo[];
|
3203
|
+
deckInfos: LeagueDeckInfo[];
|
3204
|
+
deckHistoryInfos: LeagueDeckHistoryInfo[];
|
3205
|
+
rankExistInfo: LeagueRankExistInfo;
|
3206
|
+
commonResponse: CommonResponse;
|
3207
|
+
};
|
3208
|
+
export declare type LeagueSeasonInfo = {
|
3209
|
+
id: string;
|
3210
|
+
name: string;
|
3211
|
+
endTime: string;
|
3212
|
+
deckABattleQuestInfo: LiveBattleQuestInfo;
|
3213
|
+
deckBBattleQuestInfo: LiveBattleQuestInfo;
|
3214
|
+
nextSeasonDeckABattleQuestInfo: LiveBattleQuestInfo;
|
3215
|
+
nextSeasonDeckBBattleQuestInfo: LiveBattleQuestInfo;
|
3216
|
+
rewardInfo: LeagueSeasonRewardInfo;
|
3217
|
+
nextBattleStartTime: string;
|
3218
|
+
skillActivationRateValidJoinCount: number;
|
3219
|
+
nextId: string;
|
3220
|
+
preId: string;
|
3221
|
+
};
|
3222
|
+
export declare type LeagueSeasonResultInfo = {
|
3223
|
+
leagueGradeName: string;
|
3224
|
+
point: string;
|
3225
|
+
rank: number;
|
3226
|
+
winCount: number;
|
3227
|
+
loseCount: number;
|
3228
|
+
seasonResultType: LeagueSeasonResultType;
|
3229
|
+
upgradeRankThreshold: string;
|
3230
|
+
upgradeLeagueGradeName: string;
|
3231
|
+
downgradeRankThreshold: string;
|
3232
|
+
downgradeLeagueGradeName: string;
|
3233
|
+
highestLeagueGradeName: string;
|
3234
|
+
lowestLeagueGradeName: string;
|
3235
|
+
memberAmount: number;
|
3236
|
+
};
|
3237
|
+
export declare type LeagueSeasonCardResultInfo = {
|
3238
|
+
cardInfo: LeagueCardInfo;
|
3239
|
+
highestScore: string;
|
3240
|
+
skillActivationRatePermil: number;
|
3241
|
+
mvpCount: number;
|
3242
|
+
highestScoreCardRank: number;
|
3243
|
+
skillActivationRateCardRank: number;
|
3244
|
+
mvpCountCardRank: number;
|
3245
|
+
highestScoreLeagueRank: number;
|
3246
|
+
skillActivationRateLeagueRank: number;
|
3247
|
+
mvpCountLeagueRank: number;
|
3248
|
+
joinCount: number;
|
3249
|
+
};
|
3250
|
+
export declare type LeagueGetDailyDetailRequest = {
|
3251
|
+
seasonId: string;
|
3252
|
+
date: string;
|
3253
|
+
};
|
3254
|
+
export declare type LeagueGetDailyDetailResponse = {
|
3255
|
+
deckACards: LiveCardInfo[];
|
3256
|
+
deckBCards: LiveCardInfo[];
|
3257
|
+
battleResultInfos: LeagueBattleResultInfo[];
|
3258
|
+
winCount: number;
|
3259
|
+
loseCount: number;
|
3260
|
+
point: string;
|
3261
|
+
rank: number;
|
3262
|
+
commonResponse: CommonResponse;
|
3263
|
+
};
|
3264
|
+
export declare type LeagueBattleResultInfo = {
|
3265
|
+
opponentUserId: string;
|
3266
|
+
opponentUserName: string;
|
3267
|
+
opponentDeckACards: LiveCardInfo[];
|
3268
|
+
deckASelfScore: string;
|
3269
|
+
deckAOpponentScore: string;
|
3270
|
+
opponentDeckBCards: LiveCardInfo[];
|
3271
|
+
deckBSelfScore: string;
|
3272
|
+
deckBOpponentScore: string;
|
3273
|
+
};
|
3274
|
+
export declare type LeagueOpponentInfo = {
|
3275
|
+
userId: string;
|
3276
|
+
name: string;
|
3277
|
+
deckACards: LiveCardInfo[];
|
3278
|
+
deckBCards: LiveCardInfo[];
|
3279
|
+
};
|
3280
|
+
export declare type LeagueGetLiveResultRequest = {
|
3281
|
+
seasonId: string;
|
3282
|
+
date: string;
|
3283
|
+
userId: string;
|
3284
|
+
deckType: LeagueDeckType;
|
3285
|
+
};
|
3286
|
+
export declare type LeagueGetLiveResultResponse = {
|
3287
|
+
result: LiveResult;
|
3288
|
+
commonResponse: CommonResponse;
|
3289
|
+
};
|
3290
|
+
export declare type LeagueSaveDeckRequest = {
|
3291
|
+
seasonId: string;
|
3292
|
+
deckType: LeagueDeckType;
|
3293
|
+
deckPositions: UserDeckPosition[];
|
3294
|
+
deckEditType: DeckEditType;
|
3295
|
+
};
|
3296
|
+
export declare type LeagueSaveDeckResponse = {
|
3297
|
+
deckPositions: UserDeckPosition[];
|
3298
|
+
commonResponse: CommonResponse;
|
3299
|
+
};
|
3300
|
+
export declare type LeagueDeckInfo = {
|
3301
|
+
seasonId: string;
|
3302
|
+
deckType: LeagueDeckType;
|
3303
|
+
deckPositions: UserDeckPosition[];
|
3304
|
+
winCount: number;
|
3305
|
+
loseCount: number;
|
3306
|
+
consecutiveWinCount: number;
|
3307
|
+
};
|
3308
|
+
export declare type LeagueDeckHistoryInfo = {
|
3309
|
+
date: string;
|
3310
|
+
deckACards: LiveCardInfo[];
|
3311
|
+
deckAWinCount: number;
|
3312
|
+
deckALoseCount: number;
|
3313
|
+
deckBCards: LiveCardInfo[];
|
3314
|
+
deckBWinCount: number;
|
3315
|
+
deckBLoseCount: number;
|
3316
|
+
};
|
3317
|
+
export declare type LeagueGetLastSeasonResultResponse = {
|
3318
|
+
seasonName: string;
|
3319
|
+
seasonResultInfo: LeagueSeasonResultInfo;
|
3320
|
+
dailyResultInfos: LeagueDailyResultInfo[];
|
3321
|
+
seasonCardResultInfos: LeagueSeasonCardResultInfo[];
|
3322
|
+
skillActivationRateValidJoinCount: number;
|
3323
|
+
rankExistInfo: LeagueRankExistInfo;
|
3324
|
+
commonResponse: CommonResponse;
|
3325
|
+
};
|
3326
|
+
export declare type LeagueListPointRankingRequest = {
|
3327
|
+
seasonId: string;
|
3328
|
+
};
|
3329
|
+
export declare type LeagueListPointRankingResponse = {
|
3330
|
+
rankings: LeaguePointRanking[];
|
3331
|
+
commonResponse: CommonResponse;
|
3332
|
+
};
|
3333
|
+
export declare type LeagueListCardHighestScoreRankingRequest = {
|
3334
|
+
seasonId: string;
|
3335
|
+
};
|
3336
|
+
export declare type LeagueListCardHighestScoreRankingResponse = {
|
3337
|
+
rankings: LeagueCardRanking[];
|
3338
|
+
commonResponse: CommonResponse;
|
3339
|
+
};
|
3340
|
+
export declare type LeagueListCardSkillRateRankingRequest = {
|
3341
|
+
seasonId: string;
|
3342
|
+
};
|
3343
|
+
export declare type LeagueListCardSkillRateRankingResponse = {
|
3344
|
+
rankings: LeagueCardRanking[];
|
3345
|
+
commonResponse: CommonResponse;
|
3346
|
+
};
|
3347
|
+
export declare type LeagueListCardMvpRankingRequest = {
|
3348
|
+
seasonId: string;
|
3349
|
+
};
|
3350
|
+
export declare type LeagueListCardMvpRankingResponse = {
|
3351
|
+
rankings: LeagueCardRanking[];
|
3352
|
+
commonResponse: CommonResponse;
|
3353
|
+
};
|
3354
|
+
export declare type LeagueRankExistInfo = {
|
3355
|
+
isPointExist: boolean;
|
3356
|
+
cardRankExistInfos: LeagueCardRankExistInfo[];
|
3357
|
+
};
|
3358
|
+
export declare type LeagueCardRankExistInfo = {
|
3359
|
+
resultType: LeagueSeasonCardResultType;
|
3360
|
+
isExist: boolean;
|
3361
|
+
};
|
3102
3362
|
export declare type LoginBonusListResponse = {
|
3103
3363
|
infos: LoginBonusInfo[];
|
3104
3364
|
commonResponse: CommonResponse;
|
@@ -257,7 +257,10 @@ export declare enum ErrorCode {
|
|
257
257
|
InviteWrongCode = 3030,
|
258
258
|
InviteHostGuestLimit = 3031,
|
259
259
|
InviteEnterCodeNotAllowed = 3032,
|
260
|
-
MarathonRaidFinished = 3033
|
260
|
+
MarathonRaidFinished = 3033,
|
261
|
+
LeagueSeasonNotOpened = 3034,
|
262
|
+
LeagueInBattle = 3035,
|
263
|
+
LeagueInBattleExtension = 3036
|
261
264
|
}
|
262
265
|
export declare enum EventMissionType {
|
263
266
|
Unknown = 0,
|
@@ -311,7 +314,9 @@ export declare enum FunctionLockType {
|
|
311
314
|
AuthDelete = 25,
|
312
315
|
BuddyUseQuestContest = 26,
|
313
316
|
Exercise = 27,
|
314
|
-
BuddyUseMarathon = 28
|
317
|
+
BuddyUseMarathon = 28,
|
318
|
+
CardRankUp = 29,
|
319
|
+
League = 30
|
315
320
|
}
|
316
321
|
export declare enum FunctionMaintenanceType {
|
317
322
|
Unknown = 0,
|
@@ -550,7 +555,11 @@ export declare enum HelpDisplayTargetType {
|
|
550
555
|
MarathonRaidTop = 157,
|
551
556
|
MarathonRaidLiveQuestSelect = 158,
|
552
557
|
MarathonRaidLiveDeckSelect = 159,
|
553
|
-
MarathonRaidLiveBattleDeckSelect = 160
|
558
|
+
MarathonRaidLiveBattleDeckSelect = 160,
|
559
|
+
LeagueTop = 161,
|
560
|
+
LeagueLiveNews = 162,
|
561
|
+
LeagueLiveDeckSelect = 163,
|
562
|
+
LeagueLastSeasonRecord = 164
|
554
563
|
}
|
555
564
|
export declare enum HelpType {
|
556
565
|
Unknown = 0,
|
@@ -599,6 +608,7 @@ export declare enum ItemType {
|
|
599
608
|
PhotoShootingLevelChange = 13,
|
600
609
|
AccessoryLimitBreak = 14,
|
601
610
|
PhotoInk = 15,
|
611
|
+
CardRank = 16,
|
602
612
|
ActivityRefreshShorten = 1001,
|
603
613
|
ActivityPromotionShorten = 1002,
|
604
614
|
ActivityFanEventSuperMode = 1003,
|
@@ -634,6 +644,30 @@ export declare enum LadderPanelType {
|
|
634
644
|
Reward = 1,
|
635
645
|
Message = 2
|
636
646
|
}
|
647
|
+
export declare enum LeagueDeckType {
|
648
|
+
Unknown = 0,
|
649
|
+
A = 1,
|
650
|
+
B = 2
|
651
|
+
}
|
652
|
+
export declare enum LeagueSeasonCardResultType {
|
653
|
+
Unknown = 0,
|
654
|
+
HighestScore = 1,
|
655
|
+
SkillActivationRate = 2,
|
656
|
+
MvpCount = 3
|
657
|
+
}
|
658
|
+
export declare enum LeagueSeasonResultType {
|
659
|
+
Unknown = 0,
|
660
|
+
Upgrade = 1,
|
661
|
+
Stay = 2,
|
662
|
+
Downgrade = 3
|
663
|
+
}
|
664
|
+
export declare enum LeagueStatusType {
|
665
|
+
Unknown = 0,
|
666
|
+
Prepare = 1,
|
667
|
+
Battle = 2,
|
668
|
+
BattleExtension = 3,
|
669
|
+
NotOpened = 4
|
670
|
+
}
|
637
671
|
export declare enum LinkType {
|
638
672
|
Unknown = 0,
|
639
673
|
Activity = 1,
|
@@ -1274,7 +1308,8 @@ export declare enum RewardSortResourceType {
|
|
1274
1308
|
ItemMarathonRaidStaminaRecovery = 61,
|
1275
1309
|
ItemActivityFanEventRewardUp = 62,
|
1276
1310
|
ItemActivityLessonPromote = 63,
|
1277
|
-
ItemActivityPromotionSpecialShorten = 65
|
1311
|
+
ItemActivityPromotionSpecialShorten = 65,
|
1312
|
+
ItemCardRank = 66
|
1278
1313
|
}
|
1279
1314
|
export declare enum RewardSortTargetType {
|
1280
1315
|
Unknown = 0,
|
@@ -1695,5 +1730,7 @@ export declare enum TutorialType {
|
|
1695
1730
|
Ladder = 28,
|
1696
1731
|
PhotoRetouch = 29,
|
1697
1732
|
Collaboration = 30,
|
1698
|
-
MarathonRaid = 31
|
1733
|
+
MarathonRaid = 31,
|
1734
|
+
League = 32,
|
1735
|
+
CardRank = 33
|
1699
1736
|
}
|
@@ -2,8 +2,8 @@
|
|
2
2
|
// Generated from ProtoEnum.proto
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
4
4
|
exports.HomePlaceType = exports.HomeActionType = exports.HierarchyRewardType = exports.HelpType = exports.HelpDisplayTargetType = exports.GvgMatchResultType = exports.GvgChallengeConsumptionType = exports.GraphicType = exports.GiftSortType = exports.GiftFilterType = exports.GachaType = exports.GachaRewardPatternType = exports.GachaLimitType = exports.GachaContinuousResultType = exports.GachaAnimationEmbeddedType = exports.FunctionMaintenanceType = exports.FunctionLockType = exports.ForumListReplyRequestType = exports.ExtraStoryPartType = exports.ExerciseHintType = exports.EventMissionType = exports.ErrorCode = exports.DokanType = exports.DokanTargetType = exports.DivisionCannotMoveReasonType = exports.DeckEditType = exports.DayOfWeekType = exports.CharacterType = exports.CharacterSdPersonalityType = exports.CharacterPersonalityType = exports.CardType = exports.CardLevelReleaseType = exports.CardImageType = exports.BoxGachaItemType = exports.BacksideType = exports.BacksideStageType = exports.BacksidePracticeRankType = exports.BacksidePanelType = exports.BacksidePanelAttributeType = exports.BacksideDifficultyType = exports.BacksideAreaType = exports.AttributeType = exports.AssetDownloadType = exports.AreaType = exports.ActivityFanEventType = exports.ActivityFanEventHappeningType = exports.ActivityCampaignEffectType = exports.ActivityAbilityType = exports.AccessoryParameterType = exports.AccessoryCategoryType = void 0;
|
5
|
-
exports.
|
6
|
-
exports.TutorialType = exports.TutorialNavigationType = exports.TutorialNavigationPositionType = exports.TourType = exports.TourStepType = exports.TourEnemyType = exports.TourAreaType = exports.TitleBackgroundType = exports.TelephoneStatusType = exports.StoryStatusType = exports.StoryPartType = exports.StoryAdvPlayType = exports.StatusEffectType = exports.StatusEffectGroupType = exports.StageType = exports.StageSizeType = exports.SpecialSkillResultType = exports.SpecialSkillCameraOrientationType = exports.SkillTriggerType = exports.SkillTargetType = exports.SkillPossessionType = exports.SkillFailureType = exports.SkillEfficacyType = exports.SkillEfficacyIconType = exports.SkillCategoryType = exports.SimpleCharacterPersonalityType = exports.ShopType = exports.ShopConditionRewardStatusType = exports.ScreenChangeVoiceType = exports.SalaryDetailType = exports.RuleType = exports.RewardSortTargetType = exports.RewardSortResourceType = exports.ResultRankType = exports.ResourceType = exports.ResetTimingType = exports.RaceRankingType = void 0;
|
5
|
+
exports.ProfileLayoutType = exports.ProfileInformationType = exports.ProfileColorType = exports.ProfileBackgroundType = exports.PointType = exports.PlatformType = exports.PhotoShootingMotionType = exports.PhotoShootingActionType = exports.PhotoImageType = exports.PhotoImageRequestType = exports.PhotoContestEvaluationRankType = exports.PhotoContestBaseGuideRankType = exports.PhotoContestBaseEvaluationType = exports.PhotoAbilityType = exports.PhotoAbilityTargetType = exports.PhotoAbilityGradeType = exports.ParameterType = exports.NotificationType = exports.NoticeCategoryType = exports.MusicChartType = exports.MotionResultRankType = exports.MoodType = exports.MissionType = exports.MissionStatusType = exports.MissionCategoryType = exports.MessageType = exports.MessageStatusType = exports.MessageRarityType = exports.MessageInstantType = exports.MarathonType = exports.MarathonRaidStatusType = exports.MarathonRaidProgressType = exports.LoginBonusType = exports.LoadingType = exports.LoadingDisplayTargetType = exports.LiveType = exports.LiveTipType = exports.LiveSkipType = exports.LiveResultType = exports.LiveAbilityType = exports.LiveAbilityLevelBackgroundRankType = exports.LinkType = exports.LeagueStatusType = exports.LeagueSeasonResultType = exports.LeagueSeasonCardResultType = exports.LeagueDeckType = exports.LadderPanelType = exports.JoinedGuildType = exports.ItemType = exports.HomePositionType = void 0;
|
6
|
+
exports.TutorialType = exports.TutorialNavigationType = exports.TutorialNavigationPositionType = exports.TourType = exports.TourStepType = exports.TourEnemyType = exports.TourAreaType = exports.TitleBackgroundType = exports.TelephoneStatusType = exports.StoryStatusType = exports.StoryPartType = exports.StoryAdvPlayType = exports.StatusEffectType = exports.StatusEffectGroupType = exports.StageType = exports.StageSizeType = exports.SpecialSkillResultType = exports.SpecialSkillCameraOrientationType = exports.SkillTriggerType = exports.SkillTargetType = exports.SkillPossessionType = exports.SkillFailureType = exports.SkillEfficacyType = exports.SkillEfficacyIconType = exports.SkillCategoryType = exports.SimpleCharacterPersonalityType = exports.ShopType = exports.ShopConditionRewardStatusType = exports.ScreenChangeVoiceType = exports.SalaryDetailType = exports.RuleType = exports.RewardSortTargetType = exports.RewardSortResourceType = exports.ResultRankType = exports.ResourceType = exports.ResetTimingType = exports.RaceRankingType = exports.RacePanelType = exports.RaceActivityLessonRewardType = exports.PsylliumColorType = exports.ProviderType = void 0;
|
7
7
|
var AccessoryCategoryType;
|
8
8
|
(function (AccessoryCategoryType) {
|
9
9
|
AccessoryCategoryType[AccessoryCategoryType["Unknown"] = 0] = "Unknown";
|
@@ -293,6 +293,9 @@ var ErrorCode;
|
|
293
293
|
ErrorCode[ErrorCode["InviteHostGuestLimit"] = 3031] = "InviteHostGuestLimit";
|
294
294
|
ErrorCode[ErrorCode["InviteEnterCodeNotAllowed"] = 3032] = "InviteEnterCodeNotAllowed";
|
295
295
|
ErrorCode[ErrorCode["MarathonRaidFinished"] = 3033] = "MarathonRaidFinished";
|
296
|
+
ErrorCode[ErrorCode["LeagueSeasonNotOpened"] = 3034] = "LeagueSeasonNotOpened";
|
297
|
+
ErrorCode[ErrorCode["LeagueInBattle"] = 3035] = "LeagueInBattle";
|
298
|
+
ErrorCode[ErrorCode["LeagueInBattleExtension"] = 3036] = "LeagueInBattleExtension";
|
296
299
|
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
297
300
|
var EventMissionType;
|
298
301
|
(function (EventMissionType) {
|
@@ -352,6 +355,8 @@ var FunctionLockType;
|
|
352
355
|
FunctionLockType[FunctionLockType["BuddyUseQuestContest"] = 26] = "BuddyUseQuestContest";
|
353
356
|
FunctionLockType[FunctionLockType["Exercise"] = 27] = "Exercise";
|
354
357
|
FunctionLockType[FunctionLockType["BuddyUseMarathon"] = 28] = "BuddyUseMarathon";
|
358
|
+
FunctionLockType[FunctionLockType["CardRankUp"] = 29] = "CardRankUp";
|
359
|
+
FunctionLockType[FunctionLockType["League"] = 30] = "League";
|
355
360
|
})(FunctionLockType = exports.FunctionLockType || (exports.FunctionLockType = {}));
|
356
361
|
var FunctionMaintenanceType;
|
357
362
|
(function (FunctionMaintenanceType) {
|
@@ -603,6 +608,10 @@ var HelpDisplayTargetType;
|
|
603
608
|
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidLiveQuestSelect"] = 158] = "MarathonRaidLiveQuestSelect";
|
604
609
|
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidLiveDeckSelect"] = 159] = "MarathonRaidLiveDeckSelect";
|
605
610
|
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidLiveBattleDeckSelect"] = 160] = "MarathonRaidLiveBattleDeckSelect";
|
611
|
+
HelpDisplayTargetType[HelpDisplayTargetType["LeagueTop"] = 161] = "LeagueTop";
|
612
|
+
HelpDisplayTargetType[HelpDisplayTargetType["LeagueLiveNews"] = 162] = "LeagueLiveNews";
|
613
|
+
HelpDisplayTargetType[HelpDisplayTargetType["LeagueLiveDeckSelect"] = 163] = "LeagueLiveDeckSelect";
|
614
|
+
HelpDisplayTargetType[HelpDisplayTargetType["LeagueLastSeasonRecord"] = 164] = "LeagueLastSeasonRecord";
|
606
615
|
})(HelpDisplayTargetType = exports.HelpDisplayTargetType || (exports.HelpDisplayTargetType = {}));
|
607
616
|
var HelpType;
|
608
617
|
(function (HelpType) {
|
@@ -657,6 +666,7 @@ var ItemType;
|
|
657
666
|
ItemType[ItemType["PhotoShootingLevelChange"] = 13] = "PhotoShootingLevelChange";
|
658
667
|
ItemType[ItemType["AccessoryLimitBreak"] = 14] = "AccessoryLimitBreak";
|
659
668
|
ItemType[ItemType["PhotoInk"] = 15] = "PhotoInk";
|
669
|
+
ItemType[ItemType["CardRank"] = 16] = "CardRank";
|
660
670
|
ItemType[ItemType["ActivityRefreshShorten"] = 1001] = "ActivityRefreshShorten";
|
661
671
|
ItemType[ItemType["ActivityPromotionShorten"] = 1002] = "ActivityPromotionShorten";
|
662
672
|
ItemType[ItemType["ActivityFanEventSuperMode"] = 1003] = "ActivityFanEventSuperMode";
|
@@ -694,6 +704,34 @@ var LadderPanelType;
|
|
694
704
|
LadderPanelType[LadderPanelType["Reward"] = 1] = "Reward";
|
695
705
|
LadderPanelType[LadderPanelType["Message"] = 2] = "Message";
|
696
706
|
})(LadderPanelType = exports.LadderPanelType || (exports.LadderPanelType = {}));
|
707
|
+
var LeagueDeckType;
|
708
|
+
(function (LeagueDeckType) {
|
709
|
+
LeagueDeckType[LeagueDeckType["Unknown"] = 0] = "Unknown";
|
710
|
+
LeagueDeckType[LeagueDeckType["A"] = 1] = "A";
|
711
|
+
LeagueDeckType[LeagueDeckType["B"] = 2] = "B";
|
712
|
+
})(LeagueDeckType = exports.LeagueDeckType || (exports.LeagueDeckType = {}));
|
713
|
+
var LeagueSeasonCardResultType;
|
714
|
+
(function (LeagueSeasonCardResultType) {
|
715
|
+
LeagueSeasonCardResultType[LeagueSeasonCardResultType["Unknown"] = 0] = "Unknown";
|
716
|
+
LeagueSeasonCardResultType[LeagueSeasonCardResultType["HighestScore"] = 1] = "HighestScore";
|
717
|
+
LeagueSeasonCardResultType[LeagueSeasonCardResultType["SkillActivationRate"] = 2] = "SkillActivationRate";
|
718
|
+
LeagueSeasonCardResultType[LeagueSeasonCardResultType["MvpCount"] = 3] = "MvpCount";
|
719
|
+
})(LeagueSeasonCardResultType = exports.LeagueSeasonCardResultType || (exports.LeagueSeasonCardResultType = {}));
|
720
|
+
var LeagueSeasonResultType;
|
721
|
+
(function (LeagueSeasonResultType) {
|
722
|
+
LeagueSeasonResultType[LeagueSeasonResultType["Unknown"] = 0] = "Unknown";
|
723
|
+
LeagueSeasonResultType[LeagueSeasonResultType["Upgrade"] = 1] = "Upgrade";
|
724
|
+
LeagueSeasonResultType[LeagueSeasonResultType["Stay"] = 2] = "Stay";
|
725
|
+
LeagueSeasonResultType[LeagueSeasonResultType["Downgrade"] = 3] = "Downgrade";
|
726
|
+
})(LeagueSeasonResultType = exports.LeagueSeasonResultType || (exports.LeagueSeasonResultType = {}));
|
727
|
+
var LeagueStatusType;
|
728
|
+
(function (LeagueStatusType) {
|
729
|
+
LeagueStatusType[LeagueStatusType["Unknown"] = 0] = "Unknown";
|
730
|
+
LeagueStatusType[LeagueStatusType["Prepare"] = 1] = "Prepare";
|
731
|
+
LeagueStatusType[LeagueStatusType["Battle"] = 2] = "Battle";
|
732
|
+
LeagueStatusType[LeagueStatusType["BattleExtension"] = 3] = "BattleExtension";
|
733
|
+
LeagueStatusType[LeagueStatusType["NotOpened"] = 4] = "NotOpened";
|
734
|
+
})(LeagueStatusType = exports.LeagueStatusType || (exports.LeagueStatusType = {}));
|
697
735
|
var LinkType;
|
698
736
|
(function (LinkType) {
|
699
737
|
LinkType[LinkType["Unknown"] = 0] = "Unknown";
|
@@ -1386,6 +1424,7 @@ var RewardSortResourceType;
|
|
1386
1424
|
RewardSortResourceType[RewardSortResourceType["ItemActivityFanEventRewardUp"] = 62] = "ItemActivityFanEventRewardUp";
|
1387
1425
|
RewardSortResourceType[RewardSortResourceType["ItemActivityLessonPromote"] = 63] = "ItemActivityLessonPromote";
|
1388
1426
|
RewardSortResourceType[RewardSortResourceType["ItemActivityPromotionSpecialShorten"] = 65] = "ItemActivityPromotionSpecialShorten";
|
1427
|
+
RewardSortResourceType[RewardSortResourceType["ItemCardRank"] = 66] = "ItemCardRank";
|
1389
1428
|
})(RewardSortResourceType = exports.RewardSortResourceType || (exports.RewardSortResourceType = {}));
|
1390
1429
|
var RewardSortTargetType;
|
1391
1430
|
(function (RewardSortTargetType) {
|
@@ -1839,5 +1878,7 @@ var TutorialType;
|
|
1839
1878
|
TutorialType[TutorialType["PhotoRetouch"] = 29] = "PhotoRetouch";
|
1840
1879
|
TutorialType[TutorialType["Collaboration"] = 30] = "Collaboration";
|
1841
1880
|
TutorialType[TutorialType["MarathonRaid"] = 31] = "MarathonRaid";
|
1881
|
+
TutorialType[TutorialType["League"] = 32] = "League";
|
1882
|
+
TutorialType[TutorialType["CardRank"] = 33] = "CardRank";
|
1842
1883
|
})(TutorialType = exports.TutorialType || (exports.TutorialType = {}));
|
1843
1884
|
//# sourceMappingURL=proto_enum.js.map
|