hoshimi-venus 0.5.1 → 0.6.0
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/concert.d.ts +2 -0
- package/out/concert/concert.js +5 -0
- package/out/concert/concert.js.map +1 -1
- package/out/concert/consts/chart_consts.d.ts +1 -0
- package/out/concert/consts/chart_consts.js +4 -1
- package/out/concert/consts/chart_consts.js.map +1 -1
- package/out/concert/partial/actions/action.d.ts +1 -1
- package/out/concert/partial/actions/action.js +2 -0
- package/out/concert/partial/actions/action.js.map +1 -1
- package/out/concert/partial/assignment_a_skill.d.ts +2 -0
- package/out/concert/partial/assignment_a_skill.js +35 -0
- package/out/concert/partial/assignment_a_skill.js.map +1 -0
- package/out/concert/partial/b_check_existence.d.ts +1 -1
- package/out/concert/partial/b_check_existence.js +6 -2
- package/out/concert/partial/b_check_existence.js.map +1 -1
- package/out/concert/partial/c_check_act_skill_stamina.js +3 -0
- package/out/concert/partial/c_check_act_skill_stamina.js.map +1 -1
- package/out/concert/partial/d_check_act_skill_cool_time.js +3 -0
- package/out/concert/partial/d_check_act_skill_cool_time.js.map +1 -1
- package/out/concert/partial/e_check_act_skill_possibility.js +3 -0
- package/out/concert/partial/e_check_act_skill_possibility.js.map +1 -1
- package/out/concert/partial/init_concert.js +1 -0
- package/out/concert/partial/init_concert.js.map +1 -1
- package/out/database/Card.json +1 -8585
- package/out/database/CardParameter.json +1 -4682
- package/out/database/CardRarity.json +1 -62
- package/out/database/Character.json +1 -3743
- package/out/database/LiveAbility.json +1 -27692
- package/out/database/LiveBonus.json +1 -488
- package/out/database/LiveBonusGroup.json +1 -490
- package/out/database/MarathonQuest.json +1 -1387
- package/out/database/Music.json +1 -24029
- package/out/database/MusicChartPattern.json +1 -107582
- package/out/database/Quest.json +1 -103537
- package/out/database/Setting.json +1 -278
- package/out/database/Skill.json +1 -104420
- package/out/database/SkillEfficacy.json +1 -40962
- package/out/database/SkillTarget.json +1 -227
- package/out/database/SkillTrigger.json +1 -576
- package/out/main.js +1 -1
- package/out/types/card_types.d.ts +3 -3
- package/out/types/concert_types.d.ts +13 -12
- package/out/types/misc_types.d.ts +2 -2
- package/out/types/proto/proto_api.d.ts +834 -834
- package/out/types/proto/proto_master.d.ts +265 -265
- package/out/types/proto/proto_transaction.d.ts +51 -51
- package/out/types/quest_types.d.ts +1 -1
- package/out/types/trans_types.d.ts +3 -3
- package/out/types/wap/card_waps.d.ts +1 -1
- package/out/types/wap/misc_waps.d.ts +2 -2
- package/out/types/wap/quest_waps.d.ts +2 -2
- package/out/types/wap/skill_waps.d.ts +5 -5
- package/package.json +4 -3
@@ -4,7 +4,7 @@ import { WapLiveBeat } from "./wap/misc_waps";
|
|
4
4
|
import { WapQuest } from "./wap/quest_waps";
|
5
5
|
import { WapSkillLevel } from "./wap/skill_waps";
|
6
6
|
import { CustomNote } from "./trans_types";
|
7
|
-
export
|
7
|
+
export type Live = {
|
8
8
|
charts: Chart[];
|
9
9
|
snapshot: Chart[];
|
10
10
|
quest: WapQuest;
|
@@ -12,7 +12,7 @@ export declare type Live = {
|
|
12
12
|
isBattle: boolean;
|
13
13
|
customNotes?: CustomNote[];
|
14
14
|
};
|
15
|
-
export
|
15
|
+
export type Chart = {
|
16
16
|
chartType: MusicChartType;
|
17
17
|
sequence: number;
|
18
18
|
actPosition: number;
|
@@ -23,11 +23,12 @@ export declare type Chart = {
|
|
23
23
|
actSkill?: ActSkill;
|
24
24
|
actPSkills: ActSkill[];
|
25
25
|
failureFlag?: SkillFailureType;
|
26
|
+
originalActPosition: number;
|
26
27
|
getCardStatus: (this: Chart, index: number) => CardStatus | undefined;
|
27
28
|
getUserStatus: (this: Chart, index: number) => UserStatus | undefined;
|
28
29
|
getStageStatus: (this: Chart, cardIndex: number, skillIndex: number) => StageSkillStatus | undefined;
|
29
30
|
};
|
30
|
-
export
|
31
|
+
export type CardStatus = {
|
31
32
|
readonly cardIndex: number;
|
32
33
|
readonly deckVocal: number;
|
33
34
|
readonly deckDance: number;
|
@@ -78,17 +79,17 @@ export declare type CardStatus = {
|
|
78
79
|
refreshAllParam: (this: CardStatus) => void;
|
79
80
|
removeEffect: (this: CardStatus, effId: string) => void;
|
80
81
|
};
|
81
|
-
export
|
82
|
+
export type ConcertSkill = WapSkillLevel & {
|
82
83
|
deckPosition: number;
|
83
84
|
skillIndex: number;
|
84
85
|
isFirstTime: boolean;
|
85
86
|
isOpponentSide: boolean;
|
86
87
|
};
|
87
|
-
export
|
88
|
+
export type UserStatus = {
|
88
89
|
userIndex: number;
|
89
90
|
combo: number;
|
90
91
|
};
|
91
|
-
export
|
92
|
+
export type SkillStatus = {
|
92
93
|
skillIndex: number;
|
93
94
|
coolTime: number;
|
94
95
|
remainCount: number;
|
@@ -96,11 +97,11 @@ export declare type SkillStatus = {
|
|
96
97
|
used: boolean;
|
97
98
|
hasTimes: () => boolean;
|
98
99
|
};
|
99
|
-
export
|
100
|
+
export type StageSkillStatus = SkillStatus & {
|
100
101
|
userIndex: number;
|
101
102
|
cardIndex: number;
|
102
103
|
};
|
103
|
-
export
|
104
|
+
export type DetEffect = {
|
104
105
|
efficacyType: SkillEfficacyType;
|
105
106
|
grade: number;
|
106
107
|
value: number;
|
@@ -111,7 +112,7 @@ export declare type DetEffect = {
|
|
111
112
|
strengthenInclude?: boolean;
|
112
113
|
lengthenValue?: number;
|
113
114
|
};
|
114
|
-
export
|
115
|
+
export type Effect = DetEffect & {
|
115
116
|
remain: number;
|
116
117
|
maxGrade: number;
|
117
118
|
include: boolean;
|
@@ -119,7 +120,7 @@ export declare type Effect = DetEffect & {
|
|
119
120
|
sourceIndex: number;
|
120
121
|
sourceSkillIndex: number;
|
121
122
|
};
|
122
|
-
export
|
123
|
+
export type EfficacyDetail = {
|
123
124
|
name: string;
|
124
125
|
description: string;
|
125
126
|
grade: number;
|
@@ -129,7 +130,7 @@ export declare type EfficacyDetail = {
|
|
129
130
|
targetIndexes?: number[];
|
130
131
|
value?: number;
|
131
132
|
};
|
132
|
-
export
|
133
|
+
export type ActSkill = {
|
133
134
|
cardIndex: number;
|
134
135
|
skillIndex: number;
|
135
136
|
order: number;
|
@@ -139,7 +140,7 @@ export declare type ActSkill = {
|
|
139
140
|
isComboBreak: boolean;
|
140
141
|
score?: number;
|
141
142
|
};
|
142
|
-
export
|
143
|
+
export type Actable = {
|
143
144
|
index: number;
|
144
145
|
skills: number[];
|
145
146
|
};
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { Accessory } from "./proto/proto_master";
|
2
2
|
import { WapPhotoAbility } from "./wap/misc_waps";
|
3
|
-
export
|
3
|
+
export type Equipment = {
|
4
4
|
wapPhotos: UserPhoto[];
|
5
5
|
accessories: Accessory[];
|
6
6
|
};
|
7
|
-
export
|
7
|
+
export type UserPhoto = {
|
8
8
|
photoId: string;
|
9
9
|
name: string;
|
10
10
|
rarity: number;
|