hoshimi-venus 0.1.0 → 0.1.2
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/README.md +2 -0
- package/out/database/Card.json +281 -0
- package/out/database/Character.json +3732 -0
- package/out/database/LiveAbility.json +85 -6
- package/out/database/LiveBonus.json +6 -0
- package/out/database/LiveBonusGroup.json +29 -23
- package/out/database/Music.json +3505 -1579
- package/out/database/MusicChartPattern.json +20312 -16940
- package/out/database/Quest.json +6962 -2071
- package/out/database/Setting.json +2 -5
- package/out/database/Skill.json +2314 -2
- package/out/database/SkillEfficacy.json +987 -47
- package/out/db/dao/card_dao.d.ts +2 -1
- package/out/db/dao/card_dao.js +5 -1
- package/out/db/dao/card_dao.js.map +1 -1
- package/out/db/dao/character_dao.d.ts +3 -0
- package/out/db/dao/character_dao.js +15 -0
- package/out/db/dao/character_dao.js.map +1 -0
- package/out/main.js.map +1 -1
- package/out/types/proto/proto_api.d.ts +490 -55
- package/out/types/proto/proto_enum.d.ts +104 -12
- package/out/types/proto/proto_enum.js +122 -23
- package/out/types/proto/proto_enum.js.map +1 -1
- package/out/types/proto/proto_master.d.ts +185 -13
- package/out/types/proto/proto_transaction.d.ts +8 -0
- package/package.json +1 -1
@@ -54,7 +54,8 @@ export declare enum AreaType {
|
|
54
54
|
Daily = 3,
|
55
55
|
Tower = 4,
|
56
56
|
SubTower = 5,
|
57
|
-
Tutorial = 101
|
57
|
+
Tutorial = 101,
|
58
|
+
Exercise = 102
|
58
59
|
}
|
59
60
|
export declare enum AssetDownloadType {
|
60
61
|
Unknown = 0,
|
@@ -157,6 +158,13 @@ export declare enum CharacterSdPersonalityType {
|
|
157
158
|
Stylish = 4,
|
158
159
|
Carefree = 5
|
159
160
|
}
|
161
|
+
export declare enum CharacterType {
|
162
|
+
Unknown = 0,
|
163
|
+
Normal = 1,
|
164
|
+
Npc = 2,
|
165
|
+
Memories = 3,
|
166
|
+
Collaboration = 4
|
167
|
+
}
|
160
168
|
export declare enum DayOfWeekType {
|
161
169
|
Unknown = 0,
|
162
170
|
Sunday = 1,
|
@@ -201,7 +209,8 @@ export declare enum DokanType {
|
|
201
209
|
VerticalAdv = 4,
|
202
210
|
VerticalMovie = 5,
|
203
211
|
HorizontalMovie = 6,
|
204
|
-
Story = 7
|
212
|
+
Story = 7,
|
213
|
+
Free = 8
|
205
214
|
}
|
206
215
|
export declare enum ErrorCode {
|
207
216
|
Unknown = 0,
|
@@ -215,6 +224,7 @@ export declare enum ErrorCode {
|
|
215
224
|
RequestLocked = 2003,
|
216
225
|
Unauthenticated = 2004,
|
217
226
|
LockFailed = 2005,
|
227
|
+
UserDeleted = 2006,
|
218
228
|
ContainsNgword = 3001,
|
219
229
|
OpponentNotFound = 3002,
|
220
230
|
PasswordMigrationFailed = 3003,
|
@@ -246,13 +256,24 @@ export declare enum ErrorCode {
|
|
246
256
|
NotInCoolTime = 3029,
|
247
257
|
InviteWrongCode = 3030,
|
248
258
|
InviteHostGuestLimit = 3031,
|
249
|
-
InviteEnterCodeNotAllowed = 3032
|
259
|
+
InviteEnterCodeNotAllowed = 3032,
|
260
|
+
MarathonRaidFinished = 3033
|
250
261
|
}
|
251
262
|
export declare enum EventMissionType {
|
252
263
|
Unknown = 0,
|
253
264
|
Event = 1,
|
254
265
|
Campaign = 2
|
255
266
|
}
|
267
|
+
export declare enum ExerciseHintType {
|
268
|
+
Unknown = 0,
|
269
|
+
Initial = 1,
|
270
|
+
AfterFailed = 2
|
271
|
+
}
|
272
|
+
export declare enum ExtraStoryPartType {
|
273
|
+
Unknown = 0,
|
274
|
+
Normal = 1,
|
275
|
+
Limited = 2
|
276
|
+
}
|
256
277
|
export declare enum ForumListReplyRequestType {
|
257
278
|
Unknown = 0,
|
258
279
|
Newest = 1,
|
@@ -286,7 +307,11 @@ export declare enum FunctionLockType {
|
|
286
307
|
Invite = 21,
|
287
308
|
PhotoRetouch = 22,
|
288
309
|
InviteHost = 23,
|
289
|
-
BuddyUse = 24
|
310
|
+
BuddyUse = 24,
|
311
|
+
AuthDelete = 25,
|
312
|
+
BuddyUseQuestContest = 26,
|
313
|
+
Exercise = 27,
|
314
|
+
BuddyUseMarathon = 28
|
290
315
|
}
|
291
316
|
export declare enum FunctionMaintenanceType {
|
292
317
|
Unknown = 0,
|
@@ -328,7 +353,8 @@ export declare enum GachaType {
|
|
328
353
|
Normal = 1,
|
329
354
|
Item = 2,
|
330
355
|
Premium = 3,
|
331
|
-
Continuous = 4
|
356
|
+
Continuous = 4,
|
357
|
+
Stamp = 5
|
332
358
|
}
|
333
359
|
export declare enum GiftFilterType {
|
334
360
|
Unknown = 0,
|
@@ -512,7 +538,19 @@ export declare enum HelpDisplayTargetType {
|
|
512
538
|
DeckFriendCardEdit = 145,
|
513
539
|
FriendSearch = 146,
|
514
540
|
FriendTop = 147,
|
515
|
-
FriendCode = 148
|
541
|
+
FriendCode = 148,
|
542
|
+
ExerciseTop = 149,
|
543
|
+
ExerciseDeckEdit = 150,
|
544
|
+
ExerciseDeckPhotoEdit = 151,
|
545
|
+
ExerciseDeckAccessoryEdit = 152,
|
546
|
+
ExerciseLiveDeckSelect = 153,
|
547
|
+
ExerciseLiveBattleDeckSelect = 154,
|
548
|
+
ExerciseLiveResult = 155,
|
549
|
+
MarathonRaidList = 156,
|
550
|
+
MarathonRaidTop = 157,
|
551
|
+
MarathonRaidLiveQuestSelect = 158,
|
552
|
+
MarathonRaidLiveDeckSelect = 159,
|
553
|
+
MarathonRaidLiveBattleDeckSelect = 160
|
516
554
|
}
|
517
555
|
export declare enum HelpType {
|
518
556
|
Unknown = 0,
|
@@ -566,6 +604,9 @@ export declare enum ItemType {
|
|
566
604
|
ActivityFanEventSuperMode = 1003,
|
567
605
|
ActivityFanEventSpeedUp = 1004,
|
568
606
|
ActivityFanEventCheerPointUp = 1005,
|
607
|
+
ActivityFanEventRewardUp = 1006,
|
608
|
+
ActivityLessonPromote = 1007,
|
609
|
+
ActivityPromotionSpecialShorten = 1008,
|
569
610
|
QuestDailyGoldTicket = 2001,
|
570
611
|
QuestDailyCardEnhanceTicket = 2002,
|
571
612
|
QuestDailyPhotoTicketTicket = 2003,
|
@@ -576,6 +617,7 @@ export declare enum ItemType {
|
|
576
617
|
BoxGachaPoint = 4001,
|
577
618
|
MarathonStaminaRecovery = 5001,
|
578
619
|
MarathonQuestUnlock = 5002,
|
620
|
+
MarathonRaidStaminaRecovery = 5003,
|
579
621
|
PhotoContestSubmitting = 6001,
|
580
622
|
PhotoContestCreating = 6002,
|
581
623
|
RacePoint = 7001,
|
@@ -686,7 +728,8 @@ export declare enum LiveSkipType {
|
|
686
728
|
Unknown = 0,
|
687
729
|
None = 1,
|
688
730
|
Always = 2,
|
689
|
-
AfterPlay = 3
|
731
|
+
AfterPlay = 3,
|
732
|
+
AlwaysFullSkip = 4
|
690
733
|
}
|
691
734
|
export declare enum LiveTipType {
|
692
735
|
Unknown = 0,
|
@@ -749,6 +792,23 @@ export declare enum LoginBonusType {
|
|
749
792
|
Normal = 1,
|
750
793
|
Event = 2
|
751
794
|
}
|
795
|
+
export declare enum MarathonRaidProgressType {
|
796
|
+
Unknown = 0,
|
797
|
+
Joinable = 1,
|
798
|
+
Progressing = 2,
|
799
|
+
Finished = 3,
|
800
|
+
History = 4
|
801
|
+
}
|
802
|
+
export declare enum MarathonRaidStatusType {
|
803
|
+
Unknown = 0,
|
804
|
+
Joined = 1,
|
805
|
+
Finished = 2
|
806
|
+
}
|
807
|
+
export declare enum MarathonType {
|
808
|
+
Unknown = 0,
|
809
|
+
Normal = 1,
|
810
|
+
Raid = 2
|
811
|
+
}
|
752
812
|
export declare enum MessageInstantType {
|
753
813
|
Unknown = 0,
|
754
814
|
Login = 1,
|
@@ -843,6 +903,17 @@ export declare enum MissionType {
|
|
843
903
|
QuestSubTowerClearCount = 52,
|
844
904
|
PhotoRetouchCount = 53,
|
845
905
|
PhotoRetouchTotalCount = 54,
|
906
|
+
AccessoryUsedAmount = 55,
|
907
|
+
AnimeStoryPointUsedAmount = 56,
|
908
|
+
GameStoryPointUsedAmount = 57,
|
909
|
+
GroupStoryPointUsedAmount = 58,
|
910
|
+
GoldUsedAmount = 59,
|
911
|
+
GuildMedalUsedAmount = 60,
|
912
|
+
PvpMedalUsedAmount = 61,
|
913
|
+
ItemUsedAmount = 62,
|
914
|
+
PhotoRecipeUsedAmount = 63,
|
915
|
+
StoneUsedAmount = 64,
|
916
|
+
PaidStoneUsedAmount = 65,
|
846
917
|
TourAreaClearCount = 1001,
|
847
918
|
TourRivalClearCount = 1002,
|
848
919
|
TourBossClearCountWithCharacter = 1003,
|
@@ -855,6 +926,9 @@ export declare enum MissionType {
|
|
855
926
|
BacksideSurpriseCount = 1105,
|
856
927
|
MarathonQuestClearCount = 1201,
|
857
928
|
MarathonQuestClearDifficulty = 1202,
|
929
|
+
MarathonRaidClearCount = 1203,
|
930
|
+
MarathonRaidHostCount = 1204,
|
931
|
+
MarathonRaidJoinCount = 1205,
|
858
932
|
RacePanelClearCount = 1301,
|
859
933
|
RaceQuestClearCount = 1302,
|
860
934
|
RaceEnhanceLiveBonusAchievement = 1303,
|
@@ -1052,7 +1126,7 @@ export declare enum ProviderType {
|
|
1052
1126
|
Twitter = 4,
|
1053
1127
|
Password = 99
|
1054
1128
|
}
|
1055
|
-
export declare enum
|
1129
|
+
export declare enum PsylliumColorType {
|
1056
1130
|
Unknown = 0,
|
1057
1131
|
Red = 1,
|
1058
1132
|
Green = 2,
|
@@ -1124,6 +1198,7 @@ export declare enum ResourceType {
|
|
1124
1198
|
CardRarityExpLimitChange = 25,
|
1125
1199
|
Decoration = 26,
|
1126
1200
|
PhotoRecipe = 27,
|
1201
|
+
Hair = 28,
|
1127
1202
|
Set = 999
|
1128
1203
|
}
|
1129
1204
|
export declare enum ResultRankType {
|
@@ -1194,7 +1269,12 @@ export declare enum RewardSortResourceType {
|
|
1194
1269
|
ItemQuestDailySpecialTicket = 56,
|
1195
1270
|
ItemLadderPoint = 57,
|
1196
1271
|
PhotoRecipe = 58,
|
1197
|
-
ItemPhotoInk = 59
|
1272
|
+
ItemPhotoInk = 59,
|
1273
|
+
Hair = 60,
|
1274
|
+
ItemMarathonRaidStaminaRecovery = 61,
|
1275
|
+
ItemActivityFanEventRewardUp = 62,
|
1276
|
+
ItemActivityLessonPromote = 63,
|
1277
|
+
ItemActivityPromotionSpecialShorten = 65
|
1198
1278
|
}
|
1199
1279
|
export declare enum RewardSortTargetType {
|
1200
1280
|
Unknown = 0,
|
@@ -1209,7 +1289,8 @@ export declare enum RewardSortTargetType {
|
|
1209
1289
|
ActivityPromotionRewardDetail = 9,
|
1210
1290
|
ActivityPromotionResult = 10,
|
1211
1291
|
ActivityPromotionMainReward = 11,
|
1212
|
-
PremiumGachaProbability = 12
|
1292
|
+
PremiumGachaProbability = 12,
|
1293
|
+
MarathonRaidQuestReward = 13
|
1213
1294
|
}
|
1214
1295
|
export declare enum RuleType {
|
1215
1296
|
Unknown = 0,
|
@@ -1217,7 +1298,8 @@ export declare enum RuleType {
|
|
1217
1298
|
PrivacyPolicy = 2,
|
1218
1299
|
FundSettlement = 3,
|
1219
1300
|
CommercialTransaction = 4,
|
1220
|
-
ServiceGuideline = 5
|
1301
|
+
ServiceGuideline = 5,
|
1302
|
+
Licence = 6
|
1221
1303
|
}
|
1222
1304
|
export declare enum SalaryDetailType {
|
1223
1305
|
Unknown = 0,
|
@@ -1509,6 +1591,14 @@ export declare enum StatusEffectType {
|
|
1509
1591
|
AudienceAmountReduction = 1006,
|
1510
1592
|
StaminaContinuousConsumption = 1007
|
1511
1593
|
}
|
1594
|
+
export declare enum StoryAdvPlayType {
|
1595
|
+
Unknown = 0,
|
1596
|
+
Adv = 1,
|
1597
|
+
LiveMovie = 2,
|
1598
|
+
VerticalAdv = 3,
|
1599
|
+
VerticalMovie = 4,
|
1600
|
+
HorizontalMovie = 5
|
1601
|
+
}
|
1512
1602
|
export declare enum StoryPartType {
|
1513
1603
|
Unknown = 0,
|
1514
1604
|
Main = 1,
|
@@ -1603,5 +1693,7 @@ export declare enum TutorialType {
|
|
1603
1693
|
AccessoryLimitBreak = 26,
|
1604
1694
|
Race = 27,
|
1605
1695
|
Ladder = 28,
|
1606
|
-
PhotoRetouch = 29
|
1696
|
+
PhotoRetouch = 29,
|
1697
|
+
Collaboration = 30,
|
1698
|
+
MarathonRaid = 31
|
1607
1699
|
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
// Generated from ProtoEnum.proto
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
4
|
-
exports.
|
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.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 = void 0;
|
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.RacePanelType = exports.RaceActivityLessonRewardType = exports.PsylliumColorType = exports.ProviderType = 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.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 = void 0;
|
7
7
|
var AccessoryCategoryType;
|
8
8
|
(function (AccessoryCategoryType) {
|
9
9
|
AccessoryCategoryType[AccessoryCategoryType["Unknown"] = 0] = "Unknown";
|
@@ -68,6 +68,7 @@ var AreaType;
|
|
68
68
|
AreaType[AreaType["Tower"] = 4] = "Tower";
|
69
69
|
AreaType[AreaType["SubTower"] = 5] = "SubTower";
|
70
70
|
AreaType[AreaType["Tutorial"] = 101] = "Tutorial";
|
71
|
+
AreaType[AreaType["Exercise"] = 102] = "Exercise";
|
71
72
|
})(AreaType = exports.AreaType || (exports.AreaType = {}));
|
72
73
|
var AssetDownloadType;
|
73
74
|
(function (AssetDownloadType) {
|
@@ -185,6 +186,14 @@ var CharacterSdPersonalityType;
|
|
185
186
|
CharacterSdPersonalityType[CharacterSdPersonalityType["Stylish"] = 4] = "Stylish";
|
186
187
|
CharacterSdPersonalityType[CharacterSdPersonalityType["Carefree"] = 5] = "Carefree";
|
187
188
|
})(CharacterSdPersonalityType = exports.CharacterSdPersonalityType || (exports.CharacterSdPersonalityType = {}));
|
189
|
+
var CharacterType;
|
190
|
+
(function (CharacterType) {
|
191
|
+
CharacterType[CharacterType["Unknown"] = 0] = "Unknown";
|
192
|
+
CharacterType[CharacterType["Normal"] = 1] = "Normal";
|
193
|
+
CharacterType[CharacterType["Npc"] = 2] = "Npc";
|
194
|
+
CharacterType[CharacterType["Memories"] = 3] = "Memories";
|
195
|
+
CharacterType[CharacterType["Collaboration"] = 4] = "Collaboration";
|
196
|
+
})(CharacterType = exports.CharacterType || (exports.CharacterType = {}));
|
188
197
|
var DayOfWeekType;
|
189
198
|
(function (DayOfWeekType) {
|
190
199
|
DayOfWeekType[DayOfWeekType["Unknown"] = 0] = "Unknown";
|
@@ -235,6 +244,7 @@ var DokanType;
|
|
235
244
|
DokanType[DokanType["VerticalMovie"] = 5] = "VerticalMovie";
|
236
245
|
DokanType[DokanType["HorizontalMovie"] = 6] = "HorizontalMovie";
|
237
246
|
DokanType[DokanType["Story"] = 7] = "Story";
|
247
|
+
DokanType[DokanType["Free"] = 8] = "Free";
|
238
248
|
})(DokanType = exports.DokanType || (exports.DokanType = {}));
|
239
249
|
var ErrorCode;
|
240
250
|
(function (ErrorCode) {
|
@@ -249,6 +259,7 @@ var ErrorCode;
|
|
249
259
|
ErrorCode[ErrorCode["RequestLocked"] = 2003] = "RequestLocked";
|
250
260
|
ErrorCode[ErrorCode["Unauthenticated"] = 2004] = "Unauthenticated";
|
251
261
|
ErrorCode[ErrorCode["LockFailed"] = 2005] = "LockFailed";
|
262
|
+
ErrorCode[ErrorCode["UserDeleted"] = 2006] = "UserDeleted";
|
252
263
|
ErrorCode[ErrorCode["ContainsNgword"] = 3001] = "ContainsNgword";
|
253
264
|
ErrorCode[ErrorCode["OpponentNotFound"] = 3002] = "OpponentNotFound";
|
254
265
|
ErrorCode[ErrorCode["PasswordMigrationFailed"] = 3003] = "PasswordMigrationFailed";
|
@@ -281,6 +292,7 @@ var ErrorCode;
|
|
281
292
|
ErrorCode[ErrorCode["InviteWrongCode"] = 3030] = "InviteWrongCode";
|
282
293
|
ErrorCode[ErrorCode["InviteHostGuestLimit"] = 3031] = "InviteHostGuestLimit";
|
283
294
|
ErrorCode[ErrorCode["InviteEnterCodeNotAllowed"] = 3032] = "InviteEnterCodeNotAllowed";
|
295
|
+
ErrorCode[ErrorCode["MarathonRaidFinished"] = 3033] = "MarathonRaidFinished";
|
284
296
|
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
285
297
|
var EventMissionType;
|
286
298
|
(function (EventMissionType) {
|
@@ -288,6 +300,18 @@ var EventMissionType;
|
|
288
300
|
EventMissionType[EventMissionType["Event"] = 1] = "Event";
|
289
301
|
EventMissionType[EventMissionType["Campaign"] = 2] = "Campaign";
|
290
302
|
})(EventMissionType = exports.EventMissionType || (exports.EventMissionType = {}));
|
303
|
+
var ExerciseHintType;
|
304
|
+
(function (ExerciseHintType) {
|
305
|
+
ExerciseHintType[ExerciseHintType["Unknown"] = 0] = "Unknown";
|
306
|
+
ExerciseHintType[ExerciseHintType["Initial"] = 1] = "Initial";
|
307
|
+
ExerciseHintType[ExerciseHintType["AfterFailed"] = 2] = "AfterFailed";
|
308
|
+
})(ExerciseHintType = exports.ExerciseHintType || (exports.ExerciseHintType = {}));
|
309
|
+
var ExtraStoryPartType;
|
310
|
+
(function (ExtraStoryPartType) {
|
311
|
+
ExtraStoryPartType[ExtraStoryPartType["Unknown"] = 0] = "Unknown";
|
312
|
+
ExtraStoryPartType[ExtraStoryPartType["Normal"] = 1] = "Normal";
|
313
|
+
ExtraStoryPartType[ExtraStoryPartType["Limited"] = 2] = "Limited";
|
314
|
+
})(ExtraStoryPartType = exports.ExtraStoryPartType || (exports.ExtraStoryPartType = {}));
|
291
315
|
var ForumListReplyRequestType;
|
292
316
|
(function (ForumListReplyRequestType) {
|
293
317
|
ForumListReplyRequestType[ForumListReplyRequestType["Unknown"] = 0] = "Unknown";
|
@@ -324,6 +348,10 @@ var FunctionLockType;
|
|
324
348
|
FunctionLockType[FunctionLockType["PhotoRetouch"] = 22] = "PhotoRetouch";
|
325
349
|
FunctionLockType[FunctionLockType["InviteHost"] = 23] = "InviteHost";
|
326
350
|
FunctionLockType[FunctionLockType["BuddyUse"] = 24] = "BuddyUse";
|
351
|
+
FunctionLockType[FunctionLockType["AuthDelete"] = 25] = "AuthDelete";
|
352
|
+
FunctionLockType[FunctionLockType["BuddyUseQuestContest"] = 26] = "BuddyUseQuestContest";
|
353
|
+
FunctionLockType[FunctionLockType["Exercise"] = 27] = "Exercise";
|
354
|
+
FunctionLockType[FunctionLockType["BuddyUseMarathon"] = 28] = "BuddyUseMarathon";
|
327
355
|
})(FunctionLockType = exports.FunctionLockType || (exports.FunctionLockType = {}));
|
328
356
|
var FunctionMaintenanceType;
|
329
357
|
(function (FunctionMaintenanceType) {
|
@@ -372,6 +400,7 @@ var GachaType;
|
|
372
400
|
GachaType[GachaType["Item"] = 2] = "Item";
|
373
401
|
GachaType[GachaType["Premium"] = 3] = "Premium";
|
374
402
|
GachaType[GachaType["Continuous"] = 4] = "Continuous";
|
403
|
+
GachaType[GachaType["Stamp"] = 5] = "Stamp";
|
375
404
|
})(GachaType = exports.GachaType || (exports.GachaType = {}));
|
376
405
|
var GiftFilterType;
|
377
406
|
(function (GiftFilterType) {
|
@@ -562,6 +591,18 @@ var HelpDisplayTargetType;
|
|
562
591
|
HelpDisplayTargetType[HelpDisplayTargetType["FriendSearch"] = 146] = "FriendSearch";
|
563
592
|
HelpDisplayTargetType[HelpDisplayTargetType["FriendTop"] = 147] = "FriendTop";
|
564
593
|
HelpDisplayTargetType[HelpDisplayTargetType["FriendCode"] = 148] = "FriendCode";
|
594
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseTop"] = 149] = "ExerciseTop";
|
595
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseDeckEdit"] = 150] = "ExerciseDeckEdit";
|
596
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseDeckPhotoEdit"] = 151] = "ExerciseDeckPhotoEdit";
|
597
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseDeckAccessoryEdit"] = 152] = "ExerciseDeckAccessoryEdit";
|
598
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseLiveDeckSelect"] = 153] = "ExerciseLiveDeckSelect";
|
599
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseLiveBattleDeckSelect"] = 154] = "ExerciseLiveBattleDeckSelect";
|
600
|
+
HelpDisplayTargetType[HelpDisplayTargetType["ExerciseLiveResult"] = 155] = "ExerciseLiveResult";
|
601
|
+
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidList"] = 156] = "MarathonRaidList";
|
602
|
+
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidTop"] = 157] = "MarathonRaidTop";
|
603
|
+
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidLiveQuestSelect"] = 158] = "MarathonRaidLiveQuestSelect";
|
604
|
+
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidLiveDeckSelect"] = 159] = "MarathonRaidLiveDeckSelect";
|
605
|
+
HelpDisplayTargetType[HelpDisplayTargetType["MarathonRaidLiveBattleDeckSelect"] = 160] = "MarathonRaidLiveBattleDeckSelect";
|
565
606
|
})(HelpDisplayTargetType = exports.HelpDisplayTargetType || (exports.HelpDisplayTargetType = {}));
|
566
607
|
var HelpType;
|
567
608
|
(function (HelpType) {
|
@@ -621,6 +662,9 @@ var ItemType;
|
|
621
662
|
ItemType[ItemType["ActivityFanEventSuperMode"] = 1003] = "ActivityFanEventSuperMode";
|
622
663
|
ItemType[ItemType["ActivityFanEventSpeedUp"] = 1004] = "ActivityFanEventSpeedUp";
|
623
664
|
ItemType[ItemType["ActivityFanEventCheerPointUp"] = 1005] = "ActivityFanEventCheerPointUp";
|
665
|
+
ItemType[ItemType["ActivityFanEventRewardUp"] = 1006] = "ActivityFanEventRewardUp";
|
666
|
+
ItemType[ItemType["ActivityLessonPromote"] = 1007] = "ActivityLessonPromote";
|
667
|
+
ItemType[ItemType["ActivityPromotionSpecialShorten"] = 1008] = "ActivityPromotionSpecialShorten";
|
624
668
|
ItemType[ItemType["QuestDailyGoldTicket"] = 2001] = "QuestDailyGoldTicket";
|
625
669
|
ItemType[ItemType["QuestDailyCardEnhanceTicket"] = 2002] = "QuestDailyCardEnhanceTicket";
|
626
670
|
ItemType[ItemType["QuestDailyPhotoTicketTicket"] = 2003] = "QuestDailyPhotoTicketTicket";
|
@@ -631,6 +675,7 @@ var ItemType;
|
|
631
675
|
ItemType[ItemType["BoxGachaPoint"] = 4001] = "BoxGachaPoint";
|
632
676
|
ItemType[ItemType["MarathonStaminaRecovery"] = 5001] = "MarathonStaminaRecovery";
|
633
677
|
ItemType[ItemType["MarathonQuestUnlock"] = 5002] = "MarathonQuestUnlock";
|
678
|
+
ItemType[ItemType["MarathonRaidStaminaRecovery"] = 5003] = "MarathonRaidStaminaRecovery";
|
634
679
|
ItemType[ItemType["PhotoContestSubmitting"] = 6001] = "PhotoContestSubmitting";
|
635
680
|
ItemType[ItemType["PhotoContestCreating"] = 6002] = "PhotoContestCreating";
|
636
681
|
ItemType[ItemType["RacePoint"] = 7001] = "RacePoint";
|
@@ -749,6 +794,7 @@ var LiveSkipType;
|
|
749
794
|
LiveSkipType[LiveSkipType["None"] = 1] = "None";
|
750
795
|
LiveSkipType[LiveSkipType["Always"] = 2] = "Always";
|
751
796
|
LiveSkipType[LiveSkipType["AfterPlay"] = 3] = "AfterPlay";
|
797
|
+
LiveSkipType[LiveSkipType["AlwaysFullSkip"] = 4] = "AlwaysFullSkip";
|
752
798
|
})(LiveSkipType = exports.LiveSkipType || (exports.LiveSkipType = {}));
|
753
799
|
var LiveTipType;
|
754
800
|
(function (LiveTipType) {
|
@@ -816,6 +862,26 @@ var LoginBonusType;
|
|
816
862
|
LoginBonusType[LoginBonusType["Normal"] = 1] = "Normal";
|
817
863
|
LoginBonusType[LoginBonusType["Event"] = 2] = "Event";
|
818
864
|
})(LoginBonusType = exports.LoginBonusType || (exports.LoginBonusType = {}));
|
865
|
+
var MarathonRaidProgressType;
|
866
|
+
(function (MarathonRaidProgressType) {
|
867
|
+
MarathonRaidProgressType[MarathonRaidProgressType["Unknown"] = 0] = "Unknown";
|
868
|
+
MarathonRaidProgressType[MarathonRaidProgressType["Joinable"] = 1] = "Joinable";
|
869
|
+
MarathonRaidProgressType[MarathonRaidProgressType["Progressing"] = 2] = "Progressing";
|
870
|
+
MarathonRaidProgressType[MarathonRaidProgressType["Finished"] = 3] = "Finished";
|
871
|
+
MarathonRaidProgressType[MarathonRaidProgressType["History"] = 4] = "History";
|
872
|
+
})(MarathonRaidProgressType = exports.MarathonRaidProgressType || (exports.MarathonRaidProgressType = {}));
|
873
|
+
var MarathonRaidStatusType;
|
874
|
+
(function (MarathonRaidStatusType) {
|
875
|
+
MarathonRaidStatusType[MarathonRaidStatusType["Unknown"] = 0] = "Unknown";
|
876
|
+
MarathonRaidStatusType[MarathonRaidStatusType["Joined"] = 1] = "Joined";
|
877
|
+
MarathonRaidStatusType[MarathonRaidStatusType["Finished"] = 2] = "Finished";
|
878
|
+
})(MarathonRaidStatusType = exports.MarathonRaidStatusType || (exports.MarathonRaidStatusType = {}));
|
879
|
+
var MarathonType;
|
880
|
+
(function (MarathonType) {
|
881
|
+
MarathonType[MarathonType["Unknown"] = 0] = "Unknown";
|
882
|
+
MarathonType[MarathonType["Normal"] = 1] = "Normal";
|
883
|
+
MarathonType[MarathonType["Raid"] = 2] = "Raid";
|
884
|
+
})(MarathonType = exports.MarathonType || (exports.MarathonType = {}));
|
819
885
|
var MessageInstantType;
|
820
886
|
(function (MessageInstantType) {
|
821
887
|
MessageInstantType[MessageInstantType["Unknown"] = 0] = "Unknown";
|
@@ -917,6 +983,17 @@ var MissionType;
|
|
917
983
|
MissionType[MissionType["QuestSubTowerClearCount"] = 52] = "QuestSubTowerClearCount";
|
918
984
|
MissionType[MissionType["PhotoRetouchCount"] = 53] = "PhotoRetouchCount";
|
919
985
|
MissionType[MissionType["PhotoRetouchTotalCount"] = 54] = "PhotoRetouchTotalCount";
|
986
|
+
MissionType[MissionType["AccessoryUsedAmount"] = 55] = "AccessoryUsedAmount";
|
987
|
+
MissionType[MissionType["AnimeStoryPointUsedAmount"] = 56] = "AnimeStoryPointUsedAmount";
|
988
|
+
MissionType[MissionType["GameStoryPointUsedAmount"] = 57] = "GameStoryPointUsedAmount";
|
989
|
+
MissionType[MissionType["GroupStoryPointUsedAmount"] = 58] = "GroupStoryPointUsedAmount";
|
990
|
+
MissionType[MissionType["GoldUsedAmount"] = 59] = "GoldUsedAmount";
|
991
|
+
MissionType[MissionType["GuildMedalUsedAmount"] = 60] = "GuildMedalUsedAmount";
|
992
|
+
MissionType[MissionType["PvpMedalUsedAmount"] = 61] = "PvpMedalUsedAmount";
|
993
|
+
MissionType[MissionType["ItemUsedAmount"] = 62] = "ItemUsedAmount";
|
994
|
+
MissionType[MissionType["PhotoRecipeUsedAmount"] = 63] = "PhotoRecipeUsedAmount";
|
995
|
+
MissionType[MissionType["StoneUsedAmount"] = 64] = "StoneUsedAmount";
|
996
|
+
MissionType[MissionType["PaidStoneUsedAmount"] = 65] = "PaidStoneUsedAmount";
|
920
997
|
MissionType[MissionType["TourAreaClearCount"] = 1001] = "TourAreaClearCount";
|
921
998
|
MissionType[MissionType["TourRivalClearCount"] = 1002] = "TourRivalClearCount";
|
922
999
|
MissionType[MissionType["TourBossClearCountWithCharacter"] = 1003] = "TourBossClearCountWithCharacter";
|
@@ -929,6 +1006,9 @@ var MissionType;
|
|
929
1006
|
MissionType[MissionType["BacksideSurpriseCount"] = 1105] = "BacksideSurpriseCount";
|
930
1007
|
MissionType[MissionType["MarathonQuestClearCount"] = 1201] = "MarathonQuestClearCount";
|
931
1008
|
MissionType[MissionType["MarathonQuestClearDifficulty"] = 1202] = "MarathonQuestClearDifficulty";
|
1009
|
+
MissionType[MissionType["MarathonRaidClearCount"] = 1203] = "MarathonRaidClearCount";
|
1010
|
+
MissionType[MissionType["MarathonRaidHostCount"] = 1204] = "MarathonRaidHostCount";
|
1011
|
+
MissionType[MissionType["MarathonRaidJoinCount"] = 1205] = "MarathonRaidJoinCount";
|
932
1012
|
MissionType[MissionType["RacePanelClearCount"] = 1301] = "RacePanelClearCount";
|
933
1013
|
MissionType[MissionType["RaceQuestClearCount"] = 1302] = "RaceQuestClearCount";
|
934
1014
|
MissionType[MissionType["RaceEnhanceLiveBonusAchievement"] = 1303] = "RaceEnhanceLiveBonusAchievement";
|
@@ -1149,26 +1229,26 @@ var ProviderType;
|
|
1149
1229
|
ProviderType[ProviderType["Twitter"] = 4] = "Twitter";
|
1150
1230
|
ProviderType[ProviderType["Password"] = 99] = "Password";
|
1151
1231
|
})(ProviderType = exports.ProviderType || (exports.ProviderType = {}));
|
1152
|
-
var
|
1153
|
-
(function (
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
})(
|
1232
|
+
var PsylliumColorType;
|
1233
|
+
(function (PsylliumColorType) {
|
1234
|
+
PsylliumColorType[PsylliumColorType["Unknown"] = 0] = "Unknown";
|
1235
|
+
PsylliumColorType[PsylliumColorType["Red"] = 1] = "Red";
|
1236
|
+
PsylliumColorType[PsylliumColorType["Green"] = 2] = "Green";
|
1237
|
+
PsylliumColorType[PsylliumColorType["Blue"] = 3] = "Blue";
|
1238
|
+
PsylliumColorType[PsylliumColorType["Pink"] = 4] = "Pink";
|
1239
|
+
PsylliumColorType[PsylliumColorType["Yellow"] = 5] = "Yellow";
|
1240
|
+
PsylliumColorType[PsylliumColorType["Orange"] = 6] = "Orange";
|
1241
|
+
PsylliumColorType[PsylliumColorType["LightGreen"] = 7] = "LightGreen";
|
1242
|
+
PsylliumColorType[PsylliumColorType["Cyan"] = 8] = "Cyan";
|
1243
|
+
PsylliumColorType[PsylliumColorType["SakuraPink"] = 9] = "SakuraPink";
|
1244
|
+
PsylliumColorType[PsylliumColorType["Emerald"] = 10] = "Emerald";
|
1245
|
+
PsylliumColorType[PsylliumColorType["Purple"] = 11] = "Purple";
|
1246
|
+
PsylliumColorType[PsylliumColorType["Violet"] = 12] = "Violet";
|
1247
|
+
PsylliumColorType[PsylliumColorType["AquaBlue"] = 13] = "AquaBlue";
|
1248
|
+
PsylliumColorType[PsylliumColorType["LightBlue"] = 14] = "LightBlue";
|
1249
|
+
PsylliumColorType[PsylliumColorType["LightYellow"] = 15] = "LightYellow";
|
1250
|
+
PsylliumColorType[PsylliumColorType["White"] = 16] = "White";
|
1251
|
+
})(PsylliumColorType = exports.PsylliumColorType || (exports.PsylliumColorType = {}));
|
1172
1252
|
var RaceActivityLessonRewardType;
|
1173
1253
|
(function (RaceActivityLessonRewardType) {
|
1174
1254
|
RaceActivityLessonRewardType[RaceActivityLessonRewardType["Unknown"] = 0] = "Unknown";
|
@@ -1227,6 +1307,7 @@ var ResourceType;
|
|
1227
1307
|
ResourceType[ResourceType["CardRarityExpLimitChange"] = 25] = "CardRarityExpLimitChange";
|
1228
1308
|
ResourceType[ResourceType["Decoration"] = 26] = "Decoration";
|
1229
1309
|
ResourceType[ResourceType["PhotoRecipe"] = 27] = "PhotoRecipe";
|
1310
|
+
ResourceType[ResourceType["Hair"] = 28] = "Hair";
|
1230
1311
|
ResourceType[ResourceType["Set"] = 999] = "Set";
|
1231
1312
|
})(ResourceType = exports.ResourceType || (exports.ResourceType = {}));
|
1232
1313
|
var ResultRankType;
|
@@ -1300,6 +1381,11 @@ var RewardSortResourceType;
|
|
1300
1381
|
RewardSortResourceType[RewardSortResourceType["ItemLadderPoint"] = 57] = "ItemLadderPoint";
|
1301
1382
|
RewardSortResourceType[RewardSortResourceType["PhotoRecipe"] = 58] = "PhotoRecipe";
|
1302
1383
|
RewardSortResourceType[RewardSortResourceType["ItemPhotoInk"] = 59] = "ItemPhotoInk";
|
1384
|
+
RewardSortResourceType[RewardSortResourceType["Hair"] = 60] = "Hair";
|
1385
|
+
RewardSortResourceType[RewardSortResourceType["ItemMarathonRaidStaminaRecovery"] = 61] = "ItemMarathonRaidStaminaRecovery";
|
1386
|
+
RewardSortResourceType[RewardSortResourceType["ItemActivityFanEventRewardUp"] = 62] = "ItemActivityFanEventRewardUp";
|
1387
|
+
RewardSortResourceType[RewardSortResourceType["ItemActivityLessonPromote"] = 63] = "ItemActivityLessonPromote";
|
1388
|
+
RewardSortResourceType[RewardSortResourceType["ItemActivityPromotionSpecialShorten"] = 65] = "ItemActivityPromotionSpecialShorten";
|
1303
1389
|
})(RewardSortResourceType = exports.RewardSortResourceType || (exports.RewardSortResourceType = {}));
|
1304
1390
|
var RewardSortTargetType;
|
1305
1391
|
(function (RewardSortTargetType) {
|
@@ -1316,6 +1402,7 @@ var RewardSortTargetType;
|
|
1316
1402
|
RewardSortTargetType[RewardSortTargetType["ActivityPromotionResult"] = 10] = "ActivityPromotionResult";
|
1317
1403
|
RewardSortTargetType[RewardSortTargetType["ActivityPromotionMainReward"] = 11] = "ActivityPromotionMainReward";
|
1318
1404
|
RewardSortTargetType[RewardSortTargetType["PremiumGachaProbability"] = 12] = "PremiumGachaProbability";
|
1405
|
+
RewardSortTargetType[RewardSortTargetType["MarathonRaidQuestReward"] = 13] = "MarathonRaidQuestReward";
|
1319
1406
|
})(RewardSortTargetType = exports.RewardSortTargetType || (exports.RewardSortTargetType = {}));
|
1320
1407
|
var RuleType;
|
1321
1408
|
(function (RuleType) {
|
@@ -1325,6 +1412,7 @@ var RuleType;
|
|
1325
1412
|
RuleType[RuleType["FundSettlement"] = 3] = "FundSettlement";
|
1326
1413
|
RuleType[RuleType["CommercialTransaction"] = 4] = "CommercialTransaction";
|
1327
1414
|
RuleType[RuleType["ServiceGuideline"] = 5] = "ServiceGuideline";
|
1415
|
+
RuleType[RuleType["Licence"] = 6] = "Licence";
|
1328
1416
|
})(RuleType = exports.RuleType || (exports.RuleType = {}));
|
1329
1417
|
var SalaryDetailType;
|
1330
1418
|
(function (SalaryDetailType) {
|
@@ -1634,6 +1722,15 @@ var StatusEffectType;
|
|
1634
1722
|
StatusEffectType[StatusEffectType["AudienceAmountReduction"] = 1006] = "AudienceAmountReduction";
|
1635
1723
|
StatusEffectType[StatusEffectType["StaminaContinuousConsumption"] = 1007] = "StaminaContinuousConsumption";
|
1636
1724
|
})(StatusEffectType = exports.StatusEffectType || (exports.StatusEffectType = {}));
|
1725
|
+
var StoryAdvPlayType;
|
1726
|
+
(function (StoryAdvPlayType) {
|
1727
|
+
StoryAdvPlayType[StoryAdvPlayType["Unknown"] = 0] = "Unknown";
|
1728
|
+
StoryAdvPlayType[StoryAdvPlayType["Adv"] = 1] = "Adv";
|
1729
|
+
StoryAdvPlayType[StoryAdvPlayType["LiveMovie"] = 2] = "LiveMovie";
|
1730
|
+
StoryAdvPlayType[StoryAdvPlayType["VerticalAdv"] = 3] = "VerticalAdv";
|
1731
|
+
StoryAdvPlayType[StoryAdvPlayType["VerticalMovie"] = 4] = "VerticalMovie";
|
1732
|
+
StoryAdvPlayType[StoryAdvPlayType["HorizontalMovie"] = 5] = "HorizontalMovie";
|
1733
|
+
})(StoryAdvPlayType = exports.StoryAdvPlayType || (exports.StoryAdvPlayType = {}));
|
1637
1734
|
var StoryPartType;
|
1638
1735
|
(function (StoryPartType) {
|
1639
1736
|
StoryPartType[StoryPartType["Unknown"] = 0] = "Unknown";
|
@@ -1740,5 +1837,7 @@ var TutorialType;
|
|
1740
1837
|
TutorialType[TutorialType["Race"] = 27] = "Race";
|
1741
1838
|
TutorialType[TutorialType["Ladder"] = 28] = "Ladder";
|
1742
1839
|
TutorialType[TutorialType["PhotoRetouch"] = 29] = "PhotoRetouch";
|
1840
|
+
TutorialType[TutorialType["Collaboration"] = 30] = "Collaboration";
|
1841
|
+
TutorialType[TutorialType["MarathonRaid"] = 31] = "MarathonRaid";
|
1743
1842
|
})(TutorialType = exports.TutorialType || (exports.TutorialType = {}));
|
1744
1843
|
//# sourceMappingURL=proto_enum.js.map
|