@malib/gear 1.0.0-next.1 → 1.0.0-next.11
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 +205 -0
- package/dist/_tsup-dts-rollup.d.cts +3148 -0
- package/dist/_tsup-dts-rollup.d.ts +3148 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +96 -0
- package/dist/index.d.ts +96 -12
- package/dist/index.js +1 -1
- package/package.json +18 -6
- package/dist/lib/Gear.d.ts +0 -407
- package/dist/lib/GearAttribute.d.ts +0 -54
- package/dist/lib/GearReq.d.ts +0 -72
- package/dist/lib/data/GearAttributeData.d.ts +0 -103
- package/dist/lib/data/GearData.d.ts +0 -122
- package/dist/lib/data/GearOption.d.ts +0 -69
- package/dist/lib/data/GearType.d.ts +0 -220
- package/dist/lib/data/PotentialData.d.ts +0 -8
- package/dist/lib/data/PotentialGrade.d.ts +0 -7
- package/dist/lib/data/SoulSlotData.d.ts +0 -39
- package/dist/lib/data/index.d.ts +0 -7
- package/dist/lib/enhance/addOption.d.ts +0 -96
- package/dist/lib/enhance/exceptional.d.ts +0 -48
- package/dist/lib/enhance/spellTrace.d.ts +0 -59
- package/dist/lib/enhance/starforce.d.ts +0 -133
- package/dist/lib/enhance/upgrade.d.ts +0 -90
- package/dist/lib/errors.d.ts +0 -27
- package/dist/lib/gearOption.d.ts +0 -9
- package/dist/lib/gearType.d.ts +0 -55
- package/dist/lib/soulSlot.d.ts +0 -58
- package/dist/lib/testUtils.d.ts +0 -5
- package/dist/lib/utils.d.ts +0 -3
|
@@ -0,0 +1,3148 @@
|
|
|
1
|
+
declare function addiPotentialPatch(grade: PotentialGrade, options: PotentialData[]): Patch;
|
|
2
|
+
export { addiPotentialPatch }
|
|
3
|
+
export { addiPotentialPatch as addiPotentialPatch_alias_1 }
|
|
4
|
+
|
|
5
|
+
export declare interface AddOptionContext {
|
|
6
|
+
type: AddOptionType;
|
|
7
|
+
reqLevel: number;
|
|
8
|
+
gearType: GearType;
|
|
9
|
+
bossReward: boolean;
|
|
10
|
+
attackPower: number;
|
|
11
|
+
magicPower: number;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 추가 옵션 정보
|
|
16
|
+
*/
|
|
17
|
+
declare interface AddOptionData {
|
|
18
|
+
/** 추가 옵션 종류 */
|
|
19
|
+
type: AddOptionType;
|
|
20
|
+
/** 추가 옵션 단계 */
|
|
21
|
+
grade: AddOptionGrade;
|
|
22
|
+
/** 추가 옵션 수치 */
|
|
23
|
+
value: number;
|
|
24
|
+
}
|
|
25
|
+
export { AddOptionData }
|
|
26
|
+
export { AddOptionData as AddOptionData_alias_1 }
|
|
27
|
+
export { AddOptionData as AddOptionData_alias_2 }
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* 추가 옵션 단계
|
|
31
|
+
*/
|
|
32
|
+
declare type AddOptionGrade = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
33
|
+
export { AddOptionGrade }
|
|
34
|
+
export { AddOptionGrade as AddOptionGrade_alias_1 }
|
|
35
|
+
export { AddOptionGrade as AddOptionGrade_alias_2 }
|
|
36
|
+
|
|
37
|
+
declare function addOptionPatch(options: [AddOptionType, AddOptionGrade][]): Patch;
|
|
38
|
+
export { addOptionPatch }
|
|
39
|
+
export { addOptionPatch as addOptionPatch_alias_1 }
|
|
40
|
+
|
|
41
|
+
export declare function addOptions(option: Partial<GearOption>, ...options: Partial<GearOption>[]): void;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* 추가 옵션 종류
|
|
45
|
+
*/
|
|
46
|
+
declare enum AddOptionType {
|
|
47
|
+
/** STR */
|
|
48
|
+
str = "str",
|
|
49
|
+
/** DEX */
|
|
50
|
+
dex = "dex",
|
|
51
|
+
/** INT */
|
|
52
|
+
int = "int",
|
|
53
|
+
/** LUK */
|
|
54
|
+
luk = "luk",
|
|
55
|
+
/** STR, DEX */
|
|
56
|
+
str_dex = "str,dex",
|
|
57
|
+
/** STR, INT */
|
|
58
|
+
str_int = "str,int",
|
|
59
|
+
/** STR, LUK */
|
|
60
|
+
str_luk = "str,luk",
|
|
61
|
+
/** DEX, INT */
|
|
62
|
+
dex_int = "dex,int",
|
|
63
|
+
/** DEX, LUK */
|
|
64
|
+
dex_luk = "dex,luk",
|
|
65
|
+
/** INT, LUK */
|
|
66
|
+
int_luk = "int,luk",
|
|
67
|
+
/** 최대 HP */
|
|
68
|
+
maxHp = "maxHp",
|
|
69
|
+
/** 최대 MP */
|
|
70
|
+
maxMp = "maxMp",
|
|
71
|
+
/** 공격력 */
|
|
72
|
+
attackPower = "attackPower",
|
|
73
|
+
/** 마력 */
|
|
74
|
+
magicPower = "magicPower",
|
|
75
|
+
/** 방어력 */
|
|
76
|
+
armor = "armor",
|
|
77
|
+
/** 이동속도 */
|
|
78
|
+
speed = "speed",
|
|
79
|
+
/** 점프력 */
|
|
80
|
+
jump = "jump",
|
|
81
|
+
/** 보스 공격 시 데미지 증가(%) */
|
|
82
|
+
bossDamage = "bossDamage",
|
|
83
|
+
/** 데미지(%) */
|
|
84
|
+
damage = "damage",
|
|
85
|
+
/** 올스탯(%) */
|
|
86
|
+
allStat = "allStat",
|
|
87
|
+
/** 착용 레벨 감소 */
|
|
88
|
+
reqLevelDecrease = "reqLevelDecrease"
|
|
89
|
+
}
|
|
90
|
+
export { AddOptionType }
|
|
91
|
+
export { AddOptionType as AddOptionType_alias_1 }
|
|
92
|
+
export { AddOptionType as AddOptionType_alias_2 }
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* 장비에 추가 옵션을 적용합니다.
|
|
96
|
+
* @param gear 적용할 장비.
|
|
97
|
+
* @param type 추가 옵션 종류.
|
|
98
|
+
* @param grade 추가 옵션 단계.
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link GearError}
|
|
101
|
+
* 추가 옵션을 적용할 수 없는 상태의 장비일 경우.
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link GearError}
|
|
104
|
+
* 장비에 부여할 수 없는 추가 옵션을 지정했을 경우.
|
|
105
|
+
*/
|
|
106
|
+
declare function applyAddOption(gear: Gear, type: AddOptionType, grade: AddOptionGrade): void;
|
|
107
|
+
export { applyAddOption }
|
|
108
|
+
export { applyAddOption as applyAddOption_alias_1 }
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* 장비에 익셉셔널 강화를 적용합니다.
|
|
112
|
+
* @param gear 적용할 장비.
|
|
113
|
+
* @param exceptionalHammer 적용할 익셉셔널 해머.
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link GearError}
|
|
116
|
+
* 익셉셔널 강화를 적용할 수 없는 상태의 장비일 경우.
|
|
117
|
+
*/
|
|
118
|
+
declare function applyExceptional(gear: Gear, exceptionalHammer: ExceptionalHammer): void;
|
|
119
|
+
export { applyExceptional }
|
|
120
|
+
export { applyExceptional as applyExceptional_alias_1 }
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* 장비에 주문서를 적용합니다.
|
|
124
|
+
* @param gear 적용할 장비.
|
|
125
|
+
* @param scroll 적용할 주문서.
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link GearError}
|
|
128
|
+
* 주문서를 적용할 수 없는 상태의 장비일 경우.
|
|
129
|
+
*/
|
|
130
|
+
declare function applyScroll(gear: Gear, scroll: Scroll): void;
|
|
131
|
+
export { applyScroll }
|
|
132
|
+
export { applyScroll as applyScroll_alias_1 }
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* 장비에 소울 인챈터를 적용합니다.
|
|
136
|
+
* @param gear 적용할 장비.
|
|
137
|
+
*
|
|
138
|
+
* @throws {@link GearError}
|
|
139
|
+
* 소울 인챈터를 적용할 수 없는 경우.
|
|
140
|
+
*/
|
|
141
|
+
declare function applySoulEnchant(gear: Gear): void;
|
|
142
|
+
export { applySoulEnchant }
|
|
143
|
+
export { applySoulEnchant as applySoulEnchant_alias_1 }
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* 장비에 주문의 흔적 강화를 적용합니다.
|
|
147
|
+
* @param gear 적용할 장비.
|
|
148
|
+
* @param type 주문의 흔적 종류.
|
|
149
|
+
* @param rate 주문의 흔적 성공 확률.
|
|
150
|
+
*
|
|
151
|
+
* @throws {@link GearError}
|
|
152
|
+
* 주문서를 적용할 수 없는 상태의 장비일 경우.
|
|
153
|
+
*
|
|
154
|
+
* @throws {@link GearError}
|
|
155
|
+
* 장비에 적용할 수 없는 주문의 흔적을 지정했을 경우.
|
|
156
|
+
*/
|
|
157
|
+
declare function applySpellTrace(gear: Gear, type: SpellTraceType, rate: SpellTraceRate): void;
|
|
158
|
+
export { applySpellTrace }
|
|
159
|
+
export { applySpellTrace as applySpellTrace_alias_1 }
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* 장비에 추가 옵션을 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
163
|
+
* @param gear 확인할 장비.
|
|
164
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
165
|
+
*/
|
|
166
|
+
declare function canApplyAddOption(gear: ReadonlyGear): boolean;
|
|
167
|
+
export { canApplyAddOption }
|
|
168
|
+
export { canApplyAddOption as canApplyAddOption_alias_1 }
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* 장비에 익셉셔널 강화를 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
172
|
+
* @param gear 확인할 장비.
|
|
173
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
174
|
+
*/
|
|
175
|
+
declare function canApplyExceptional(gear: ReadonlyGear): boolean;
|
|
176
|
+
export { canApplyExceptional }
|
|
177
|
+
export { canApplyExceptional as canApplyExceptional_alias_1 }
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* 장비에 주문서를 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
181
|
+
* @param gear 확인할 장비.
|
|
182
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
183
|
+
*/
|
|
184
|
+
declare function canApplyScroll(gear: ReadonlyGear): boolean;
|
|
185
|
+
export { canApplyScroll }
|
|
186
|
+
export { canApplyScroll as canApplyScroll_alias_1 }
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* 장비에 소울 인챈터를 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
190
|
+
* @param gear 확인할 장비.
|
|
191
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
192
|
+
*/
|
|
193
|
+
declare function canApplySoulEnchant(gear: ReadonlyGear): boolean;
|
|
194
|
+
export { canApplySoulEnchant }
|
|
195
|
+
export { canApplySoulEnchant as canApplySoulEnchant_alias_1 }
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* 장비에 주문서 실패를 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
199
|
+
* @param gear 확인할 장비.
|
|
200
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
201
|
+
*/
|
|
202
|
+
declare function canFailScroll(gear: ReadonlyGear): boolean;
|
|
203
|
+
export { canFailScroll }
|
|
204
|
+
export { canFailScroll as canFailScroll_alias_1 }
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* 장비의 스타포스 강화 옵션를 다시 계산할 수 있는 상태인지 여부를 확인합니다.
|
|
208
|
+
* @param gear 확인할 장비.
|
|
209
|
+
* @returns 다시 계산할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
210
|
+
*/
|
|
211
|
+
export declare function canRecalculateStarforce(gear: ReadonlyGear): boolean;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* 추가 옵션을 초기화할 수 있는지 여부를 확인합니다.
|
|
215
|
+
* @param gear 확인할 장비.
|
|
216
|
+
* @returns 초기화할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
217
|
+
*/
|
|
218
|
+
declare function canResetAddOption(gear: ReadonlyGear): boolean;
|
|
219
|
+
export { canResetAddOption }
|
|
220
|
+
export { canResetAddOption as canResetAddOption_alias_1 }
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* 장비의 익셉셔널 강화를 초기화할 수 있는지 여부를 확인합니다.
|
|
224
|
+
* @param gear 확인할 장비.
|
|
225
|
+
* @returns 초기화할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
226
|
+
*/
|
|
227
|
+
declare function canResetExceptional(gear: ReadonlyGear): boolean;
|
|
228
|
+
export { canResetExceptional }
|
|
229
|
+
export { canResetExceptional as canResetExceptional_alias_1 }
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* 장비의 스타포스 강화를 초기화할 수 있는지 여부를 확인합니다.
|
|
233
|
+
* @param gear 확인할 장비.
|
|
234
|
+
* @returns 초기화할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
235
|
+
*/
|
|
236
|
+
declare function canResetStarforce(gear: ReadonlyGear): boolean;
|
|
237
|
+
export { canResetStarforce }
|
|
238
|
+
export { canResetStarforce as canResetStarforce_alias_1 }
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* 장비의 주문서 강화를 초기화할 수 있는지 여부를 확인합니다.
|
|
242
|
+
* @param gear 확인할 장비.
|
|
243
|
+
* @returns 초기화할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
244
|
+
*/
|
|
245
|
+
declare function canResetUpgrade(gear: ReadonlyGear): boolean;
|
|
246
|
+
export { canResetUpgrade }
|
|
247
|
+
export { canResetUpgrade as canResetUpgrade_alias_1 }
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* 장비가 주문서 실패로 차감된 업그레이드 가능 횟수를 복구할 수 있는 상태인지 여부를 확인합니다.
|
|
251
|
+
* @param gear 확인할 장비.
|
|
252
|
+
* @returns 복구할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
253
|
+
*/
|
|
254
|
+
declare function canResileScroll(gear: ReadonlyGear): boolean;
|
|
255
|
+
export { canResileScroll }
|
|
256
|
+
export { canResileScroll as canResileScroll_alias_1 }
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* 장비의 에디셔널 잠재능력을 설정할 수 있는지 여부를 확인합니다.
|
|
260
|
+
* @param gear 확인할 장비.
|
|
261
|
+
* @returns 설정할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
262
|
+
*/
|
|
263
|
+
declare function canSetAdditionalPotential(gear: ReadonlyGear): boolean;
|
|
264
|
+
export { canSetAdditionalPotential }
|
|
265
|
+
export { canSetAdditionalPotential as canSetAdditionalPotential_alias_1 }
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* 장비의 잠재능력을 설정할 수 있는지 여부를 확인합니다.
|
|
269
|
+
* @param gear 확인할 장비.
|
|
270
|
+
* @returns 설정할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
271
|
+
*/
|
|
272
|
+
declare function canSetPotential(gear: ReadonlyGear): boolean;
|
|
273
|
+
export { canSetPotential }
|
|
274
|
+
export { canSetPotential as canSetPotential_alias_1 }
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* 장비에 소울을 장착할 수 있는지 여부를 확인합니다.
|
|
278
|
+
* @param gear 확인할 장비.
|
|
279
|
+
* @returns 장착할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
280
|
+
*/
|
|
281
|
+
declare function canSetSoul(gear: ReadonlyGear): boolean;
|
|
282
|
+
export { canSetSoul }
|
|
283
|
+
export { canSetSoul as canSetSoul_alias_1 }
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* 장비의 소울 충전량을 설정할 수 있는지 여부를 확인합니다.
|
|
287
|
+
* @param gear 확인할 장비.
|
|
288
|
+
* @returns 설정할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
289
|
+
*/
|
|
290
|
+
declare function canSetSoulCharge(gear: ReadonlyGear): boolean;
|
|
291
|
+
export { canSetSoulCharge }
|
|
292
|
+
export { canSetSoulCharge as canSetSoulCharge_alias_1 }
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* 장비에 스타포스 강화를 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
296
|
+
*
|
|
297
|
+
* 업그레이드가 완료되지 않은 장비, 놀라운 장비강화 주문서가 적용된 장비에도 적용할 수 있습니다.
|
|
298
|
+
* @param gear 확인할 장비.
|
|
299
|
+
* @param exceedMaxStar 장비의 최대 강화 단계를 초과하여 강화할 지 여부.
|
|
300
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
301
|
+
*/
|
|
302
|
+
declare function canStarforce(gear: ReadonlyGear, exceedMaxStar?: boolean): boolean;
|
|
303
|
+
export { canStarforce }
|
|
304
|
+
export { canStarforce as canStarforce_alias_1 }
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* 장비에 놀라운 장비 강화 주문서를 적용할 수 있는 상태인지 여부를 확인합니다.
|
|
308
|
+
*
|
|
309
|
+
* 착용 가능 레벨 150 이하의 장비에만 적용할 수 있습니다.
|
|
310
|
+
* 업그레이드가 완료되지 않은 장비, 놀라운 장비강화 주문서가 적용된 장비에도 적용할 수 있습니다.
|
|
311
|
+
* 슈페리얼 장비에는 적용할 수 없습니다.
|
|
312
|
+
* @param gear 확인할 장비.
|
|
313
|
+
* @param exceedMaxStar 장비의 최대 강화 단계를 초과하여 강화할 지 여부.
|
|
314
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
315
|
+
*/
|
|
316
|
+
declare function canStarScroll(gear: ReadonlyGear, exceedMaxStar?: boolean): boolean;
|
|
317
|
+
export { canStarScroll }
|
|
318
|
+
export { canStarScroll as canStarScroll_alias_1 }
|
|
319
|
+
|
|
320
|
+
declare function createExceptional(data?: Partial<ExceptionalHammer>): ExceptionalHammer;
|
|
321
|
+
export { createExceptional }
|
|
322
|
+
export { createExceptional as createExceptional_alias_1 }
|
|
323
|
+
|
|
324
|
+
declare function createGear(name?: GearNames, patches?: Patch[]): Gear;
|
|
325
|
+
|
|
326
|
+
declare function createGear(data: Partial<GearData>): Gear;
|
|
327
|
+
|
|
328
|
+
declare function createGear(name: GearNames, data: Partial<GearData>, patches?: Patch[]): Gear;
|
|
329
|
+
export { createGear }
|
|
330
|
+
export { createGear as createGear_alias_1 }
|
|
331
|
+
|
|
332
|
+
declare type CreateGearParams = [name?: GearNames, patches?: Patch[]] | [data: Partial<GearData>] | [name: GearNames, data: Partial<GearData>, patches?: Patch[]];
|
|
333
|
+
export { CreateGearParams }
|
|
334
|
+
export { CreateGearParams as CreateGearParams_alias_1 }
|
|
335
|
+
|
|
336
|
+
declare function createPotentialData(data?: Partial<PotentialData>): PotentialData;
|
|
337
|
+
export { createPotentialData }
|
|
338
|
+
export { createPotentialData as createPotentialData_alias_1 }
|
|
339
|
+
|
|
340
|
+
declare function createReadonlyGear(name?: GearNames, data?: Partial<GearData>): ReadonlyGear;
|
|
341
|
+
|
|
342
|
+
declare function createReadonlyGear(data: Partial<GearData>): ReadonlyGear;
|
|
343
|
+
export { createReadonlyGear }
|
|
344
|
+
export { createReadonlyGear as createReadonlyGear_alias_1 }
|
|
345
|
+
|
|
346
|
+
declare function createScroll(data?: Partial<Scroll>): Scroll;
|
|
347
|
+
export { createScroll }
|
|
348
|
+
export { createScroll as createScroll_alias_1 }
|
|
349
|
+
|
|
350
|
+
declare function createSoulData(data?: Partial<SoulData>): SoulData;
|
|
351
|
+
export { createSoulData }
|
|
352
|
+
export { createSoulData as createSoulData_alias_1 }
|
|
353
|
+
|
|
354
|
+
export declare function defaultGear(data: Partial<GearData>): Gear;
|
|
355
|
+
|
|
356
|
+
export declare class _DeferredGearError extends Error {
|
|
357
|
+
private readonly status;
|
|
358
|
+
constructor(message: string, status: Record<string, unknown>);
|
|
359
|
+
gear(gear: ReadonlyGear): GearError;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export declare const enum ErrorMessage {
|
|
363
|
+
Shape_InvalidShapeChangeGear = "\uC678\uD615\uC744 \uBCC0\uACBD\uD560 \uC218 \uC5C6\uB294 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
364
|
+
AddOption_InvalidApplyGear = "\uCD94\uAC00 \uC635\uC158\uC744 \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
365
|
+
AddOption_InvalidResetGear = "\uCD94\uAC00 \uC635\uC158\uC744 \uCD08\uAE30\uD654\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
366
|
+
AddOption_InvalidAttackPowerGear = "\uACF5\uACA9\uB825/\uB9C8\uB825 \uCD94\uAC00 \uC635\uC158\uC740 \uCC29\uC6A9 \uAC00\uB2A5 \uB808\uBCA8 60 \uC774\uC0C1\uC758 \uBB34\uAE30 \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
367
|
+
AddOption_UnknownLongSwordGear = "\uACF5\uACA9\uB825/\uB9C8\uB825 \uCD94\uAC00 \uC635\uC158\uC744 \uBD80\uC5EC\uD560 \uC218 \uC5C6\uB294 \uD0DC\uB3C4 \uC7A5\uBE44\uC785\uB2C8\uB2E4. (Please submit issue with the gear info)",
|
|
368
|
+
AddOption_InvalidSpeedGear = "\uC774\uB3D9\uC18D\uB3C4 \uCD94\uAC00 \uC635\uC158\uC740 \uBB34\uAE30\uAC00 \uC544\uB2CC \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
369
|
+
AddOption_InvalidJumpGear = "\uC810\uD504\uB825 \uCD94\uAC00 \uC635\uC158\uC740 \uBB34\uAE30\uAC00 \uC544\uB2CC \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
370
|
+
AddOption_InvalidDamageGear = "\uB370\uBBF8\uC9C0(%) \uCD94\uAC00 \uC635\uC158\uC740 \uBB34\uAE30 \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
371
|
+
AddOption_InvalidBossDamageGear = "\uBCF4\uC2A4 \uACF5\uACA9 \uC2DC \uB370\uBBF8\uC9C0 \uC99D\uAC00(%) \uCD94\uAC00 \uC635\uC158\uC740 \uCC29\uC6A9 \uAC00\uB2A5 \uB808\uBCA8 90 \uC774\uC0C1\uC758 \uBB34\uAE30 \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
372
|
+
AddOption_InvalidAllStatGear = "\uC62C\uC2A4\uD0EF(%) \uCD94\uAC00 \uC635\uC158\uC740 \uCC29\uC6A9 \uAC00\uB2A5 \uB808\uBCA8 70 \uC774\uC0C1 \uB610\uB294 \uBB34\uAE30 \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
373
|
+
AddOption_InvalidReqLevelDecreaseGear = "\uCC29\uC6A9 \uB808\uBCA8 \uAC10\uC18C \uC635\uC158\uC740 \uCC29\uC6A9 \uAC00\uB2A5 \uB808\uBCA8 1 \uC774\uC0C1\uC758 \uC7A5\uBE44\uC5D0\uB9CC \uBD80\uC5EC\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
374
|
+
Upgrade_InvalidGoldenHammerGear = "\uD669\uAE08 \uB9DD\uCE58\uB97C \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
375
|
+
Upgrade_InvalidFailScrollGear = "\uC8FC\uBB38\uC11C \uC2E4\uD328\uB97C \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
376
|
+
Upgrade_InvalidResileScrollGear = "\uC5C5\uADF8\uB808\uC774\uB4DC \uAC00\uB2A5 \uD69F\uC218\uB97C \uBCF5\uAD6C\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
377
|
+
Upgrade_InvalidResetScrollGear = "\uC8FC\uBB38\uC11C \uAC15\uD654\uB97C \uCD08\uAE30\uD654\uD560 \uC218 \uC5C6\uB294 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
378
|
+
Upgrade_InvalidApplyScrollGear = "\uC8FC\uBB38\uC11C\uB97C \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
379
|
+
SpellTrace_InvalidSpellTrace = "\uC8FC\uBB38\uC758 \uD754\uC801\uC744 \uC7A5\uBE44\uC5D0 \uC801\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.",
|
|
380
|
+
SpellTrace_InvalidGearType = "\uC8FC\uBB38\uC758 \uD754\uC801\uC744 \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC7A5\uBE44 \uBD84\uB958\uC785\uB2C8\uB2E4.",
|
|
381
|
+
Starforce_InvalidStarforceGear = "\uC2A4\uD0C0\uD3EC\uC2A4 \uAC15\uD654\uB97C \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
382
|
+
Starforce_InvalidReqLevelGear = "\uC7A5\uBE44\uC758 \uCC29\uC6A9 \uAC00\uB2A5 \uB808\uBCA8\uC740 0 \uC774\uC0C1\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.",
|
|
383
|
+
StarScroll_InvalidStarScrollGear = "\uB180\uB77C\uC6B4 \uC7A5\uBE44 \uAC15\uD654 \uC8FC\uBB38\uC11C\uB97C \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
384
|
+
Starforce_InvalidResetGear = "\uC2A4\uD0C0\uD3EC\uC2A4 \uAC15\uD654\uB97C \uCD08\uAE30\uD654\uD560 \uC218 \uC5C6\uB294 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
385
|
+
Starforce_InvalidRecalculateGear = "\uC2A4\uD0C0\uD3EC\uC2A4 \uAC15\uD654 \uC635\uC158\uC744 \uB2E4\uC2DC \uACC4\uC0B0\uD560 \uC218 \uC5C6\uB294 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
386
|
+
Potential_InvalidPotentialGear = "\uC7A0\uC7AC\uB2A5\uB825\uC744 \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
387
|
+
Potential_InvalidPotentialOptions = "\uC7A0\uC7AC\uC635\uC158 \uAC1C\uC218\uB294 1\uAC1C\uC5D0\uC11C 3\uAC1C \uC0AC\uC774\uC5EC\uC57C \uD569\uB2C8\uB2E4.",
|
|
388
|
+
Potential_InvalidPotentialGrade = "\uC7A0\uC7AC\uB2A5\uB825 \uB4F1\uAE09\uC744 Normal\uB85C \uC124\uC815\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. (\uC7A0\uC7AC\uB2A5\uB825\uC744 \uCD08\uAE30\uD654\uD558\uB824\uBA74 resetPotential\uC744 \uC0AC\uC6A9\uD558\uC138\uC694.)",
|
|
389
|
+
Potential_InvalidAdditionalPotentialGear = "\uC5D0\uB514\uC154\uB110 \uC7A0\uC7AC\uB2A5\uB825\uC744 \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
390
|
+
Potential_InvalidAdditionalPotentialOptions = "\uC5D0\uB514\uC154\uB110 \uC7A0\uC7AC\uC635\uC158 \uAC1C\uC218\uB294 1\uAC1C\uC5D0\uC11C 3\uAC1C \uC0AC\uC774\uC5EC\uC57C \uD569\uB2C8\uB2E4.",
|
|
391
|
+
Potential_InvalidAdditionalPotentialGrade = "\uC5D0\uB514\uC154\uB110 \uC7A0\uC7AC\uB2A5\uB825 \uB4F1\uAE09\uC744 Normal\uB85C \uC124\uC815\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. (\uC5D0\uB514\uC154\uB110 \uC7A0\uC7AC\uB2A5\uB825\uC744 \uCD08\uAE30\uD654\uD558\uB824\uBA74 resetAdditionalPotential\uC744 \uC0AC\uC6A9\uD558\uC138\uC694.)",
|
|
392
|
+
Soul_SetSoulUnenchanted = "\uC18C\uC6B8\uC6E8\uD3F0 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC5D0\uB9CC \uC18C\uC6B8\uC744 \uC7A5\uCC29\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
393
|
+
Soul_SetChargeUnenchanted = "\uC18C\uC6B8\uC6E8\uD3F0 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uB9CC \uC18C\uC6B8 \uCDA9\uC804\uB7C9\uC744 \uBCC0\uACBD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
394
|
+
Soul_InvalidSoulCharge = "\uC18C\uC6B8 \uCDA9\uC804\uB7C9\uC740 0 \uC774\uC0C1 1000 \uC774\uD558\uC758 \uAC12\uC73C\uB85C\uB9CC \uBCC0\uACBD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.",
|
|
395
|
+
Soul_AlreadyEnchanted = "\uC18C\uC6B8\uC6E8\uD3F0\uC740 \uC911\uBCF5\uD574\uC11C \uC801\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.",
|
|
396
|
+
Exceptional_InvalidEnhanceGear = "\uC775\uC149\uC154\uB110 \uAC15\uD654\uB97C \uC801\uC6A9\uD560 \uC218 \uC5C6\uB294 \uC0C1\uD0DC\uC758 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
397
|
+
Exceptional_InvalidResetGear = "\uC775\uC149\uC154\uB110 \uAC15\uD654\uB97C \uCD08\uAE30\uD654\uD560 \uC218 \uC5C6\uB294 \uC7A5\uBE44\uC785\uB2C8\uB2E4.",
|
|
398
|
+
Constructor_InvalidVersion = "\uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 \uC7A5\uBE44 \uC815\uBCF4 \uBC84\uC804\uC785\uB2C8\uB2E4. \uC5C5\uADF8\uB808\uC774\uB4DC \uD6C4 \uC0DD\uC131\uD574\uC57C \uD569\uB2C8\uB2E4.",
|
|
399
|
+
Migrate_InvalidGearData = "\uC785\uB825 \uB370\uC774\uD130\uAC00 \uC720\uD6A8\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.",
|
|
400
|
+
Migrate_UnknownDataVersion = "\uC785\uB825 \uB370\uC774\uD130\uC758 \uBC84\uC804\uC774 \uC798\uBABB\uB418\uC5C8\uC2B5\uB2C8\uB2E4.",
|
|
401
|
+
Migrate_DataVersionTooNew = "\uC785\uB825 \uB370\uC774\uD130\uC758 \uBC84\uC804\uC774 \uC9C0\uC6D0\uD558\uB294 \uBC84\uC804\uBCF4\uB2E4 \uCD5C\uC2E0\uC785\uB2C8\uB2E4.",
|
|
402
|
+
Migrate_DataPropertyWillBeOverwritten = "\uC785\uB825 \uB370\uC774\uD130\uC758 \uC18D\uC131\uC774 \uB36E\uC5B4\uC4F0\uC5EC\uC9D1\uB2C8\uB2E4. \uC81C\uAC70\uD558\uACE0 \uB2E4\uC2DC \uC2E4\uD589\uD574 \uC8FC\uC138\uC694."
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/**
|
|
406
|
+
* 익셉셔널 해머
|
|
407
|
+
*/
|
|
408
|
+
declare interface ExceptionalHammer {
|
|
409
|
+
/** 익셉셔널 해머 이름 */
|
|
410
|
+
name: string;
|
|
411
|
+
/** 익셉셔널 해머 아이콘 */
|
|
412
|
+
icon?: string;
|
|
413
|
+
/** 익셉셔널 해머 옵션 */
|
|
414
|
+
option: Partial<GearUpgradeOption>;
|
|
415
|
+
}
|
|
416
|
+
export { ExceptionalHammer }
|
|
417
|
+
export { ExceptionalHammer as ExceptionalHammer_alias_1 }
|
|
418
|
+
|
|
419
|
+
/**
|
|
420
|
+
* 장비에 주문서 실패를 적용합니다.
|
|
421
|
+
* @param gear 적용할 장비.
|
|
422
|
+
*
|
|
423
|
+
* @throws {@link GearError}
|
|
424
|
+
* 주문서 실패를 적용할 수 없는 상태의 장비일 경우.
|
|
425
|
+
*/
|
|
426
|
+
declare function failScroll(gear: Gear): void;
|
|
427
|
+
export { failScroll }
|
|
428
|
+
export { failScroll as failScroll_alias_1 }
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* 장비
|
|
432
|
+
*
|
|
433
|
+
* 장비 정보를 KMS과 동일한 방식으로 변경하는 기능을 제공합니다.
|
|
434
|
+
* - `supports...`: 장비가 특정 강화 방식을 지원하는지 여부입니다.
|
|
435
|
+
* - `can...`: 장비에 특정 강화를 적용할 수 있는 상태인지 여부입니다.
|
|
436
|
+
* - `apply...()`: 장비에 특정 강화를 적용합니다.
|
|
437
|
+
* - `set...()`: 장비의 특정 속성을 설정합니다.
|
|
438
|
+
* - `reset...()`: 장비의 특정 강화에 관련된 속성을 초기화합니다.
|
|
439
|
+
*
|
|
440
|
+
* 생성자에 전달된 장비 정보와 `data` 속성 간에 엄격한 동등(`===`)을 보장합니다.
|
|
441
|
+
*
|
|
442
|
+
* 장비 정보의 모든 속성에 대해 읽기 전용 속성을 제공합니다.
|
|
443
|
+
* 일부 속성은 장비 객체 자체에 또는 반환 객체의 속성에 쓰기가 가능합니다.
|
|
444
|
+
*/
|
|
445
|
+
declare class Gear extends ReadonlyGear {
|
|
446
|
+
/**
|
|
447
|
+
* 장비 정보
|
|
448
|
+
*/
|
|
449
|
+
get data(): GearData;
|
|
450
|
+
/**
|
|
451
|
+
* 장비 외형
|
|
452
|
+
*/
|
|
453
|
+
get shape(): Readonly<GearShapeData> | undefined;
|
|
454
|
+
/**
|
|
455
|
+
* 장비 외형 변경
|
|
456
|
+
*
|
|
457
|
+
* @param shape 변경할 장비 외형.
|
|
458
|
+
*
|
|
459
|
+
* @throws {@link GearError}
|
|
460
|
+
* 외형을 변경할 수 없는 장비일 경우.
|
|
461
|
+
*/
|
|
462
|
+
set shape(shape: GearShapeData | undefined);
|
|
463
|
+
/**
|
|
464
|
+
* 이름 새기기
|
|
465
|
+
*/
|
|
466
|
+
get itemTag(): string | undefined;
|
|
467
|
+
/**
|
|
468
|
+
* 이름 새기기 변경
|
|
469
|
+
*
|
|
470
|
+
* @param itemTag 적용할 이름.
|
|
471
|
+
*/
|
|
472
|
+
set itemTag(itemTag: string | undefined);
|
|
473
|
+
/**
|
|
474
|
+
* 장비가 추가 옵션을 지원하는지 여부
|
|
475
|
+
*/
|
|
476
|
+
get supportsAddOption(): boolean;
|
|
477
|
+
/**
|
|
478
|
+
* 장비에 추가 옵션을 적용할 수 있는 상태인지 여부
|
|
479
|
+
*/
|
|
480
|
+
get canApplyAddOption(): boolean;
|
|
481
|
+
/**
|
|
482
|
+
* 장비에 추가 옵션을 적용합니다.
|
|
483
|
+
* @param type 추가 옵션 종류.
|
|
484
|
+
* @param grade 추가 옵션 단계.
|
|
485
|
+
*
|
|
486
|
+
* @throws {@link GearError}
|
|
487
|
+
* 추가 옵션을 적용할 수 없는 상태일 경우.
|
|
488
|
+
*
|
|
489
|
+
* @throws {@link GearError}
|
|
490
|
+
* 부여할 수 없는 추가 옵션을 지정했을 경우.
|
|
491
|
+
*/
|
|
492
|
+
applyAddOption(type: AddOptionType, grade: AddOptionGrade): void;
|
|
493
|
+
/**
|
|
494
|
+
* 장비의 추가 옵션을 초기화할 수 있는 상태인지 여부
|
|
495
|
+
*/
|
|
496
|
+
get canResetAddOption(): boolean;
|
|
497
|
+
/**
|
|
498
|
+
* 장비의 추가 옵션을 초기화합니다.
|
|
499
|
+
*
|
|
500
|
+
* @throws {@link GearError}
|
|
501
|
+
* 추가 옵션을 초기화할 수 없는 상태의 장비일 경우.
|
|
502
|
+
*/
|
|
503
|
+
resetAddOption(): void;
|
|
504
|
+
/**
|
|
505
|
+
* 장비가 주문서 강화를 지원하는지 여부
|
|
506
|
+
*/
|
|
507
|
+
get supportsUpgrade(): boolean;
|
|
508
|
+
/**
|
|
509
|
+
* 장비에 주문서 실패를 적용할 수 있는 상태인지 여부
|
|
510
|
+
*/
|
|
511
|
+
get canApplyScrollFail(): boolean;
|
|
512
|
+
/**
|
|
513
|
+
* 장비에 주문서 실패를 1회 적용합니다.
|
|
514
|
+
*
|
|
515
|
+
* @throws {@link GearError}
|
|
516
|
+
* 주문서 실패를 적용할 수 없는 상태일 경우.
|
|
517
|
+
*/
|
|
518
|
+
applyScrollFail(): void;
|
|
519
|
+
/**
|
|
520
|
+
* 장비의 주문서 실패로 차감된 업그레이드 가능 횟수를 복구할 수 있는 상태인지 여부
|
|
521
|
+
*/
|
|
522
|
+
get canApplyResileScroll(): boolean;
|
|
523
|
+
/**
|
|
524
|
+
* 장비의 주문서 실패로 차감된 업그레이드 가능 횟수를 1회 복구합니다.
|
|
525
|
+
*
|
|
526
|
+
* @throws {@link GearError}
|
|
527
|
+
* 업그레이드 가능 횟수를 복구할 수 없는 상태일 경우.
|
|
528
|
+
*/
|
|
529
|
+
applyResileScroll(): void;
|
|
530
|
+
/**
|
|
531
|
+
* 장비의 주문서 강화를 초기화할 수 있는 상태인지 여부
|
|
532
|
+
*/
|
|
533
|
+
get canResetUpgrade(): boolean;
|
|
534
|
+
/**
|
|
535
|
+
* 장비의 주문서 강화를 초기화합니다.
|
|
536
|
+
*
|
|
537
|
+
* @throws {@link GearError}
|
|
538
|
+
* 주문서 강화를 초기화할 수 없는 장비일 경우.
|
|
539
|
+
*/
|
|
540
|
+
resetUpgrade(): void;
|
|
541
|
+
/**
|
|
542
|
+
* 장비에 주문서를 적용할 수 있는 상태인지 여부
|
|
543
|
+
*/
|
|
544
|
+
get canApplyScroll(): boolean;
|
|
545
|
+
/**
|
|
546
|
+
* 장비에 주문서를 1회 적용합니다.
|
|
547
|
+
* @param scroll 적용할 주문서.
|
|
548
|
+
*
|
|
549
|
+
* @throws {@link GearError}
|
|
550
|
+
* 주문서를 적용할 수 없는 상태일 경우.
|
|
551
|
+
*/
|
|
552
|
+
applyScroll(scroll: Scroll): void;
|
|
553
|
+
/**
|
|
554
|
+
* 장비에 주문의 흔적 강화를 1회 적용합니다.
|
|
555
|
+
* @param type 주문의 흔적 종류.
|
|
556
|
+
* @param rate 주문의 흔적 성공 확률.
|
|
557
|
+
*
|
|
558
|
+
* @throws {@link GearError}
|
|
559
|
+
* 주문서를 적용할 수 없는 상태일 경우.
|
|
560
|
+
*
|
|
561
|
+
* @throws {@link GearError}
|
|
562
|
+
* 적용할 수 없는 주문의 흔적을 지정했을 경우.
|
|
563
|
+
*/
|
|
564
|
+
applySpellTrace(type: SpellTraceType, rate: SpellTraceRate): void;
|
|
565
|
+
/**
|
|
566
|
+
* 장비가 스타포스 강화를 지원하는지 여부
|
|
567
|
+
*/
|
|
568
|
+
get supportsStarforce(): boolean;
|
|
569
|
+
/**
|
|
570
|
+
* 장비에 스타포스 강화를 적용할 수 있는 상태인지 여부
|
|
571
|
+
*/
|
|
572
|
+
get canApplyStarforce(): boolean;
|
|
573
|
+
/**
|
|
574
|
+
* 장비에 스타포스 강화를 1회 적용합니다.
|
|
575
|
+
*
|
|
576
|
+
* @throws {@link GearError}
|
|
577
|
+
* 스타포스 강화를 적용할 수 없는 경우.
|
|
578
|
+
*/
|
|
579
|
+
applyStarforce(): void;
|
|
580
|
+
/**
|
|
581
|
+
* 장비에 최대 강화 단계를 무시하고 스타포스 강화를 적용할 수 있는 상태인지 여부
|
|
582
|
+
*/
|
|
583
|
+
get canApplyStarforceIgnoringMaxStar(): boolean;
|
|
584
|
+
/**
|
|
585
|
+
* 장비에 최대 강화 단계를 무시하고 스타포스 강화를 1회 적용합니다.
|
|
586
|
+
*
|
|
587
|
+
* @throws {@link GearError}
|
|
588
|
+
* 스타포스 강화를 적용할 수 없는 경우.
|
|
589
|
+
*/
|
|
590
|
+
applyStarforceIgnoringMaxStar(): void;
|
|
591
|
+
/**
|
|
592
|
+
* 장비에 놀라운 장비 강화 주문서를 적용할 수 있는 상태인지 여부
|
|
593
|
+
*/
|
|
594
|
+
get canApplyStarScroll(): boolean;
|
|
595
|
+
/**
|
|
596
|
+
* 장비에 놀라운 장비 강화 주문서를 1회 적용합니다.
|
|
597
|
+
* @param bonus 보너스 스탯 적용 여부.
|
|
598
|
+
*
|
|
599
|
+
* @throws {@link GearError}
|
|
600
|
+
* 놀라운 장비 강화 주문서를 적용할 수 없는 경우.
|
|
601
|
+
*/
|
|
602
|
+
applyStarScroll(bonus?: boolean): void;
|
|
603
|
+
/**
|
|
604
|
+
* 장비에 놀라운 장비 강화 주문서를 적용할 수 있는 상태인지 여부
|
|
605
|
+
*/
|
|
606
|
+
get canApplyStarScrollIgnoringMaxStar(): boolean;
|
|
607
|
+
/**
|
|
608
|
+
* 장비에 놀라운 장비 강화 주문서를 1회 적용합니다.
|
|
609
|
+
* @param bonus 보너스 스탯 적용 여부.
|
|
610
|
+
*
|
|
611
|
+
* @throws {@link GearError}
|
|
612
|
+
* 놀라운 장비 강화 주문서를 적용할 수 없는 경우.
|
|
613
|
+
*/
|
|
614
|
+
applyStarScrollIgnoringMaxStar(bonus?: boolean): void;
|
|
615
|
+
/**
|
|
616
|
+
* 장비의 스타포스 강화를 초기화할 수 있는지 여부
|
|
617
|
+
*/
|
|
618
|
+
get canResetStarforce(): boolean;
|
|
619
|
+
/**
|
|
620
|
+
* 장비의 스타포스 강화를 초기화합니다.
|
|
621
|
+
*/
|
|
622
|
+
resetStarforce(): void;
|
|
623
|
+
/**
|
|
624
|
+
* 장비가 잠재능력을 지원하는지 여부
|
|
625
|
+
*/
|
|
626
|
+
get supportsPotential(): boolean;
|
|
627
|
+
/**
|
|
628
|
+
* 장비의 잠재능력을 설정할 수 있는지 여부
|
|
629
|
+
*/
|
|
630
|
+
get canSetPotential(): boolean;
|
|
631
|
+
/**
|
|
632
|
+
* 장비의 잠재능력을 설정합니다.
|
|
633
|
+
*
|
|
634
|
+
* `grade`는 `PotentialGrade.Normal`일 수 없습니다.
|
|
635
|
+
*
|
|
636
|
+
* `options`에 포함된 잠재옵션은 1개 이상 3개 이하여야 합니다.
|
|
637
|
+
* @param grade 잠재능력 등급.
|
|
638
|
+
* @param options 잠재옵션 목록.
|
|
639
|
+
*
|
|
640
|
+
* @throws {@link GearError}
|
|
641
|
+
* 잠재능력을 설정할 수 없는 경우.
|
|
642
|
+
*
|
|
643
|
+
* @throws {@link RangeError}
|
|
644
|
+
* 설정하려는 잠재능력 등급이 Normal일 경우.
|
|
645
|
+
*
|
|
646
|
+
* @throws {@link TypeError}
|
|
647
|
+
* 잘못된 잠재옵션 목록을 지정했을 경우.
|
|
648
|
+
*/
|
|
649
|
+
setPotential(grade: PotentialGrade, options: PotentialData[]): void;
|
|
650
|
+
/**
|
|
651
|
+
* 장비의 잠재능력을 초기화합니다.
|
|
652
|
+
*
|
|
653
|
+
* 에디셔널 잠재능력은 변경되지 않습니다.
|
|
654
|
+
*
|
|
655
|
+
* @throws {@link GearError}
|
|
656
|
+
* 잠재능력을 초기화할 수 없는 경우.
|
|
657
|
+
*/
|
|
658
|
+
resetPotential(): void;
|
|
659
|
+
/**
|
|
660
|
+
* 장비가 에디셔널 잠재능력을 지원하는지 여부
|
|
661
|
+
*/
|
|
662
|
+
get supportsAdditionalPotential(): boolean;
|
|
663
|
+
/**
|
|
664
|
+
* 장비의 에디셔널 잠재능력을 설정할 수 있는지 여부
|
|
665
|
+
*/
|
|
666
|
+
get canSetAdditionalPotential(): boolean;
|
|
667
|
+
/**
|
|
668
|
+
* 장비의 에디셔널 잠재능력을 설정합니다.
|
|
669
|
+
*
|
|
670
|
+
* `grade`는 `PotentialGrade.Normal`일 수 없습니다.
|
|
671
|
+
*
|
|
672
|
+
* `options`에 포함된 에디셔널 잠재옵션은 1개 이상 3개 이하여야 합니다.
|
|
673
|
+
* @param grade 에디셔널 잠재능력 등급.
|
|
674
|
+
* @param options 에디셔널 잠재옵션 목록.
|
|
675
|
+
*
|
|
676
|
+
* @throws {@link GearError}
|
|
677
|
+
* 에디셔널 잠재능력을 설정할 수 없는 경우.
|
|
678
|
+
*
|
|
679
|
+
* @throws {@link RangeError}
|
|
680
|
+
* 설정하려는 에디셔널 잠재능력 등급이 Normal일 경우.
|
|
681
|
+
*
|
|
682
|
+
* @throws {@link TypeError}
|
|
683
|
+
* 잘못된 에디셔널 잠재옵션 목록을 지정했을 경우.
|
|
684
|
+
*/
|
|
685
|
+
setAdditionalPotential(grade: PotentialGrade, options: PotentialData[]): void;
|
|
686
|
+
/**
|
|
687
|
+
* 장비의 에디셔널 잠재능력을 초기화합니다.
|
|
688
|
+
*
|
|
689
|
+
* @throws {@link GearError}
|
|
690
|
+
* 에디셔널 잠재능력을 초기화할 수 없는 경우.
|
|
691
|
+
*/
|
|
692
|
+
resetAdditionalPotential(): void;
|
|
693
|
+
/**
|
|
694
|
+
* 장비가 소울웨폰을 지원하는지 여부
|
|
695
|
+
*/
|
|
696
|
+
get supportsSoul(): boolean;
|
|
697
|
+
/**
|
|
698
|
+
* 장비에 소울 인챈터를 적용할 수 있는 상태인지 여부
|
|
699
|
+
*/
|
|
700
|
+
get canApplySoulEnchant(): boolean;
|
|
701
|
+
/**
|
|
702
|
+
* 장비에 소울 인챈터를 적용합니다.
|
|
703
|
+
*/
|
|
704
|
+
applySoulEnchant(): void;
|
|
705
|
+
/**
|
|
706
|
+
* 장비에 소울을 장착할 수 있는지 여부
|
|
707
|
+
*/
|
|
708
|
+
get canSetSoul(): boolean;
|
|
709
|
+
/**
|
|
710
|
+
* 장비에 소울을 장착합니다.
|
|
711
|
+
* @param soul 장착할 소울 아이템.
|
|
712
|
+
*
|
|
713
|
+
* @throws {@link GearError}
|
|
714
|
+
* 소울을 장착할 수 없는 경우.
|
|
715
|
+
*/
|
|
716
|
+
setSoul(soul: SoulData): void;
|
|
717
|
+
/**
|
|
718
|
+
* 장비의 소울 충전량을 설정할 수 있는지 여부
|
|
719
|
+
*/
|
|
720
|
+
get canSetSoulCharge(): boolean;
|
|
721
|
+
/**
|
|
722
|
+
* 장비의 소울 충전량을 설정합니다.
|
|
723
|
+
* @param charge 소울 충전량.
|
|
724
|
+
*
|
|
725
|
+
* @throws {@link GearError}
|
|
726
|
+
* 소울 충전량을 설정할 수 없는 경우.
|
|
727
|
+
*/
|
|
728
|
+
setSoulCharge(charge: number): void;
|
|
729
|
+
/**
|
|
730
|
+
* 장비의 소울웨폰을 초기화합니다.
|
|
731
|
+
*/
|
|
732
|
+
resetSoulEnchant(): void;
|
|
733
|
+
/**
|
|
734
|
+
* 장비가 익셉셔널 강화를 지원하는지 여부
|
|
735
|
+
*/
|
|
736
|
+
get supportsExceptional(): boolean;
|
|
737
|
+
/**
|
|
738
|
+
* 장비에 익셉셔널 강화를 적용할 수 있는지 여부
|
|
739
|
+
*/
|
|
740
|
+
get canApplyExceptional(): boolean;
|
|
741
|
+
/**
|
|
742
|
+
* 장비에 익셉셔널 강화를 적용합니다.
|
|
743
|
+
* @param exceptionalHammer 적용할 익셉셔널 해머.
|
|
744
|
+
*
|
|
745
|
+
* @throws {@link GearError}
|
|
746
|
+
* 익셉셔널 강화를 적용할 수 없는 상태일 경우.
|
|
747
|
+
*/
|
|
748
|
+
applyExceptional(exceptionalHammer: ExceptionalHammer): void;
|
|
749
|
+
/**
|
|
750
|
+
* 장비의 익셉셔널 강화를 초기화할 수 있는지 여부
|
|
751
|
+
*/
|
|
752
|
+
get canResetExceptional(): boolean;
|
|
753
|
+
/**
|
|
754
|
+
* 장비의 익셉셔널 강화를 초기화합니다.
|
|
755
|
+
*
|
|
756
|
+
* @throws {@link GearError}
|
|
757
|
+
* 익셉셔널 강화를 초기화할 수 없는 경우.
|
|
758
|
+
*/
|
|
759
|
+
resetExceptional(): void;
|
|
760
|
+
}
|
|
761
|
+
export { Gear }
|
|
762
|
+
export { Gear as Gear_alias_1 }
|
|
763
|
+
|
|
764
|
+
declare type _Gear = Omit<GearData, 'attributes' | 'potentials' | 'additionalPotentials' | 'addOptions'> & {
|
|
765
|
+
attributes: GearAttribute;
|
|
766
|
+
addOptions: readonly Readonly<AddOptionData>[];
|
|
767
|
+
potentials: readonly ReadonlyPotential[];
|
|
768
|
+
additionalPotentials: readonly ReadonlyPotential[];
|
|
769
|
+
};
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* 장비 추가 옵션
|
|
773
|
+
*/
|
|
774
|
+
declare type GearAddOption = Pick<GearBaseOption, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump' | 'bossDamage' | 'allStat' | 'damage' | 'reqLevelDecrease'>;
|
|
775
|
+
export { GearAddOption }
|
|
776
|
+
export { GearAddOption as GearAddOption_alias_1 }
|
|
777
|
+
export { GearAddOption as GearAddOption_alias_2 }
|
|
778
|
+
|
|
779
|
+
declare class GearAttribute implements _GearAttribute {
|
|
780
|
+
/** 장비 속성 정보 */
|
|
781
|
+
data: GearAttributeData;
|
|
782
|
+
constructor(data: GearAttributeData);
|
|
783
|
+
/** 고유 아이템 */
|
|
784
|
+
get only(): boolean;
|
|
785
|
+
/** 교환 가능 여부 */
|
|
786
|
+
get trade(): GearTrade;
|
|
787
|
+
set trade(value: GearTrade);
|
|
788
|
+
/** 고유장착 아이템 */
|
|
789
|
+
get onlyEquip(): boolean;
|
|
790
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 여부 */
|
|
791
|
+
get share(): GearShare;
|
|
792
|
+
/** 슈페리얼 */
|
|
793
|
+
get superior(): boolean;
|
|
794
|
+
/** 공격 속도 */
|
|
795
|
+
get attackSpeed(): number | undefined;
|
|
796
|
+
/** 주문서 강화 가능 여부 */
|
|
797
|
+
get canScroll(): GearCapability;
|
|
798
|
+
/** 스타포스 강화 가능 여부 */
|
|
799
|
+
get canStarforce(): GearCapability;
|
|
800
|
+
/** 추가옵션 설정 가능 여부 */
|
|
801
|
+
get canAddOption(): GearCapability;
|
|
802
|
+
/** 잠재능력 설정 가능 여부 */
|
|
803
|
+
get canPotential(): GearCapability;
|
|
804
|
+
/** 에디셔널 잠재능력 설정 가능 여부 */
|
|
805
|
+
get canAdditionalPotential(): GearCapability;
|
|
806
|
+
/** 스페셜 아이템 여부 */
|
|
807
|
+
get specialGrade(): boolean;
|
|
808
|
+
/** 카르마의 가위 사용 가능 여부 */
|
|
809
|
+
get cuttable(): GearCuttable;
|
|
810
|
+
/** 가위 사용 가능 횟수 */
|
|
811
|
+
get cuttableCount(): number | undefined;
|
|
812
|
+
set cuttableCount(value: number | undefined);
|
|
813
|
+
/** 최대 가위 사용 가능 횟수 */
|
|
814
|
+
get totalCuttableCount(): number | undefined;
|
|
815
|
+
/** 쉐어 네임 텍을 사용 가능 여부 */
|
|
816
|
+
get accountShareTag(): boolean;
|
|
817
|
+
/** 훈장 신비의 모루 사용 불가 여부 */
|
|
818
|
+
get noShapeChange(): boolean;
|
|
819
|
+
/** 세트 효과 ID */
|
|
820
|
+
get setItemId(): number | undefined;
|
|
821
|
+
/** 럭키 아이템 */
|
|
822
|
+
get lucky(): boolean;
|
|
823
|
+
/** 장착 시 획득 경험치 */
|
|
824
|
+
get incline(): Readonly<GearIncline>;
|
|
825
|
+
set incline(value: Partial<GearIncline>);
|
|
826
|
+
/** 보스 드롭 여부 */
|
|
827
|
+
get bossReward(): boolean;
|
|
828
|
+
/** 사용 가능 스킬 */
|
|
829
|
+
get skills(): readonly string[];
|
|
830
|
+
/** 성장 경험치 */
|
|
831
|
+
get growthExp(): number | undefined;
|
|
832
|
+
set growthExp(value: number | undefined);
|
|
833
|
+
/** 성장 레벨 */
|
|
834
|
+
get growthLevel(): number | undefined;
|
|
835
|
+
set growthLevel(value: number | undefined);
|
|
836
|
+
/** 장비 유효 기간(KST) */
|
|
837
|
+
get dateExpire(): string | undefined;
|
|
838
|
+
set dateExpire(value: string | undefined);
|
|
839
|
+
}
|
|
840
|
+
export { GearAttribute }
|
|
841
|
+
export { GearAttribute as GearAttribute_alias_1 }
|
|
842
|
+
|
|
843
|
+
declare type _GearAttribute = Omit<Omit<Required<GearAttributeData>, OptionalProperty> & Pick<GearAttributeData, OptionalProperty>, 'skills'> & {
|
|
844
|
+
skills: readonly string[];
|
|
845
|
+
};
|
|
846
|
+
|
|
847
|
+
/**
|
|
848
|
+
* 장비 속성 정보
|
|
849
|
+
*/
|
|
850
|
+
declare interface GearAttributeData {
|
|
851
|
+
/** 고유 아이템 */
|
|
852
|
+
only?: boolean;
|
|
853
|
+
/** 교환 가능 여부 */
|
|
854
|
+
trade?: GearTrade;
|
|
855
|
+
/** 고유장착 아이템 */
|
|
856
|
+
onlyEquip?: boolean;
|
|
857
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 여부 */
|
|
858
|
+
share?: GearShare;
|
|
859
|
+
/** 슈페리얼 */
|
|
860
|
+
superior?: boolean;
|
|
861
|
+
/** 공격 속도 */
|
|
862
|
+
attackSpeed?: number;
|
|
863
|
+
/** 주문서 강화 가능 여부 */
|
|
864
|
+
canScroll?: GearCapability;
|
|
865
|
+
/** 스타포스 강화 가능 여부 */
|
|
866
|
+
canStarforce?: GearCapability;
|
|
867
|
+
/** 추가 옵션 설정 가능 여부 */
|
|
868
|
+
canAddOption?: GearCapability;
|
|
869
|
+
/** 잠재능력 설정 가능 여부 */
|
|
870
|
+
canPotential?: GearCapability;
|
|
871
|
+
/** 에디셔널 잠재능력 설정 가능 여부 */
|
|
872
|
+
canAdditionalPotential?: GearCapability;
|
|
873
|
+
/** 스페셜 아이템 여부 */
|
|
874
|
+
specialGrade?: boolean;
|
|
875
|
+
/** 카르마의 가위 사용 가능 여부 */
|
|
876
|
+
cuttable?: GearCuttable;
|
|
877
|
+
/** 가위 사용 가능 횟수 */
|
|
878
|
+
cuttableCount?: number;
|
|
879
|
+
/** 최대 가위 사용 가능 횟수 */
|
|
880
|
+
totalCuttableCount?: number;
|
|
881
|
+
/** 쉐어 네임 텍을 사용 가능 여부 */
|
|
882
|
+
accountShareTag?: boolean;
|
|
883
|
+
/** 훈장 신비의 모루 사용 불가 여부 */
|
|
884
|
+
noShapeChange?: boolean;
|
|
885
|
+
/** 세트 효과 ID */
|
|
886
|
+
setItemId?: number;
|
|
887
|
+
/** 럭키 아이템 */
|
|
888
|
+
lucky?: boolean;
|
|
889
|
+
/** 장착 시 획득 경험치 */
|
|
890
|
+
incline?: Partial<GearIncline>;
|
|
891
|
+
/** 보스 드롭 여부 */
|
|
892
|
+
bossReward?: boolean;
|
|
893
|
+
/** 사용 가능 스킬 */
|
|
894
|
+
skills?: string[];
|
|
895
|
+
/** 성장 경험치 */
|
|
896
|
+
growthExp?: number;
|
|
897
|
+
/** 성장 레벨 */
|
|
898
|
+
growthLevel?: number;
|
|
899
|
+
/** 장비 유효 기간(KST) */
|
|
900
|
+
dateExpire?: string;
|
|
901
|
+
}
|
|
902
|
+
export { GearAttributeData }
|
|
903
|
+
export { GearAttributeData as GearAttributeData_alias_1 }
|
|
904
|
+
export { GearAttributeData as GearAttributeData_alias_2 }
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* 장비 기본 옵션
|
|
908
|
+
*/
|
|
909
|
+
declare type GearBaseOption = Pick<GearOption, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'maxHpRate' | 'maxMpRate' | 'maxDemonForce' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump' | 'bossDamage' | 'ignoreMonsterArmor' | 'allStat' | 'damage' | 'reqLevelDecrease'>;
|
|
910
|
+
export { GearBaseOption }
|
|
911
|
+
export { GearBaseOption as GearBaseOption_alias_1 }
|
|
912
|
+
export { GearBaseOption as GearBaseOption_alias_2 }
|
|
913
|
+
|
|
914
|
+
declare enum GearCapability {
|
|
915
|
+
/** 설정 불가 */
|
|
916
|
+
Cannot = 0,
|
|
917
|
+
/** 설정 가능 */
|
|
918
|
+
Can = 1,
|
|
919
|
+
/** 재설정 불가 */
|
|
920
|
+
Fixed = 2
|
|
921
|
+
}
|
|
922
|
+
export { GearCapability }
|
|
923
|
+
export { GearCapability as GearCapability_alias_1 }
|
|
924
|
+
export { GearCapability as GearCapability_alias_2 }
|
|
925
|
+
|
|
926
|
+
declare enum GearCuttable {
|
|
927
|
+
/** 없음 */
|
|
928
|
+
None = 0,
|
|
929
|
+
/** 카르마의 가위 또는 실버 카르마의 가위를 사용하면 1회 교환이 가능하게 할 수 있습니다. */
|
|
930
|
+
Silver = 1,
|
|
931
|
+
/** 플래티넘 카르마의 가위를 사용하면 1회 교환이 가능하게 할 수 있습니다. */
|
|
932
|
+
Platinum = 2
|
|
933
|
+
}
|
|
934
|
+
export { GearCuttable }
|
|
935
|
+
export { GearCuttable as GearCuttable_alias_1 }
|
|
936
|
+
export { GearCuttable as GearCuttable_alias_2 }
|
|
937
|
+
|
|
938
|
+
/**
|
|
939
|
+
* 장비 정보
|
|
940
|
+
*/
|
|
941
|
+
declare interface GearData {
|
|
942
|
+
/** 장비 정보 버전 */
|
|
943
|
+
version: typeof VERSION;
|
|
944
|
+
/** 아이템 ID */
|
|
945
|
+
id: number;
|
|
946
|
+
/** 장비명 */
|
|
947
|
+
name: string;
|
|
948
|
+
/** 장비 설명 */
|
|
949
|
+
desc?: string;
|
|
950
|
+
/** 장비 아이콘 */
|
|
951
|
+
icon: string;
|
|
952
|
+
/** 장비 외형 */
|
|
953
|
+
shape?: GearShapeData;
|
|
954
|
+
/** 이름 새기기 */
|
|
955
|
+
itemTag?: string;
|
|
956
|
+
/** 장비 분류 */
|
|
957
|
+
type: GearType;
|
|
958
|
+
/** 장비 착용 제한 */
|
|
959
|
+
req: GearReqData;
|
|
960
|
+
/** 장비 속성 */
|
|
961
|
+
attributes: GearAttributeData;
|
|
962
|
+
/** 장비 기본 옵션 */
|
|
963
|
+
baseOption?: Partial<GearBaseOption>;
|
|
964
|
+
/** 장비 추가 옵션 */
|
|
965
|
+
addOption?: Partial<GearAddOption>;
|
|
966
|
+
/** 장비 주문서 강화 옵션 */
|
|
967
|
+
upgradeOption?: Partial<GearUpgradeOption>;
|
|
968
|
+
/** 장비 스타포스 옵션 */
|
|
969
|
+
starforceOption?: Partial<GearStarforceOption>;
|
|
970
|
+
/** 추가 옵션 목록 */
|
|
971
|
+
addOptions?: AddOptionData[];
|
|
972
|
+
/** 업그레이드 횟수 */
|
|
973
|
+
scrollUpgradeCount?: number;
|
|
974
|
+
/** 복구 가능 횟수 */
|
|
975
|
+
scrollResilienceCount?: number;
|
|
976
|
+
/** 업그레이드 가능 횟수 */
|
|
977
|
+
scrollUpgradeableCount?: number;
|
|
978
|
+
/** 강화 단계 */
|
|
979
|
+
star?: number;
|
|
980
|
+
/** 놀라운 장비 강화 주문서 사용 여부 */
|
|
981
|
+
starScroll?: boolean;
|
|
982
|
+
/** 소울 웨폰 정보 */
|
|
983
|
+
soulSlot?: SoulSlotData;
|
|
984
|
+
/** 잠재능력 등급 */
|
|
985
|
+
potentialGrade?: PotentialGrade;
|
|
986
|
+
/** 잠재능력 목록 */
|
|
987
|
+
potentials?: PotentialData[];
|
|
988
|
+
/** 에디셔널 잠재능력 등급 */
|
|
989
|
+
additionalPotentialGrade?: PotentialGrade;
|
|
990
|
+
/** 에디셔널 잠재능력 목록 */
|
|
991
|
+
additionalPotentials?: PotentialData[];
|
|
992
|
+
/** 장비 익셉셔널 옵션 */
|
|
993
|
+
exceptionalOption?: Partial<GearExceptionalOption>;
|
|
994
|
+
/** 익셉셔널 강화 횟수 */
|
|
995
|
+
exceptionalUpgradeCount?: number;
|
|
996
|
+
/** 익셉셔널 강화 가능 횟수 */
|
|
997
|
+
exceptionalUpgradeableCount?: number;
|
|
998
|
+
}
|
|
999
|
+
export { GearData }
|
|
1000
|
+
export { GearData as GearData_alias_1 }
|
|
1001
|
+
export { GearData as GearData_alias_2 }
|
|
1002
|
+
|
|
1003
|
+
export declare class GearError extends Error {
|
|
1004
|
+
readonly gearId: number;
|
|
1005
|
+
readonly gearName: string;
|
|
1006
|
+
readonly status: Record<string, unknown>;
|
|
1007
|
+
constructor(message: string, gear: {
|
|
1008
|
+
id: number;
|
|
1009
|
+
name: string;
|
|
1010
|
+
}, status: Record<string, unknown>);
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* 장비 익셉셔널 옵션
|
|
1015
|
+
*/
|
|
1016
|
+
declare type GearExceptionalOption = Pick<GearBaseOption, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower'>;
|
|
1017
|
+
export { GearExceptionalOption }
|
|
1018
|
+
export { GearExceptionalOption as GearExceptionalOption_alias_1 }
|
|
1019
|
+
export { GearExceptionalOption as GearExceptionalOption_alias_2 }
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* 착용 가능 성별
|
|
1023
|
+
*/
|
|
1024
|
+
declare enum GearGender {
|
|
1025
|
+
/** 남 */
|
|
1026
|
+
Male = 0,
|
|
1027
|
+
/** 여 */
|
|
1028
|
+
Female = 1
|
|
1029
|
+
}
|
|
1030
|
+
export { GearGender }
|
|
1031
|
+
export { GearGender as GearGender_alias_1 }
|
|
1032
|
+
export { GearGender as GearGender_alias_2 }
|
|
1033
|
+
|
|
1034
|
+
declare interface GearIncline {
|
|
1035
|
+
/** 카리스마 */
|
|
1036
|
+
charisma: number;
|
|
1037
|
+
/** 통찰력 */
|
|
1038
|
+
insight: number;
|
|
1039
|
+
/** 의지 */
|
|
1040
|
+
will: number;
|
|
1041
|
+
/** 손재주 */
|
|
1042
|
+
craft: number;
|
|
1043
|
+
/** 감성 */
|
|
1044
|
+
sense: number;
|
|
1045
|
+
/** 매력 */
|
|
1046
|
+
charm: number;
|
|
1047
|
+
}
|
|
1048
|
+
export { GearIncline }
|
|
1049
|
+
export { GearIncline as GearIncline_alias_1 }
|
|
1050
|
+
export { GearIncline as GearIncline_alias_2 }
|
|
1051
|
+
|
|
1052
|
+
declare type GearNames = keyof typeof resources;
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* 장비 옵션
|
|
1056
|
+
*/
|
|
1057
|
+
declare interface GearOption {
|
|
1058
|
+
/** STR */
|
|
1059
|
+
str: number;
|
|
1060
|
+
/** DEX */
|
|
1061
|
+
dex: number;
|
|
1062
|
+
/** INT */
|
|
1063
|
+
int: number;
|
|
1064
|
+
/** LUK */
|
|
1065
|
+
luk: number;
|
|
1066
|
+
/** STR(%) */
|
|
1067
|
+
strRate: number;
|
|
1068
|
+
/** DEX(%) */
|
|
1069
|
+
dexRate: number;
|
|
1070
|
+
/** INT(%) */
|
|
1071
|
+
intRate: number;
|
|
1072
|
+
/** LUK(%) */
|
|
1073
|
+
lukRate: number;
|
|
1074
|
+
/** 최대 HP */
|
|
1075
|
+
maxHp: number;
|
|
1076
|
+
/** 최대 MP */
|
|
1077
|
+
maxMp: number;
|
|
1078
|
+
/** 최대 HP(%) */
|
|
1079
|
+
maxHpRate: number;
|
|
1080
|
+
/** 최대 MP(%) */
|
|
1081
|
+
maxMpRate: number;
|
|
1082
|
+
/** MaxDF */
|
|
1083
|
+
maxDemonForce: number;
|
|
1084
|
+
/** 공격력 */
|
|
1085
|
+
attackPower: number;
|
|
1086
|
+
/** 마력 */
|
|
1087
|
+
magicPower: number;
|
|
1088
|
+
/** 공격력(%) */
|
|
1089
|
+
attackPowerRate: number;
|
|
1090
|
+
/** 마력(%) */
|
|
1091
|
+
magicPowerRate: number;
|
|
1092
|
+
/** 방어력 */
|
|
1093
|
+
armor: number;
|
|
1094
|
+
/** 방어력(%) */
|
|
1095
|
+
armorRate: number;
|
|
1096
|
+
/** 이동속도 */
|
|
1097
|
+
speed: number;
|
|
1098
|
+
/** 점프력 */
|
|
1099
|
+
jump: number;
|
|
1100
|
+
/** 보스 공격 시 데미지 증가(%) */
|
|
1101
|
+
bossDamage: number;
|
|
1102
|
+
/** 일반 몬스터 데미지(%) */
|
|
1103
|
+
normalDamage: number;
|
|
1104
|
+
/** 몬스터 방어율 무시(%) */
|
|
1105
|
+
ignoreMonsterArmor: number;
|
|
1106
|
+
/** 올스탯(%) */
|
|
1107
|
+
allStat: number;
|
|
1108
|
+
/** 데미지(%) */
|
|
1109
|
+
damage: number;
|
|
1110
|
+
/** 착용 레벨 감소 */
|
|
1111
|
+
reqLevelDecrease: number;
|
|
1112
|
+
/** 크리티컬 확률(%) */
|
|
1113
|
+
criticalRate: number;
|
|
1114
|
+
/** 크리티컬 데미지(%) */
|
|
1115
|
+
criticalDamage: number;
|
|
1116
|
+
/** 재사용 대기시간 감소 (초) */
|
|
1117
|
+
cooltimeReduce: number;
|
|
1118
|
+
/** 캐릭터 기준 9레벨 당 STR */
|
|
1119
|
+
strLv: number;
|
|
1120
|
+
/** 캐릭터 기준 9레벨 당 DEX */
|
|
1121
|
+
dexLv: number;
|
|
1122
|
+
/** 캐릭터 기준 9레벨 당 INT */
|
|
1123
|
+
intLv: number;
|
|
1124
|
+
/** 캐릭터 기준 9레벨 당 LUK */
|
|
1125
|
+
lukLv: number;
|
|
1126
|
+
}
|
|
1127
|
+
export { GearOption }
|
|
1128
|
+
export { GearOption as GearOption_alias_1 }
|
|
1129
|
+
export { GearOption as GearOption_alias_2 }
|
|
1130
|
+
|
|
1131
|
+
/**
|
|
1132
|
+
* 장비 착용 제한
|
|
1133
|
+
*/
|
|
1134
|
+
declare class GearReq implements GearReqData {
|
|
1135
|
+
/**
|
|
1136
|
+
* 장비 착용 제한 정보
|
|
1137
|
+
*/
|
|
1138
|
+
data: GearReqData;
|
|
1139
|
+
/**
|
|
1140
|
+
* 장비 착용 제한 정보를 참조하는 장비 착용 제한 인스턴스를 생성합니다.
|
|
1141
|
+
*/
|
|
1142
|
+
constructor(data: GearReqData);
|
|
1143
|
+
/**
|
|
1144
|
+
* 기본 착용 가능 레벨
|
|
1145
|
+
*/
|
|
1146
|
+
get level(): number;
|
|
1147
|
+
/**
|
|
1148
|
+
* 착용 가능 레벨 증가
|
|
1149
|
+
*/
|
|
1150
|
+
get levelIncrease(): number;
|
|
1151
|
+
/**
|
|
1152
|
+
* 착용 가능 직업 분류
|
|
1153
|
+
* */
|
|
1154
|
+
get job(): number;
|
|
1155
|
+
/**
|
|
1156
|
+
* 착용 가능 직업
|
|
1157
|
+
*/
|
|
1158
|
+
get class(): number;
|
|
1159
|
+
/**
|
|
1160
|
+
* 착용 가능 성별
|
|
1161
|
+
*/
|
|
1162
|
+
get gender(): GearGender | undefined;
|
|
1163
|
+
/**
|
|
1164
|
+
* 초보자 및 전 직업 착용 가능 여부를 계산합니다.
|
|
1165
|
+
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
1166
|
+
*/
|
|
1167
|
+
beginner(): boolean;
|
|
1168
|
+
/**
|
|
1169
|
+
* 전사 착용 가능 여부를 계산합니다.
|
|
1170
|
+
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
1171
|
+
*/
|
|
1172
|
+
warrior(): boolean;
|
|
1173
|
+
/**
|
|
1174
|
+
* 마법사 착용 가능 여부를 계산합니다.
|
|
1175
|
+
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
1176
|
+
*/
|
|
1177
|
+
magician(): boolean;
|
|
1178
|
+
/**
|
|
1179
|
+
* 궁수 착용 가능 여부를 계산합니다.
|
|
1180
|
+
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
1181
|
+
*/
|
|
1182
|
+
bowman(): boolean;
|
|
1183
|
+
/**
|
|
1184
|
+
* 도적 착용 가능 여부를 계산합니다.
|
|
1185
|
+
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
1186
|
+
*/
|
|
1187
|
+
thief(): boolean;
|
|
1188
|
+
/**
|
|
1189
|
+
* 해적 착용 가능 여부를 계산합니다.
|
|
1190
|
+
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
1191
|
+
*/
|
|
1192
|
+
pirate(): boolean;
|
|
1193
|
+
}
|
|
1194
|
+
export { GearReq }
|
|
1195
|
+
export { GearReq as GearReq_alias_1 }
|
|
1196
|
+
|
|
1197
|
+
/**
|
|
1198
|
+
* 장비 착용 제한 정보
|
|
1199
|
+
*/
|
|
1200
|
+
declare interface GearReqData {
|
|
1201
|
+
/** 착용 가능 레벨 */
|
|
1202
|
+
level?: number;
|
|
1203
|
+
/** 착용 가능 레벨 증가 */
|
|
1204
|
+
levelIncrease?: number;
|
|
1205
|
+
/** 착용 가능 직업 분류 */
|
|
1206
|
+
job?: number;
|
|
1207
|
+
/** 착용 가능 직업 */
|
|
1208
|
+
class?: number;
|
|
1209
|
+
/** 착용 가능 성별 */
|
|
1210
|
+
gender?: GearGender;
|
|
1211
|
+
}
|
|
1212
|
+
export { GearReqData }
|
|
1213
|
+
export { GearReqData as GearReqData_alias_1 }
|
|
1214
|
+
export { GearReqData as GearReqData_alias_2 }
|
|
1215
|
+
|
|
1216
|
+
/**
|
|
1217
|
+
* 장비 외형 정보
|
|
1218
|
+
*/
|
|
1219
|
+
declare interface GearShapeData {
|
|
1220
|
+
/** 장비 외형 이름 */
|
|
1221
|
+
name: string;
|
|
1222
|
+
/** 장비 외형 아이콘 */
|
|
1223
|
+
icon: string;
|
|
1224
|
+
}
|
|
1225
|
+
export { GearShapeData }
|
|
1226
|
+
export { GearShapeData as GearShapeData_alias_1 }
|
|
1227
|
+
export { GearShapeData as GearShapeData_alias_2 }
|
|
1228
|
+
|
|
1229
|
+
declare enum GearShare {
|
|
1230
|
+
/** 없음 */
|
|
1231
|
+
None = 0,
|
|
1232
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 */
|
|
1233
|
+
AccountSharable = 1,
|
|
1234
|
+
/** 월드 내 나의 캐릭터 간 1회 이동 가능 (이동 후 교환불가) */
|
|
1235
|
+
AccountSharableOnce = 2
|
|
1236
|
+
}
|
|
1237
|
+
export { GearShare }
|
|
1238
|
+
export { GearShare as GearShare_alias_1 }
|
|
1239
|
+
export { GearShare as GearShare_alias_2 }
|
|
1240
|
+
|
|
1241
|
+
/**
|
|
1242
|
+
* 장비 스타포스 옵션
|
|
1243
|
+
*/
|
|
1244
|
+
declare type GearStarforceOption = Pick<GearBaseOption, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump'>;
|
|
1245
|
+
export { GearStarforceOption }
|
|
1246
|
+
export { GearStarforceOption as GearStarforceOption_alias_1 }
|
|
1247
|
+
export { GearStarforceOption as GearStarforceOption_alias_2 }
|
|
1248
|
+
|
|
1249
|
+
declare enum GearTrade {
|
|
1250
|
+
/** 교환 가능 */
|
|
1251
|
+
Tradeable = 0,
|
|
1252
|
+
/** 교환 불가 */
|
|
1253
|
+
TradeBlock = 1,
|
|
1254
|
+
/** 장착 시 교환 불가 */
|
|
1255
|
+
EquipTradeBlock = 2,
|
|
1256
|
+
/** 1회 교환 가능 */
|
|
1257
|
+
TradeOnce = 3
|
|
1258
|
+
}
|
|
1259
|
+
export { GearTrade }
|
|
1260
|
+
export { GearTrade as GearTrade_alias_1 }
|
|
1261
|
+
export { GearTrade as GearTrade_alias_2 }
|
|
1262
|
+
|
|
1263
|
+
declare enum GearType {
|
|
1264
|
+
/** 모자 */
|
|
1265
|
+
cap = 100,
|
|
1266
|
+
/** 얼굴장식 */
|
|
1267
|
+
faceAccessory = 101,
|
|
1268
|
+
/** 눈장식 */
|
|
1269
|
+
eyeAccessory = 102,
|
|
1270
|
+
/** 귀고리 */
|
|
1271
|
+
earrings = 103,
|
|
1272
|
+
/** 상의 */
|
|
1273
|
+
coat = 104,
|
|
1274
|
+
/** 한벌옷 */
|
|
1275
|
+
longcoat = 105,
|
|
1276
|
+
/** 하의 */
|
|
1277
|
+
pants = 106,
|
|
1278
|
+
/** 신발 */
|
|
1279
|
+
shoes = 107,
|
|
1280
|
+
/** 장갑 */
|
|
1281
|
+
glove = 108,
|
|
1282
|
+
/** 망토 */
|
|
1283
|
+
cape = 110,
|
|
1284
|
+
/** 반지 */
|
|
1285
|
+
ring = 111,
|
|
1286
|
+
/** 펜던트 */
|
|
1287
|
+
pendant = 112,
|
|
1288
|
+
/** 벨트 */
|
|
1289
|
+
belt = 113,
|
|
1290
|
+
/** 훈장 */
|
|
1291
|
+
medal = 114,
|
|
1292
|
+
/** 어깨장식 */
|
|
1293
|
+
shoulder = 115,
|
|
1294
|
+
/** 포켓 아이템 */
|
|
1295
|
+
pocket = 116,
|
|
1296
|
+
/** 뱃지 */
|
|
1297
|
+
badge = 118,
|
|
1298
|
+
/** 안드로이드 */
|
|
1299
|
+
android = 166,
|
|
1300
|
+
/** 기계 심장 */
|
|
1301
|
+
machineHeart = 167,
|
|
1302
|
+
/** 방패 */
|
|
1303
|
+
shield = 109,
|
|
1304
|
+
/** 엠블렘 */
|
|
1305
|
+
emblem = 119,
|
|
1306
|
+
/** 파워소스 */
|
|
1307
|
+
powerSource = 119020,
|
|
1308
|
+
/** 샤이닝 로드 */
|
|
1309
|
+
shiningRod = 1212,
|
|
1310
|
+
/** 튜너 */
|
|
1311
|
+
tuner = 1213,
|
|
1312
|
+
/** 브레스 슈터 */
|
|
1313
|
+
breathShooter = 1214,
|
|
1314
|
+
/** 장검 */
|
|
1315
|
+
longSword2 = 1215,
|
|
1316
|
+
/** 소울 슈터 */
|
|
1317
|
+
soulShooter = 122,
|
|
1318
|
+
/** 데스페라도 */
|
|
1319
|
+
desperado = 123,
|
|
1320
|
+
/** 에너지소드 */
|
|
1321
|
+
energySword = 124,
|
|
1322
|
+
/** ESP 리미터 */
|
|
1323
|
+
espLimiter = 126,
|
|
1324
|
+
/** 체인 (카데나) */
|
|
1325
|
+
chain = 127,
|
|
1326
|
+
/** 매직 건틀렛 */
|
|
1327
|
+
magicGauntlet = 128,
|
|
1328
|
+
/** 부채 (호영) */
|
|
1329
|
+
ritualFan = 129,
|
|
1330
|
+
/** 한손검 */
|
|
1331
|
+
ohSword = 130,
|
|
1332
|
+
/** 한손도끼 */
|
|
1333
|
+
ohAxe = 131,
|
|
1334
|
+
/** 한손둔기 */
|
|
1335
|
+
ohBlunt = 132,
|
|
1336
|
+
/** 단검 */
|
|
1337
|
+
dagger = 133,
|
|
1338
|
+
/** 블레이드 */
|
|
1339
|
+
katara = 134,
|
|
1340
|
+
/** 케인 */
|
|
1341
|
+
cane = 136,
|
|
1342
|
+
/** 완드 */
|
|
1343
|
+
wand = 137,
|
|
1344
|
+
/** 스태프 */
|
|
1345
|
+
staff = 138,
|
|
1346
|
+
/** 두손검 */
|
|
1347
|
+
thSword = 140,
|
|
1348
|
+
/** 차크람 */
|
|
1349
|
+
chakram = 1404,
|
|
1350
|
+
/** 두손도끼 */
|
|
1351
|
+
thAxe = 141,
|
|
1352
|
+
/** 두손둔기 */
|
|
1353
|
+
thBlunt = 142,
|
|
1354
|
+
/** 창 */
|
|
1355
|
+
spear = 143,
|
|
1356
|
+
/** 폴암 */
|
|
1357
|
+
polearm = 144,
|
|
1358
|
+
/** 활 */
|
|
1359
|
+
bow = 145,
|
|
1360
|
+
/** 석궁 */
|
|
1361
|
+
crossbow = 146,
|
|
1362
|
+
/** 아대 */
|
|
1363
|
+
claw = 147,
|
|
1364
|
+
/** 너클 */
|
|
1365
|
+
knuckle = 148,
|
|
1366
|
+
/** 건 */
|
|
1367
|
+
gun = 149,
|
|
1368
|
+
/** 삽 */
|
|
1369
|
+
shovel = 150,
|
|
1370
|
+
/** 곡괭이 */
|
|
1371
|
+
pickaxe = 151,
|
|
1372
|
+
/** 듀얼 보우건 */
|
|
1373
|
+
dualBowguns = 152,
|
|
1374
|
+
/** 핸드캐논 */
|
|
1375
|
+
handCannon = 153,
|
|
1376
|
+
/** 대검 */
|
|
1377
|
+
heavySword = 156,
|
|
1378
|
+
/** 태도 */
|
|
1379
|
+
longSword = 157,
|
|
1380
|
+
/** 건틀렛 리볼버 */
|
|
1381
|
+
gauntletRevolver = 158,
|
|
1382
|
+
/** 에인션트 보우 */
|
|
1383
|
+
ancientBow = 159,
|
|
1384
|
+
/** 소울실드 */
|
|
1385
|
+
soulShield = 1098,
|
|
1386
|
+
/** 포스실드 */
|
|
1387
|
+
demonShield = 1099,
|
|
1388
|
+
/** 마법화살 */
|
|
1389
|
+
magicArrow = 135200,
|
|
1390
|
+
/** 카드 */
|
|
1391
|
+
card = 135210,
|
|
1392
|
+
/** 메달 */
|
|
1393
|
+
medallion = 135220,
|
|
1394
|
+
/** 로자리오 */
|
|
1395
|
+
rosary = 135221,
|
|
1396
|
+
/** 쇠사슬 */
|
|
1397
|
+
ironChain = 135222,
|
|
1398
|
+
/** 마도서 (불,독) */
|
|
1399
|
+
magicBook1 = 135223,
|
|
1400
|
+
/** 마도서 (얼음,번개) */
|
|
1401
|
+
magicBook2 = 135224,
|
|
1402
|
+
/** 마도서 (비숍) */
|
|
1403
|
+
magicBook3 = 135225,
|
|
1404
|
+
/** 화살깃 */
|
|
1405
|
+
arrowFletching = 135226,
|
|
1406
|
+
/** 활골무 */
|
|
1407
|
+
bowThimble = 135227,
|
|
1408
|
+
/** 단검용 검집 */
|
|
1409
|
+
daggerScabbard = 135228,
|
|
1410
|
+
/** 부적 */
|
|
1411
|
+
charm = 135229,
|
|
1412
|
+
/** 오브 */
|
|
1413
|
+
orb = 135240,
|
|
1414
|
+
/** 용의 정수 */
|
|
1415
|
+
dragonEssence = 135250,
|
|
1416
|
+
/** 소울링 */
|
|
1417
|
+
soulRing = 135260,
|
|
1418
|
+
/** 매그넘 */
|
|
1419
|
+
magnum = 135270,
|
|
1420
|
+
/** 리스트밴드 */
|
|
1421
|
+
wristBand = 135290,
|
|
1422
|
+
/** 조준기 */
|
|
1423
|
+
farSight = 135291,
|
|
1424
|
+
/** 화약통 */
|
|
1425
|
+
powderKeg = 135292,
|
|
1426
|
+
/** 무게추 */
|
|
1427
|
+
mass = 135293,
|
|
1428
|
+
/** 문서 */
|
|
1429
|
+
document = 135294,
|
|
1430
|
+
/** 마법구슬 */
|
|
1431
|
+
magicMarble = 135295,
|
|
1432
|
+
/** 화살촉 */
|
|
1433
|
+
arrowhead = 135296,
|
|
1434
|
+
/** 보석 (시그너스) */
|
|
1435
|
+
jewel = 135297,
|
|
1436
|
+
/** 화약통 2 */
|
|
1437
|
+
powderKeg2 = 135298,
|
|
1438
|
+
/** 컨트롤러 */
|
|
1439
|
+
controller = 135300,
|
|
1440
|
+
/** 여우구슬 */
|
|
1441
|
+
foxMarble = 135310,
|
|
1442
|
+
/** 체스피스 */
|
|
1443
|
+
chessPiece = 135320,
|
|
1444
|
+
/** 무기 전송장치 */
|
|
1445
|
+
transmitter = 135330,
|
|
1446
|
+
/** 장약 */
|
|
1447
|
+
charge = 135340,
|
|
1448
|
+
/** 매직윙 */
|
|
1449
|
+
magicWing = 135350,
|
|
1450
|
+
/** 패스 오브 어비스 */
|
|
1451
|
+
pathOfAbyss = 135360,
|
|
1452
|
+
/** 렐릭 */
|
|
1453
|
+
relic = 135370,
|
|
1454
|
+
/** 선추 */
|
|
1455
|
+
fanTassel = 135380,
|
|
1456
|
+
/** 브레이슬릿 */
|
|
1457
|
+
bracelet = 135400,
|
|
1458
|
+
/** 웨폰 벨트 */
|
|
1459
|
+
weaponBelt = 135401,
|
|
1460
|
+
/** 노리개 */
|
|
1461
|
+
ornament = 135402,
|
|
1462
|
+
/** 헥스시커 */
|
|
1463
|
+
hexSeeker = 135403,
|
|
1464
|
+
/** 여의보주 */
|
|
1465
|
+
sacredJewel = 135404,
|
|
1466
|
+
/** 펫장비 */
|
|
1467
|
+
petEquip = 180,
|
|
1468
|
+
/** 메카닉 엔진 */
|
|
1469
|
+
machineEngine = 161,
|
|
1470
|
+
/** 메카닉 암 */
|
|
1471
|
+
machineArms = 162,
|
|
1472
|
+
/** 메카닉 레그 */
|
|
1473
|
+
machineLegs = 163,
|
|
1474
|
+
/** 메카닉 프레임 */
|
|
1475
|
+
machineBody = 164,
|
|
1476
|
+
/** 메카닉 트렌지스터 */
|
|
1477
|
+
machineTransistors = 165,
|
|
1478
|
+
/** 드래곤 모자 */
|
|
1479
|
+
dragonMask = 194,
|
|
1480
|
+
/** 드래곤 펜던트 */
|
|
1481
|
+
dragonPendant = 195,
|
|
1482
|
+
/** 드래곤 날개장식 */
|
|
1483
|
+
dragonWings = 196,
|
|
1484
|
+
/** 드래곤 꼬리장식 */
|
|
1485
|
+
dragonTail = 197
|
|
1486
|
+
}
|
|
1487
|
+
export { GearType }
|
|
1488
|
+
export { GearType as GearType_alias_1 }
|
|
1489
|
+
export { GearType as GearType_alias_2 }
|
|
1490
|
+
|
|
1491
|
+
/**
|
|
1492
|
+
* 장비 주문서 옵션
|
|
1493
|
+
*/
|
|
1494
|
+
declare type GearUpgradeOption = Pick<GearBaseOption, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump'>;
|
|
1495
|
+
export { GearUpgradeOption }
|
|
1496
|
+
export { GearUpgradeOption as GearUpgradeOption_alias_1 }
|
|
1497
|
+
export { GearUpgradeOption as GearUpgradeOption_alias_2 }
|
|
1498
|
+
|
|
1499
|
+
export declare function _getAccSpellTrace(gear: ReadonlyGear, type: SpellTraceType, rate: SpellTraceRate): SpellTrace;
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* 장비에 적용되는 추가 옵션을 계산합니다.
|
|
1503
|
+
* @param gear 추가옵션을 계산할 장비.
|
|
1504
|
+
* @param type 추가 옵션 종류.
|
|
1505
|
+
* @param grade 추가 옵션 단계.
|
|
1506
|
+
* @returns 추가 옵션 종류 및 단계에 해당하는 옵션.
|
|
1507
|
+
*
|
|
1508
|
+
* @throws {@link GearError}
|
|
1509
|
+
* 장비에 부여할 수 없는 추가 옵션을 지정했을 경우.
|
|
1510
|
+
*/
|
|
1511
|
+
declare function getAddOption(gear: ReadonlyGear, type: AddOptionType, grade: AddOptionGrade): Partial<GearAddOption>;
|
|
1512
|
+
export { getAddOption }
|
|
1513
|
+
export { getAddOption as getAddOption_alias_1 }
|
|
1514
|
+
|
|
1515
|
+
export declare function _getAddOptionKeys(type: AddOptionType): (keyof GearAddOption)[];
|
|
1516
|
+
|
|
1517
|
+
/**
|
|
1518
|
+
* 장비에 적용되는 추가 옵션 종류에 따른 값을 계산합니다.
|
|
1519
|
+
* @param gear 추가옵션을 계산할 장비.
|
|
1520
|
+
* @param type 추가 옵션 종류.
|
|
1521
|
+
* @param grade 추가 옵션 단계.
|
|
1522
|
+
* @returns 추가 옵션 값.
|
|
1523
|
+
*
|
|
1524
|
+
* @throws {@link GearError}
|
|
1525
|
+
* 장비에 부여할 수 없는 추가 옵션을 지정했을 경우.
|
|
1526
|
+
*/
|
|
1527
|
+
declare function getAddOptionValue(gear: ReadonlyGear, type: AddOptionType, grade: AddOptionGrade): number;
|
|
1528
|
+
export { getAddOptionValue }
|
|
1529
|
+
export { getAddOptionValue as getAddOptionValue_alias_1 }
|
|
1530
|
+
|
|
1531
|
+
export declare function getAllGearTypes(): GearType[];
|
|
1532
|
+
|
|
1533
|
+
export declare function _getAllStatValue(grade: AddOptionGrade, { reqLevel, gearType }: Pick<AddOptionContext, 'reqLevel' | 'gearType'>): number;
|
|
1534
|
+
|
|
1535
|
+
export declare function _getArmorSpellTrace(gear: ReadonlyGear, type: SpellTraceType, rate: SpellTraceRate): SpellTrace;
|
|
1536
|
+
|
|
1537
|
+
export declare function _getBossDamageValue(grade: AddOptionGrade, { reqLevel, gearType }: Pick<AddOptionContext, 'reqLevel' | 'gearType'>): number;
|
|
1538
|
+
|
|
1539
|
+
export declare function _getDamageValue(grade: AddOptionGrade, { gearType }: Pick<AddOptionContext, 'gearType'>): number;
|
|
1540
|
+
|
|
1541
|
+
export declare function _getDoubleStatValue(grade: AddOptionGrade, { reqLevel }: Pick<AddOptionContext, 'reqLevel'>): number;
|
|
1542
|
+
|
|
1543
|
+
export declare function getGearTypeContains(types: GearType[]): [GearType, boolean][];
|
|
1544
|
+
|
|
1545
|
+
export declare function _getGloveSpellTrace(gear: ReadonlyGear, type: SpellTraceType, rate: SpellTraceRate): SpellTrace;
|
|
1546
|
+
|
|
1547
|
+
export declare function _getHeartSpellTrace(gear: ReadonlyGear, type: SpellTraceType, rate: SpellTraceRate): SpellTrace;
|
|
1548
|
+
|
|
1549
|
+
export declare function _getHpMpValue(grade: AddOptionGrade, { reqLevel }: Pick<AddOptionContext, 'reqLevel'>): number;
|
|
1550
|
+
|
|
1551
|
+
export declare function _getJumpValue(grade: AddOptionGrade, { gearType }: Pick<AddOptionContext, 'gearType'>): number;
|
|
1552
|
+
|
|
1553
|
+
/**
|
|
1554
|
+
* 장비의 최대 스타포스 강화를 계산합니다.
|
|
1555
|
+
*
|
|
1556
|
+
* 놀라운 장비 강화 주문서가 사용되었을 경우 최대 `15`입니다.
|
|
1557
|
+
* @param gear 계산할 장비.
|
|
1558
|
+
* @returns 장비의 최대 스타포스 강화.
|
|
1559
|
+
*/
|
|
1560
|
+
declare function getMaxStar(gear: ReadonlyGear): number;
|
|
1561
|
+
export { getMaxStar }
|
|
1562
|
+
export { getMaxStar as getMaxStar_alias_1 }
|
|
1563
|
+
|
|
1564
|
+
export declare function _getPowerValue(grade: AddOptionGrade, ctx: AddOptionContext): number;
|
|
1565
|
+
|
|
1566
|
+
export declare function _getReqLevelDecreaseValue(grade: AddOptionGrade, { reqLevel }: Pick<AddOptionContext, 'reqLevel'>): number;
|
|
1567
|
+
|
|
1568
|
+
export declare function _getSingleStatValue(grade: AddOptionGrade, { reqLevel }: Pick<AddOptionContext, 'reqLevel'>): number;
|
|
1569
|
+
|
|
1570
|
+
export declare function _getSpeedValue(grade: AddOptionGrade, { gearType }: Pick<AddOptionContext, 'gearType'>): number;
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
* 주문의 흔적 주문서를 생성합니다.
|
|
1574
|
+
* @param gear 대상 장비.
|
|
1575
|
+
* @param type 주문의 흔적 종류.
|
|
1576
|
+
* @param rate 주문의 흔적 성공 확률.
|
|
1577
|
+
* @returns 주문의 흔적 주문서.
|
|
1578
|
+
*
|
|
1579
|
+
* @throws {@link GearError}
|
|
1580
|
+
* 주문의 흔적을 장비에 적용할 수 없는 경우.
|
|
1581
|
+
*/
|
|
1582
|
+
declare function getSpellTraceScroll(gear: ReadonlyGear, type: SpellTraceType, rate: SpellTraceRate): SpellTrace;
|
|
1583
|
+
export { getSpellTraceScroll }
|
|
1584
|
+
export { getSpellTraceScroll as getSpellTraceScroll_alias_1 }
|
|
1585
|
+
|
|
1586
|
+
export declare function getVersion(data: object): number | undefined;
|
|
1587
|
+
|
|
1588
|
+
export declare function _getWeaponPowerValue(grade: AddOptionGrade, ctx: AddOptionContext): number;
|
|
1589
|
+
|
|
1590
|
+
export declare function _getWeaponSpellTrace(gear: ReadonlyGear, type: SpellTraceType, rate: SpellTraceRate): SpellTrace;
|
|
1591
|
+
|
|
1592
|
+
export declare function _getZeroWeaponAttackPower(gearType: GearType, { attackPower }: Pick<AddOptionContext, 'attackPower'>): number;
|
|
1593
|
+
|
|
1594
|
+
/**
|
|
1595
|
+
* 장비 분류가 장신구인지 여부를 확인합니다. 어깨장식이 포함됩니다.
|
|
1596
|
+
* @param type 장비 분류.
|
|
1597
|
+
* @returns 장신구일 경우 `true`; 아닐 경우 `false`.
|
|
1598
|
+
*/
|
|
1599
|
+
declare function isAccessory(type: GearType): boolean;
|
|
1600
|
+
export { isAccessory }
|
|
1601
|
+
export { isAccessory as isAccessory_alias_1 }
|
|
1602
|
+
|
|
1603
|
+
/**
|
|
1604
|
+
* 장비 분류가 방어구인지 여부를 확인합니다. 어깨장식이 포함되지 않고 방패가 포함됩니다.
|
|
1605
|
+
* @param type 장비 분류.
|
|
1606
|
+
* @returns 방어구일 경우 `true`; 아닐 경우 `false`.
|
|
1607
|
+
*/
|
|
1608
|
+
declare function isArmor(type: GearType): boolean;
|
|
1609
|
+
export { isArmor }
|
|
1610
|
+
export { isArmor as isArmor_alias_1 }
|
|
1611
|
+
|
|
1612
|
+
/**
|
|
1613
|
+
* 장비 분류가 두손무기인지 여부를 확인합니다.
|
|
1614
|
+
* @param type 장비 분류.
|
|
1615
|
+
* @returns 두손무기일 경우 `true`; 아닐 경우 `false`.
|
|
1616
|
+
*/
|
|
1617
|
+
declare function isDoubleHandWeapon(type: GearType): boolean;
|
|
1618
|
+
export { isDoubleHandWeapon }
|
|
1619
|
+
export { isDoubleHandWeapon as isDoubleHandWeapon_alias_1 }
|
|
1620
|
+
|
|
1621
|
+
/**
|
|
1622
|
+
* 장비 분류가 에반 드래곤 장비인지 여부를 확인합니다.
|
|
1623
|
+
* @param type 장비 분류.
|
|
1624
|
+
* @returns 에반 드래곤 장비일 경우 `true`; 아닐 경우 `false`.
|
|
1625
|
+
*/
|
|
1626
|
+
declare function isDragonGear(type: GearType): boolean;
|
|
1627
|
+
export { isDragonGear }
|
|
1628
|
+
export { isDragonGear as isDragonGear_alias_1 }
|
|
1629
|
+
|
|
1630
|
+
/**
|
|
1631
|
+
* 장비 분류가 한손무기인지 여부를 확인합니다. 블레이드(`katara`)는 포함되지 않습니다.
|
|
1632
|
+
* @param type 장비 분류.
|
|
1633
|
+
* @returns 한손무기일 경우 `true`; 아닐 경우 `false`.
|
|
1634
|
+
*/
|
|
1635
|
+
declare function isLeftWeapon(type: GearType): boolean;
|
|
1636
|
+
export { isLeftWeapon }
|
|
1637
|
+
export { isLeftWeapon as isLeftWeapon_alias_1 }
|
|
1638
|
+
|
|
1639
|
+
/**
|
|
1640
|
+
* 장비 분류가 메카닉 장비인지 여부를 확인합니다.
|
|
1641
|
+
* @param type 장비 분류.
|
|
1642
|
+
* @returns 메카닉 장비일 경우 `true`; 아닐 경우 `false`.
|
|
1643
|
+
*/
|
|
1644
|
+
declare function isMechanicGear(type: GearType): boolean;
|
|
1645
|
+
export { isMechanicGear }
|
|
1646
|
+
export { isMechanicGear as isMechanicGear_alias_1 }
|
|
1647
|
+
|
|
1648
|
+
/**
|
|
1649
|
+
* 장비 분류가 방패인지 여부를 확인합니다.
|
|
1650
|
+
* @param type 장비 분류.
|
|
1651
|
+
* @returns 방패일 경우 `true`; 아닐 경우 `false`.
|
|
1652
|
+
*/
|
|
1653
|
+
declare function isShield(type: GearType): boolean;
|
|
1654
|
+
export { isShield }
|
|
1655
|
+
export { isShield as isShield_alias_1 }
|
|
1656
|
+
|
|
1657
|
+
/**
|
|
1658
|
+
* 장비 분류가 보조무기인지 여부를 확인합니다. 블레이드(`katara`), 방패류가 포함됩니다.
|
|
1659
|
+
* @param type 장비 분류.
|
|
1660
|
+
* @returns 보조무기일 경우 `true`; 아닐 경우 `false`.
|
|
1661
|
+
*/
|
|
1662
|
+
declare function isSubWeapon(type: GearType): boolean;
|
|
1663
|
+
export { isSubWeapon }
|
|
1664
|
+
export { isSubWeapon as isSubWeapon_alias_1 }
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* 장비 분류가 주무기인지 여부를 확인합니다. 블레이드(`katara`)는 포함되지 않습니다.
|
|
1668
|
+
* @param type 장비 분류.
|
|
1669
|
+
* @returns 주무기일 경우 `true`; 아닐 경우 `false`.
|
|
1670
|
+
*/
|
|
1671
|
+
declare function isWeapon(type: GearType): boolean;
|
|
1672
|
+
export { isWeapon }
|
|
1673
|
+
export { isWeapon as isWeapon_alias_1 }
|
|
1674
|
+
|
|
1675
|
+
export declare function joinEach<T1 extends unknown[], T2 extends unknown[]>(prefix: [...T1], items: [...T2][]): [...T1, ...T2][];
|
|
1676
|
+
|
|
1677
|
+
export declare const MAX_REQLEVEL_STARSCROLL = 150;
|
|
1678
|
+
|
|
1679
|
+
export declare const MAX_STARFORCE = 30;
|
|
1680
|
+
|
|
1681
|
+
export declare const MAX_STARSCROLL = 15;
|
|
1682
|
+
|
|
1683
|
+
export declare const MAX_SUPERIOR = 15;
|
|
1684
|
+
|
|
1685
|
+
declare function migrate(data: object, version?: number): object;
|
|
1686
|
+
export { migrate }
|
|
1687
|
+
export { migrate as migrate_alias_1 }
|
|
1688
|
+
|
|
1689
|
+
declare type OptionalProperty = 'attackSpeed' | 'cuttableCount' | 'totalCuttableCount' | 'setItemId' | 'growthExp' | 'growthLevel' | 'dateExpire';
|
|
1690
|
+
|
|
1691
|
+
export declare type Patch = (gear: Gear) => void;
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* 잠재옵션 정보
|
|
1695
|
+
*/
|
|
1696
|
+
declare interface PotentialData {
|
|
1697
|
+
/** 잠재능력 ID */
|
|
1698
|
+
id?: number;
|
|
1699
|
+
/** 잠재능력 등급 */
|
|
1700
|
+
grade: PotentialGrade;
|
|
1701
|
+
/** 장비에 표시되는 이름 */
|
|
1702
|
+
summary: string;
|
|
1703
|
+
/** 잠재능력 옵션 */
|
|
1704
|
+
option: Partial<PotentialOption>;
|
|
1705
|
+
}
|
|
1706
|
+
export { PotentialData }
|
|
1707
|
+
export { PotentialData as PotentialData_alias_1 }
|
|
1708
|
+
export { PotentialData as PotentialData_alias_2 }
|
|
1709
|
+
|
|
1710
|
+
declare enum PotentialGrade {
|
|
1711
|
+
Normal = 0,
|
|
1712
|
+
Rare = 1,
|
|
1713
|
+
Epic = 2,
|
|
1714
|
+
Unique = 3,
|
|
1715
|
+
Legendary = 4
|
|
1716
|
+
}
|
|
1717
|
+
export { PotentialGrade }
|
|
1718
|
+
export { PotentialGrade as PotentialGrade_alias_1 }
|
|
1719
|
+
export { PotentialGrade as PotentialGrade_alias_2 }
|
|
1720
|
+
|
|
1721
|
+
declare type PotentialOption = Pick<GearOption, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'maxHp' | 'maxMp' | 'maxHpRate' | 'maxMpRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'armor' | 'armorRate' | 'speed' | 'jump' | 'bossDamage' | 'normalDamage' | 'ignoreMonsterArmor' | 'damage' | 'criticalRate' | 'criticalDamage' | 'cooltimeReduce' | 'strLv' | 'dexLv' | 'intLv' | 'lukLv'>;
|
|
1722
|
+
export { PotentialOption }
|
|
1723
|
+
export { PotentialOption as PotentialOption_alias_1 }
|
|
1724
|
+
export { PotentialOption as PotentialOption_alias_2 }
|
|
1725
|
+
|
|
1726
|
+
declare function potentialPatch(grade: PotentialGrade, options: PotentialData[]): Patch;
|
|
1727
|
+
export { potentialPatch }
|
|
1728
|
+
export { potentialPatch as potentialPatch_alias_1 }
|
|
1729
|
+
|
|
1730
|
+
/**
|
|
1731
|
+
* 장비 (읽기 전용)
|
|
1732
|
+
*
|
|
1733
|
+
* 생성자에 전달된 장비 정보와 `data` 속성 간에 엄격한 동등(`===`)을 보장합니다.
|
|
1734
|
+
*
|
|
1735
|
+
* 장비 정보의 모든 속성에 대해 읽기 전용 속성을 제공합니다.
|
|
1736
|
+
*/
|
|
1737
|
+
declare class ReadonlyGear implements _Gear {
|
|
1738
|
+
/** 장비 정보 */
|
|
1739
|
+
protected readonly _data: Readonly<GearData>;
|
|
1740
|
+
/**
|
|
1741
|
+
* 장비 정보를 참조하는 장비 인스턴스를 생성합니다.
|
|
1742
|
+
* @param data 장비 정보.
|
|
1743
|
+
*
|
|
1744
|
+
* @throws {@link GearError}
|
|
1745
|
+
* 지원하지 않는 장비 정보 버전일 경우.
|
|
1746
|
+
*/
|
|
1747
|
+
constructor(data: GearData);
|
|
1748
|
+
/**
|
|
1749
|
+
* 장비 정보
|
|
1750
|
+
*/
|
|
1751
|
+
get data(): Readonly<GearData>;
|
|
1752
|
+
/**
|
|
1753
|
+
* 장비 정보 버전
|
|
1754
|
+
*/
|
|
1755
|
+
get version(): typeof VERSION;
|
|
1756
|
+
/**
|
|
1757
|
+
* 장비 ID
|
|
1758
|
+
*/
|
|
1759
|
+
get id(): number;
|
|
1760
|
+
/**
|
|
1761
|
+
* 장비명
|
|
1762
|
+
*/
|
|
1763
|
+
get name(): string;
|
|
1764
|
+
/**
|
|
1765
|
+
* 장비 아이콘
|
|
1766
|
+
*/
|
|
1767
|
+
get icon(): string;
|
|
1768
|
+
/**
|
|
1769
|
+
* 장비 설명
|
|
1770
|
+
*/
|
|
1771
|
+
get desc(): string | undefined;
|
|
1772
|
+
/**
|
|
1773
|
+
* 장비 외형
|
|
1774
|
+
*/
|
|
1775
|
+
get shape(): Readonly<GearShapeData> | undefined;
|
|
1776
|
+
/**
|
|
1777
|
+
* 장비 외형 아이콘
|
|
1778
|
+
*
|
|
1779
|
+
* 장비 외형이 설정되었을 경우 장비 외형 아이콘, 그렇지 않을 경우 장비 아이콘.
|
|
1780
|
+
*/
|
|
1781
|
+
get shapeIcon(): string;
|
|
1782
|
+
/**
|
|
1783
|
+
* 이름 새기기
|
|
1784
|
+
*/
|
|
1785
|
+
get itemTag(): string | undefined;
|
|
1786
|
+
/**
|
|
1787
|
+
* 장비 분류
|
|
1788
|
+
*/
|
|
1789
|
+
get type(): GearType;
|
|
1790
|
+
/**
|
|
1791
|
+
* 장비 착용 제한
|
|
1792
|
+
*/
|
|
1793
|
+
get req(): GearReq;
|
|
1794
|
+
/**
|
|
1795
|
+
* 장비 속성
|
|
1796
|
+
*/
|
|
1797
|
+
get attributes(): GearAttribute;
|
|
1798
|
+
/**
|
|
1799
|
+
* 장비 최종 옵션
|
|
1800
|
+
*
|
|
1801
|
+
* 기본 옵션, 추가 옵션, 주문서 옵션, 스타포스 옵션의 합.
|
|
1802
|
+
*
|
|
1803
|
+
* 익셉셔널 옵션은 미포함.
|
|
1804
|
+
*/
|
|
1805
|
+
get totalOption(): Readonly<GearBaseOption & GearAddOption & GearUpgradeOption & GearStarforceOption>;
|
|
1806
|
+
/**
|
|
1807
|
+
* 장비 순수 옵션
|
|
1808
|
+
*/
|
|
1809
|
+
get baseOption(): Readonly<GearBaseOption>;
|
|
1810
|
+
/**
|
|
1811
|
+
* 장비 추가 옵션
|
|
1812
|
+
*/
|
|
1813
|
+
get addOption(): Readonly<GearAddOption>;
|
|
1814
|
+
/**
|
|
1815
|
+
* 장비 주문서 강화 옵션
|
|
1816
|
+
*/
|
|
1817
|
+
get upgradeOption(): Readonly<GearUpgradeOption>;
|
|
1818
|
+
/**
|
|
1819
|
+
* 장비 스타포스 옵션
|
|
1820
|
+
*/
|
|
1821
|
+
get starforceOption(): Readonly<GearStarforceOption>;
|
|
1822
|
+
/**
|
|
1823
|
+
* 추가 옵션 목록
|
|
1824
|
+
*/
|
|
1825
|
+
get addOptions(): readonly Readonly<AddOptionData>[];
|
|
1826
|
+
/**
|
|
1827
|
+
* 업그레이드 횟수
|
|
1828
|
+
*/
|
|
1829
|
+
get scrollUpgradeCount(): number;
|
|
1830
|
+
/**
|
|
1831
|
+
* 복구 가능 횟수
|
|
1832
|
+
*/
|
|
1833
|
+
get scrollResilienceCount(): number;
|
|
1834
|
+
/**
|
|
1835
|
+
* 업그레이드 가능 횟수
|
|
1836
|
+
*/
|
|
1837
|
+
get scrollUpgradeableCount(): number;
|
|
1838
|
+
/**
|
|
1839
|
+
* 전체 업그레이드 가능 횟수
|
|
1840
|
+
*
|
|
1841
|
+
* 성공, 실패, 황금 망치 적용 여부를 무시한 장비의 기본 업그레이드 가능 횟수입니다.
|
|
1842
|
+
*/
|
|
1843
|
+
get scrollTotalUpgradeableCount(): number;
|
|
1844
|
+
/**
|
|
1845
|
+
* 스타포스 강화 단계
|
|
1846
|
+
*/
|
|
1847
|
+
get star(): number;
|
|
1848
|
+
/**
|
|
1849
|
+
* 최대 스타포스 강화 단계
|
|
1850
|
+
*
|
|
1851
|
+
* 놀라운 장비 강화 주문서가 사용되었을 경우 최대 `15`입니다.
|
|
1852
|
+
*/
|
|
1853
|
+
get maxStar(): number;
|
|
1854
|
+
/**
|
|
1855
|
+
* 놀라운 장비 강화 주문서 사용 여부
|
|
1856
|
+
*/
|
|
1857
|
+
get starScroll(): boolean;
|
|
1858
|
+
/**
|
|
1859
|
+
* 소울 인챈트 여부
|
|
1860
|
+
*/
|
|
1861
|
+
get soulEnchanted(): boolean;
|
|
1862
|
+
/**
|
|
1863
|
+
* 소울
|
|
1864
|
+
*/
|
|
1865
|
+
get soul(): ReadonlySoulData | undefined;
|
|
1866
|
+
/**
|
|
1867
|
+
* 소울 충전량
|
|
1868
|
+
*/
|
|
1869
|
+
get soulCharge(): number;
|
|
1870
|
+
/**
|
|
1871
|
+
* 소울 충전 옵션
|
|
1872
|
+
*/
|
|
1873
|
+
get soulChargeOption(): Readonly<SoulChargeOption>;
|
|
1874
|
+
/**
|
|
1875
|
+
* 잠재능력 등급
|
|
1876
|
+
*/
|
|
1877
|
+
get potentialGrade(): PotentialGrade;
|
|
1878
|
+
/**
|
|
1879
|
+
* 잠재능력 목록
|
|
1880
|
+
*/
|
|
1881
|
+
get potentials(): readonly ReadonlyPotential[];
|
|
1882
|
+
/**
|
|
1883
|
+
* 에디셔널 잠재능력 등급
|
|
1884
|
+
*/
|
|
1885
|
+
get additionalPotentialGrade(): PotentialGrade;
|
|
1886
|
+
/**
|
|
1887
|
+
* 에디셔널 잠재능력 목록
|
|
1888
|
+
*/
|
|
1889
|
+
get additionalPotentials(): readonly Readonly<ReadonlyPotential>[];
|
|
1890
|
+
/**
|
|
1891
|
+
* 장비 익셉셔널 옵션
|
|
1892
|
+
*/
|
|
1893
|
+
get exceptionalOption(): Readonly<GearExceptionalOption>;
|
|
1894
|
+
/**
|
|
1895
|
+
* 익셉셔널 강화 횟수
|
|
1896
|
+
*/
|
|
1897
|
+
get exceptionalUpgradeCount(): number;
|
|
1898
|
+
/**
|
|
1899
|
+
* 익셉셔널 강화 가능 횟수
|
|
1900
|
+
*/
|
|
1901
|
+
get exceptionalUpgradeableCount(): number;
|
|
1902
|
+
/**
|
|
1903
|
+
* 전체 익셉셔널 강화 가능 횟수
|
|
1904
|
+
*/
|
|
1905
|
+
get exceptionalTotalUpgradeableCount(): number;
|
|
1906
|
+
}
|
|
1907
|
+
export { ReadonlyGear }
|
|
1908
|
+
export { ReadonlyGear as ReadonlyGear_alias_1 }
|
|
1909
|
+
|
|
1910
|
+
/**
|
|
1911
|
+
* 잠재옵션 (읽기 전용)
|
|
1912
|
+
*/
|
|
1913
|
+
declare interface ReadonlyPotential extends Readonly<PotentialData> {
|
|
1914
|
+
/** 잠재능력 옵션 */
|
|
1915
|
+
option: Readonly<PotentialOption>;
|
|
1916
|
+
}
|
|
1917
|
+
export { ReadonlyPotential }
|
|
1918
|
+
export { ReadonlyPotential as ReadonlyPotential_alias_1 }
|
|
1919
|
+
|
|
1920
|
+
/**
|
|
1921
|
+
* 소울 정보 (읽기 전용)
|
|
1922
|
+
*/
|
|
1923
|
+
declare type ReadonlySoulData = Readonly<Omit<SoulData, 'option'> & {
|
|
1924
|
+
option: Readonly<SoulOption>;
|
|
1925
|
+
}>;
|
|
1926
|
+
export { ReadonlySoulData }
|
|
1927
|
+
export { ReadonlySoulData as ReadonlySoulData_alias_1 }
|
|
1928
|
+
export { ReadonlySoulData as ReadonlySoulData_alias_2 }
|
|
1929
|
+
|
|
1930
|
+
/**
|
|
1931
|
+
* 장비의 스타포스 강화 옵션을 다시 계산합니다.
|
|
1932
|
+
* @param gear 계산할 장비.
|
|
1933
|
+
*
|
|
1934
|
+
* @throws {@link GearError}
|
|
1935
|
+
* 스타포스 강화 옵션을 다시 계산할 수 없는 경우.
|
|
1936
|
+
*/
|
|
1937
|
+
export declare function recalculateStarforce(gear: Gear): void;
|
|
1938
|
+
|
|
1939
|
+
/**
|
|
1940
|
+
* 장비의 에디셔널 잠재능력을 초기화합니다.
|
|
1941
|
+
* @param gear 초기화할 장비.
|
|
1942
|
+
*
|
|
1943
|
+
* @throws {@link GearError}
|
|
1944
|
+
* 에디셔널 잠재능력을 초기화할 수 없는 장비일 경우.
|
|
1945
|
+
*/
|
|
1946
|
+
declare function resetAdditionalPotential(gear: Gear): void;
|
|
1947
|
+
export { resetAdditionalPotential }
|
|
1948
|
+
export { resetAdditionalPotential as resetAdditionalPotential_alias_1 }
|
|
1949
|
+
|
|
1950
|
+
/**
|
|
1951
|
+
* 장비의 추가 옵션을 초기화합니다.
|
|
1952
|
+
* @param gear 초기화할 장비.
|
|
1953
|
+
*
|
|
1954
|
+
* @throws {@link GearError}
|
|
1955
|
+
* 추가 옵션을 초기화할 수 없는 상태의 장비일 경우.
|
|
1956
|
+
*/
|
|
1957
|
+
declare function resetAddOption(gear: Gear): void;
|
|
1958
|
+
export { resetAddOption }
|
|
1959
|
+
export { resetAddOption as resetAddOption_alias_1 }
|
|
1960
|
+
|
|
1961
|
+
/**
|
|
1962
|
+
* 장비의 익셉셔널 강화를 초기화합니다.
|
|
1963
|
+
* @param gear 초기화할 장비.
|
|
1964
|
+
*
|
|
1965
|
+
* @throws {@link GearError}
|
|
1966
|
+
* 익셉셔널 강화를 초기화할 수 없는 장비일 경우.
|
|
1967
|
+
*/
|
|
1968
|
+
declare function resetExceptional(gear: Gear): void;
|
|
1969
|
+
export { resetExceptional }
|
|
1970
|
+
export { resetExceptional as resetExceptional_alias_1 }
|
|
1971
|
+
|
|
1972
|
+
/**
|
|
1973
|
+
* 장비의 잠재능력을 초기화합니다.
|
|
1974
|
+
*
|
|
1975
|
+
* 에디셔널 잠재능력은 변경되지 않습니다.
|
|
1976
|
+
* @param gear 초기화할 장비.
|
|
1977
|
+
*
|
|
1978
|
+
* @throws {@link GearError}
|
|
1979
|
+
* 잠재능력을 초기화할 수 없는 장비일 경우.
|
|
1980
|
+
*/
|
|
1981
|
+
declare function resetPotential(gear: Gear): void;
|
|
1982
|
+
export { resetPotential }
|
|
1983
|
+
export { resetPotential as resetPotential_alias_1 }
|
|
1984
|
+
|
|
1985
|
+
/**
|
|
1986
|
+
* 장비의 소울웨폰을 초기화합니다.
|
|
1987
|
+
* @param gear 초기화할 장비.
|
|
1988
|
+
*/
|
|
1989
|
+
declare function resetSoulEnchant(gear: Gear): void;
|
|
1990
|
+
export { resetSoulEnchant }
|
|
1991
|
+
export { resetSoulEnchant as resetSoulEnchant_alias_1 }
|
|
1992
|
+
|
|
1993
|
+
/**
|
|
1994
|
+
* 장비의 스타포스 강화를 초기화합니다.
|
|
1995
|
+
* @param gear 초기화할 장비.
|
|
1996
|
+
*
|
|
1997
|
+
* @throws {@link GearError}
|
|
1998
|
+
* 스타포스 강화를 초기화할 수 없는 장비일 경우.
|
|
1999
|
+
*/
|
|
2000
|
+
declare function resetStarforce(gear: Gear): void;
|
|
2001
|
+
export { resetStarforce }
|
|
2002
|
+
export { resetStarforce as resetStarforce_alias_1 }
|
|
2003
|
+
|
|
2004
|
+
/**
|
|
2005
|
+
* 장비의 주문서 강화를 초기화합니다.
|
|
2006
|
+
* @param gear 초기화할 장비.
|
|
2007
|
+
*
|
|
2008
|
+
* @throws {@link GearError}
|
|
2009
|
+
* 주문서 강화를 초기화할 수 없는 장비일 경우.
|
|
2010
|
+
*/
|
|
2011
|
+
declare function resetUpgrade(gear: Gear): void;
|
|
2012
|
+
export { resetUpgrade }
|
|
2013
|
+
export { resetUpgrade as resetUpgrade_alias_1 }
|
|
2014
|
+
|
|
2015
|
+
/**
|
|
2016
|
+
* 장비의 주문서 실패로 차감된 업그레이드 가능 횟수를 1회 복구합니다.
|
|
2017
|
+
* @param gear 복구할 장비.
|
|
2018
|
+
*
|
|
2019
|
+
* @throws {@link GearError}
|
|
2020
|
+
* 업그레이드 가능 횟수를 복구할 수 없는 상태의 장비일 경우.
|
|
2021
|
+
*/
|
|
2022
|
+
declare function resileScroll(gear: Gear): void;
|
|
2023
|
+
export { resileScroll }
|
|
2024
|
+
export { resileScroll as resileScroll_alias_1 }
|
|
2025
|
+
|
|
2026
|
+
export declare const resources: {
|
|
2027
|
+
'': {
|
|
2028
|
+
id: number;
|
|
2029
|
+
version: 2;
|
|
2030
|
+
name: string;
|
|
2031
|
+
icon: string;
|
|
2032
|
+
type: 100;
|
|
2033
|
+
req: {};
|
|
2034
|
+
attributes: {};
|
|
2035
|
+
};
|
|
2036
|
+
'\uD551\uD06C\uBE48 \uBAA8\uC790': {
|
|
2037
|
+
id: number;
|
|
2038
|
+
version: 2;
|
|
2039
|
+
name: string;
|
|
2040
|
+
icon: string;
|
|
2041
|
+
type: 100;
|
|
2042
|
+
req: {
|
|
2043
|
+
level: number;
|
|
2044
|
+
};
|
|
2045
|
+
attributes: {
|
|
2046
|
+
canStarforce: 1;
|
|
2047
|
+
canScroll: 1;
|
|
2048
|
+
canAddOption: 1;
|
|
2049
|
+
canPotential: 1;
|
|
2050
|
+
canAdditionalPotential: 1;
|
|
2051
|
+
};
|
|
2052
|
+
baseOption: {
|
|
2053
|
+
str: number;
|
|
2054
|
+
dex: number;
|
|
2055
|
+
int: number;
|
|
2056
|
+
luk: number;
|
|
2057
|
+
};
|
|
2058
|
+
scrollUpgradeableCount: number;
|
|
2059
|
+
};
|
|
2060
|
+
'\uB9AC\uBC84\uC2A4 \uD700\uB12C': {
|
|
2061
|
+
id: number;
|
|
2062
|
+
version: 2;
|
|
2063
|
+
name: string;
|
|
2064
|
+
icon: string;
|
|
2065
|
+
type: 100;
|
|
2066
|
+
req: {
|
|
2067
|
+
level: number;
|
|
2068
|
+
job: number;
|
|
2069
|
+
};
|
|
2070
|
+
attributes: {
|
|
2071
|
+
trade: 2;
|
|
2072
|
+
canStarforce: 1;
|
|
2073
|
+
canScroll: 1;
|
|
2074
|
+
canAddOption: 1;
|
|
2075
|
+
canPotential: 1;
|
|
2076
|
+
canAdditionalPotential: 1;
|
|
2077
|
+
};
|
|
2078
|
+
baseOption: {
|
|
2079
|
+
str: number;
|
|
2080
|
+
armor: number;
|
|
2081
|
+
};
|
|
2082
|
+
scrollUpgradeableCount: number;
|
|
2083
|
+
};
|
|
2084
|
+
'\uB178\uAC00\uB2E4 \uBAA9\uC7A5\uAC11': {
|
|
2085
|
+
id: number;
|
|
2086
|
+
version: 2;
|
|
2087
|
+
name: string;
|
|
2088
|
+
icon: string;
|
|
2089
|
+
type: 108;
|
|
2090
|
+
req: {
|
|
2091
|
+
level: number;
|
|
2092
|
+
};
|
|
2093
|
+
attributes: {
|
|
2094
|
+
canStarforce: 1;
|
|
2095
|
+
canScroll: 1;
|
|
2096
|
+
canAddOption: 1;
|
|
2097
|
+
canPotential: 1;
|
|
2098
|
+
canAdditionalPotential: 1;
|
|
2099
|
+
};
|
|
2100
|
+
baseOption: {
|
|
2101
|
+
armor: number;
|
|
2102
|
+
};
|
|
2103
|
+
scrollUpgradeableCount: number;
|
|
2104
|
+
};
|
|
2105
|
+
'\uD2BC\uD2BC\uD55C \uAE30\uACC4 \uC7A5\uAC11': {
|
|
2106
|
+
id: number;
|
|
2107
|
+
version: 2;
|
|
2108
|
+
name: string;
|
|
2109
|
+
icon: string;
|
|
2110
|
+
type: 108;
|
|
2111
|
+
req: {
|
|
2112
|
+
level: number;
|
|
2113
|
+
};
|
|
2114
|
+
attributes: {
|
|
2115
|
+
canStarforce: 1;
|
|
2116
|
+
canScroll: 1;
|
|
2117
|
+
canAddOption: 1;
|
|
2118
|
+
canPotential: 1;
|
|
2119
|
+
canAdditionalPotential: 1;
|
|
2120
|
+
};
|
|
2121
|
+
baseOption: {
|
|
2122
|
+
armor: number;
|
|
2123
|
+
};
|
|
2124
|
+
scrollUpgradeableCount: number;
|
|
2125
|
+
};
|
|
2126
|
+
'\uBE14\uB799 \uAC00\uB9AC\uB098 \uAE00\uB85C\uBE0C': {
|
|
2127
|
+
id: number;
|
|
2128
|
+
version: 2;
|
|
2129
|
+
name: string;
|
|
2130
|
+
icon: string;
|
|
2131
|
+
type: 108;
|
|
2132
|
+
req: {
|
|
2133
|
+
level: number;
|
|
2134
|
+
job: number;
|
|
2135
|
+
};
|
|
2136
|
+
attributes: {
|
|
2137
|
+
canStarforce: 1;
|
|
2138
|
+
canScroll: 1;
|
|
2139
|
+
canAddOption: 1;
|
|
2140
|
+
canPotential: 1;
|
|
2141
|
+
canAdditionalPotential: 1;
|
|
2142
|
+
};
|
|
2143
|
+
baseOption: {
|
|
2144
|
+
dex: number;
|
|
2145
|
+
luk: number;
|
|
2146
|
+
armor: number;
|
|
2147
|
+
};
|
|
2148
|
+
scrollUpgradeableCount: number;
|
|
2149
|
+
};
|
|
2150
|
+
'\uD39C\uC0B4\uB9AC\uB974 \uC2A4\uD0A4\uD37C\uBD80\uCE20': {
|
|
2151
|
+
id: number;
|
|
2152
|
+
version: 2;
|
|
2153
|
+
name: string;
|
|
2154
|
+
icon: string;
|
|
2155
|
+
type: 107;
|
|
2156
|
+
req: {
|
|
2157
|
+
level: number;
|
|
2158
|
+
job: number;
|
|
2159
|
+
};
|
|
2160
|
+
attributes: {
|
|
2161
|
+
canStarforce: 1;
|
|
2162
|
+
canScroll: 1;
|
|
2163
|
+
canAddOption: 1;
|
|
2164
|
+
canPotential: 1;
|
|
2165
|
+
canAdditionalPotential: 1;
|
|
2166
|
+
};
|
|
2167
|
+
baseOption: {
|
|
2168
|
+
str: number;
|
|
2169
|
+
dex: number;
|
|
2170
|
+
attackPower: number;
|
|
2171
|
+
armor: number;
|
|
2172
|
+
speed: number;
|
|
2173
|
+
};
|
|
2174
|
+
scrollUpgradeableCount: number;
|
|
2175
|
+
};
|
|
2176
|
+
'\uC571\uC194\uB7A9\uC2A4 \uC2DC\uD504\uC288\uC988': {
|
|
2177
|
+
id: number;
|
|
2178
|
+
version: 2;
|
|
2179
|
+
name: string;
|
|
2180
|
+
icon: string;
|
|
2181
|
+
type: 107;
|
|
2182
|
+
req: {
|
|
2183
|
+
level: number;
|
|
2184
|
+
job: number;
|
|
2185
|
+
};
|
|
2186
|
+
attributes: {
|
|
2187
|
+
trade: 2;
|
|
2188
|
+
cuttable: 2;
|
|
2189
|
+
bossReward: true;
|
|
2190
|
+
incline: {
|
|
2191
|
+
charm: number;
|
|
2192
|
+
};
|
|
2193
|
+
canStarforce: 1;
|
|
2194
|
+
canScroll: 1;
|
|
2195
|
+
canAddOption: 1;
|
|
2196
|
+
canPotential: 1;
|
|
2197
|
+
canAdditionalPotential: 1;
|
|
2198
|
+
};
|
|
2199
|
+
baseOption: {
|
|
2200
|
+
dex: number;
|
|
2201
|
+
luk: number;
|
|
2202
|
+
attackPower: number;
|
|
2203
|
+
armor: number;
|
|
2204
|
+
speed: number;
|
|
2205
|
+
jump: number;
|
|
2206
|
+
};
|
|
2207
|
+
scrollUpgradeableCount: number;
|
|
2208
|
+
};
|
|
2209
|
+
'\uB178\uBC14 \uD788\uC544\uB370\uC2A4 \uD074\uB85D': {
|
|
2210
|
+
id: number;
|
|
2211
|
+
version: 2;
|
|
2212
|
+
name: string;
|
|
2213
|
+
icon: string;
|
|
2214
|
+
type: 110;
|
|
2215
|
+
req: {
|
|
2216
|
+
level: number;
|
|
2217
|
+
job: number;
|
|
2218
|
+
};
|
|
2219
|
+
attributes: {
|
|
2220
|
+
trade: 1;
|
|
2221
|
+
cuttable: 2;
|
|
2222
|
+
superior: true;
|
|
2223
|
+
canStarforce: 1;
|
|
2224
|
+
canScroll: 1;
|
|
2225
|
+
canAddOption: 1;
|
|
2226
|
+
canPotential: 1;
|
|
2227
|
+
canAdditionalPotential: 1;
|
|
2228
|
+
};
|
|
2229
|
+
baseOption: {
|
|
2230
|
+
str: number;
|
|
2231
|
+
dex: number;
|
|
2232
|
+
int: number;
|
|
2233
|
+
luk: number;
|
|
2234
|
+
attackPower: number;
|
|
2235
|
+
magicPower: number;
|
|
2236
|
+
armor: number;
|
|
2237
|
+
};
|
|
2238
|
+
scrollUpgradeableCount: number;
|
|
2239
|
+
};
|
|
2240
|
+
'\uD0C0\uC77C\uB7F0\uD2B8 \uCF00\uC774\uB860 \uD074\uB85D': {
|
|
2241
|
+
id: number;
|
|
2242
|
+
version: 2;
|
|
2243
|
+
name: string;
|
|
2244
|
+
icon: string;
|
|
2245
|
+
type: 110;
|
|
2246
|
+
req: {
|
|
2247
|
+
level: number;
|
|
2248
|
+
job: number;
|
|
2249
|
+
};
|
|
2250
|
+
attributes: {
|
|
2251
|
+
trade: 1;
|
|
2252
|
+
cuttable: 2;
|
|
2253
|
+
bossReward: true;
|
|
2254
|
+
superior: true;
|
|
2255
|
+
canStarforce: 1;
|
|
2256
|
+
canScroll: 1;
|
|
2257
|
+
canAddOption: 1;
|
|
2258
|
+
canPotential: 1;
|
|
2259
|
+
canAdditionalPotential: 1;
|
|
2260
|
+
};
|
|
2261
|
+
baseOption: {
|
|
2262
|
+
str: number;
|
|
2263
|
+
dex: number;
|
|
2264
|
+
int: number;
|
|
2265
|
+
luk: number;
|
|
2266
|
+
attackPower: number;
|
|
2267
|
+
magicPower: number;
|
|
2268
|
+
armor: number;
|
|
2269
|
+
};
|
|
2270
|
+
scrollUpgradeableCount: number;
|
|
2271
|
+
};
|
|
2272
|
+
'\uC5D0\uD14C\uB974\uB12C \uB098\uC774\uD2B8\uCF00\uC774\uD504': {
|
|
2273
|
+
id: number;
|
|
2274
|
+
version: 2;
|
|
2275
|
+
name: string;
|
|
2276
|
+
icon: string;
|
|
2277
|
+
type: 110;
|
|
2278
|
+
req: {
|
|
2279
|
+
level: number;
|
|
2280
|
+
job: number;
|
|
2281
|
+
};
|
|
2282
|
+
attributes: {
|
|
2283
|
+
trade: 2;
|
|
2284
|
+
cuttable: 2;
|
|
2285
|
+
bossReward: true;
|
|
2286
|
+
incline: {
|
|
2287
|
+
charm: number;
|
|
2288
|
+
};
|
|
2289
|
+
canStarforce: 1;
|
|
2290
|
+
canScroll: 1;
|
|
2291
|
+
canAddOption: 1;
|
|
2292
|
+
canPotential: 1;
|
|
2293
|
+
canAdditionalPotential: 1;
|
|
2294
|
+
};
|
|
2295
|
+
baseOption: {
|
|
2296
|
+
str: number;
|
|
2297
|
+
dex: number;
|
|
2298
|
+
int: number;
|
|
2299
|
+
luk: number;
|
|
2300
|
+
attackPower: number;
|
|
2301
|
+
magicPower: number;
|
|
2302
|
+
armor: number;
|
|
2303
|
+
};
|
|
2304
|
+
scrollUpgradeableCount: number;
|
|
2305
|
+
};
|
|
2306
|
+
'\uC2A4\uCE7C\uB81B \uC204\uB354': {
|
|
2307
|
+
id: number;
|
|
2308
|
+
version: 2;
|
|
2309
|
+
name: string;
|
|
2310
|
+
icon: string;
|
|
2311
|
+
type: 115;
|
|
2312
|
+
req: {
|
|
2313
|
+
level: number;
|
|
2314
|
+
};
|
|
2315
|
+
attributes: {
|
|
2316
|
+
trade: 2;
|
|
2317
|
+
cuttable: 2;
|
|
2318
|
+
lucky: true;
|
|
2319
|
+
bossReward: true;
|
|
2320
|
+
canStarforce: 1;
|
|
2321
|
+
canScroll: 1;
|
|
2322
|
+
canPotential: 1;
|
|
2323
|
+
canAdditionalPotential: 1;
|
|
2324
|
+
};
|
|
2325
|
+
baseOption: {
|
|
2326
|
+
str: number;
|
|
2327
|
+
dex: number;
|
|
2328
|
+
int: number;
|
|
2329
|
+
luk: number;
|
|
2330
|
+
maxHp: number;
|
|
2331
|
+
attackPower: number;
|
|
2332
|
+
magicPower: number;
|
|
2333
|
+
armor: number;
|
|
2334
|
+
};
|
|
2335
|
+
scrollUpgradeableCount: number;
|
|
2336
|
+
};
|
|
2337
|
+
'\uCE74\uC624\uC2A4 \uD63C\uD14C\uC77C\uC758 \uBAA9\uAC78\uC774': {
|
|
2338
|
+
id: number;
|
|
2339
|
+
version: 2;
|
|
2340
|
+
name: string;
|
|
2341
|
+
icon: string;
|
|
2342
|
+
type: 112;
|
|
2343
|
+
req: {
|
|
2344
|
+
level: number;
|
|
2345
|
+
};
|
|
2346
|
+
attributes: {
|
|
2347
|
+
trade: 1;
|
|
2348
|
+
onlyEquip: true;
|
|
2349
|
+
cuttable: 2;
|
|
2350
|
+
incline: {
|
|
2351
|
+
charm: number;
|
|
2352
|
+
};
|
|
2353
|
+
canStarforce: 1;
|
|
2354
|
+
canScroll: 1;
|
|
2355
|
+
canAddOption: 1;
|
|
2356
|
+
canPotential: 1;
|
|
2357
|
+
canAdditionalPotential: 1;
|
|
2358
|
+
};
|
|
2359
|
+
baseOption: {
|
|
2360
|
+
str: number;
|
|
2361
|
+
dex: number;
|
|
2362
|
+
int: number;
|
|
2363
|
+
luk: number;
|
|
2364
|
+
maxHpRate: number;
|
|
2365
|
+
maxMpRate: number;
|
|
2366
|
+
attackPower: number;
|
|
2367
|
+
magicPower: number;
|
|
2368
|
+
armor: number;
|
|
2369
|
+
};
|
|
2370
|
+
scrollUpgradeableCount: number;
|
|
2371
|
+
};
|
|
2372
|
+
'\uB370\uC544 \uC2DC\uB450\uC2A4 \uC774\uC5B4\uB9C1': {
|
|
2373
|
+
id: number;
|
|
2374
|
+
version: 2;
|
|
2375
|
+
name: string;
|
|
2376
|
+
icon: string;
|
|
2377
|
+
type: 103;
|
|
2378
|
+
req: {
|
|
2379
|
+
level: number;
|
|
2380
|
+
};
|
|
2381
|
+
attributes: {
|
|
2382
|
+
trade: 2;
|
|
2383
|
+
cuttable: 2;
|
|
2384
|
+
bossReward: true;
|
|
2385
|
+
canStarforce: 1;
|
|
2386
|
+
canScroll: 1;
|
|
2387
|
+
canAddOption: 1;
|
|
2388
|
+
canPotential: 1;
|
|
2389
|
+
canAdditionalPotential: 1;
|
|
2390
|
+
};
|
|
2391
|
+
baseOption: {
|
|
2392
|
+
str: number;
|
|
2393
|
+
dex: number;
|
|
2394
|
+
int: number;
|
|
2395
|
+
luk: number;
|
|
2396
|
+
attackPower: number;
|
|
2397
|
+
magicPower: number;
|
|
2398
|
+
armor: number;
|
|
2399
|
+
};
|
|
2400
|
+
scrollUpgradeableCount: number;
|
|
2401
|
+
};
|
|
2402
|
+
'\uBABD\uD658\uC758 \uBCA8\uD2B8': {
|
|
2403
|
+
id: number;
|
|
2404
|
+
version: 2;
|
|
2405
|
+
name: string;
|
|
2406
|
+
icon: string;
|
|
2407
|
+
type: 113;
|
|
2408
|
+
req: {
|
|
2409
|
+
level: number;
|
|
2410
|
+
};
|
|
2411
|
+
attributes: {
|
|
2412
|
+
trade: 2;
|
|
2413
|
+
cuttable: 2;
|
|
2414
|
+
cuttableCount: number;
|
|
2415
|
+
totalCuttableCount: number;
|
|
2416
|
+
bossReward: true;
|
|
2417
|
+
canStarforce: 1;
|
|
2418
|
+
canScroll: 1;
|
|
2419
|
+
canAddOption: 1;
|
|
2420
|
+
canPotential: 1;
|
|
2421
|
+
canAdditionalPotential: 1;
|
|
2422
|
+
};
|
|
2423
|
+
baseOption: {
|
|
2424
|
+
str: number;
|
|
2425
|
+
dex: number;
|
|
2426
|
+
int: number;
|
|
2427
|
+
luk: number;
|
|
2428
|
+
maxHp: number;
|
|
2429
|
+
maxMp: number;
|
|
2430
|
+
attackPower: number;
|
|
2431
|
+
magicPower: number;
|
|
2432
|
+
armor: number;
|
|
2433
|
+
};
|
|
2434
|
+
scrollUpgradeableCount: number;
|
|
2435
|
+
exceptionalUpgradeableCount: number;
|
|
2436
|
+
};
|
|
2437
|
+
'\uC2A4\uCE7C\uB81B \uB9C1': {
|
|
2438
|
+
id: number;
|
|
2439
|
+
version: 2;
|
|
2440
|
+
name: string;
|
|
2441
|
+
icon: string;
|
|
2442
|
+
type: 111;
|
|
2443
|
+
req: {
|
|
2444
|
+
level: number;
|
|
2445
|
+
};
|
|
2446
|
+
attributes: {
|
|
2447
|
+
trade: 2;
|
|
2448
|
+
onlyEquip: true;
|
|
2449
|
+
cuttable: 2;
|
|
2450
|
+
lucky: true;
|
|
2451
|
+
bossReward: true;
|
|
2452
|
+
canStarforce: 1;
|
|
2453
|
+
canScroll: 1;
|
|
2454
|
+
canPotential: 1;
|
|
2455
|
+
canAdditionalPotential: 1;
|
|
2456
|
+
};
|
|
2457
|
+
baseOption: {
|
|
2458
|
+
str: number;
|
|
2459
|
+
dex: number;
|
|
2460
|
+
int: number;
|
|
2461
|
+
luk: number;
|
|
2462
|
+
maxHp: number;
|
|
2463
|
+
maxMp: number;
|
|
2464
|
+
attackPower: number;
|
|
2465
|
+
magicPower: number;
|
|
2466
|
+
armor: number;
|
|
2467
|
+
};
|
|
2468
|
+
scrollUpgradeableCount: number;
|
|
2469
|
+
};
|
|
2470
|
+
'\uADFC\uC6D0\uC758 \uC18D\uC0AD\uC784': {
|
|
2471
|
+
id: number;
|
|
2472
|
+
version: 2;
|
|
2473
|
+
name: string;
|
|
2474
|
+
icon: string;
|
|
2475
|
+
type: 111;
|
|
2476
|
+
req: {
|
|
2477
|
+
level: number;
|
|
2478
|
+
};
|
|
2479
|
+
attributes: {
|
|
2480
|
+
trade: 2;
|
|
2481
|
+
onlyEquip: true;
|
|
2482
|
+
cuttable: 2;
|
|
2483
|
+
cuttableCount: number;
|
|
2484
|
+
totalCuttableCount: number;
|
|
2485
|
+
bossReward: true;
|
|
2486
|
+
canStarforce: 1;
|
|
2487
|
+
canScroll: 1;
|
|
2488
|
+
canPotential: 1;
|
|
2489
|
+
canAdditionalPotential: 1;
|
|
2490
|
+
};
|
|
2491
|
+
baseOption: {
|
|
2492
|
+
str: number;
|
|
2493
|
+
dex: number;
|
|
2494
|
+
int: number;
|
|
2495
|
+
luk: number;
|
|
2496
|
+
maxHp: number;
|
|
2497
|
+
maxMp: number;
|
|
2498
|
+
attackPower: number;
|
|
2499
|
+
magicPower: number;
|
|
2500
|
+
};
|
|
2501
|
+
scrollUpgradeableCount: number;
|
|
2502
|
+
};
|
|
2503
|
+
'\uB370\uC774\uBE0C\uB808\uC774\uD06C \uD39C\uB358\uD2B8': {
|
|
2504
|
+
id: number;
|
|
2505
|
+
version: 2;
|
|
2506
|
+
name: string;
|
|
2507
|
+
icon: string;
|
|
2508
|
+
type: 112;
|
|
2509
|
+
req: {
|
|
2510
|
+
level: number;
|
|
2511
|
+
};
|
|
2512
|
+
attributes: {
|
|
2513
|
+
trade: 2;
|
|
2514
|
+
onlyEquip: true;
|
|
2515
|
+
cuttable: 2;
|
|
2516
|
+
bossReward: true;
|
|
2517
|
+
incline: {
|
|
2518
|
+
charm: number;
|
|
2519
|
+
};
|
|
2520
|
+
canStarforce: 1;
|
|
2521
|
+
canScroll: 1;
|
|
2522
|
+
canAddOption: 1;
|
|
2523
|
+
canPotential: 1;
|
|
2524
|
+
canAdditionalPotential: 1;
|
|
2525
|
+
};
|
|
2526
|
+
baseOption: {
|
|
2527
|
+
str: number;
|
|
2528
|
+
dex: number;
|
|
2529
|
+
int: number;
|
|
2530
|
+
luk: number;
|
|
2531
|
+
maxHpRate: number;
|
|
2532
|
+
attackPower: number;
|
|
2533
|
+
magicPower: number;
|
|
2534
|
+
armor: number;
|
|
2535
|
+
};
|
|
2536
|
+
scrollUpgradeableCount: number;
|
|
2537
|
+
};
|
|
2538
|
+
'\uB9AC\uD2AC \uD558\uD2B8': {
|
|
2539
|
+
id: number;
|
|
2540
|
+
version: 2;
|
|
2541
|
+
name: string;
|
|
2542
|
+
icon: string;
|
|
2543
|
+
type: 167;
|
|
2544
|
+
req: {
|
|
2545
|
+
level: number;
|
|
2546
|
+
};
|
|
2547
|
+
attributes: {
|
|
2548
|
+
trade: 2;
|
|
2549
|
+
canStarforce: 1;
|
|
2550
|
+
canScroll: 1;
|
|
2551
|
+
canPotential: 1;
|
|
2552
|
+
canAdditionalPotential: 1;
|
|
2553
|
+
};
|
|
2554
|
+
baseOption: {
|
|
2555
|
+
str: number;
|
|
2556
|
+
dex: number;
|
|
2557
|
+
int: number;
|
|
2558
|
+
luk: number;
|
|
2559
|
+
maxHp: number;
|
|
2560
|
+
};
|
|
2561
|
+
scrollUpgradeableCount: number;
|
|
2562
|
+
};
|
|
2563
|
+
'\uD398\uC5B4\uB9AC \uD558\uD2B8': {
|
|
2564
|
+
id: number;
|
|
2565
|
+
version: 2;
|
|
2566
|
+
name: string;
|
|
2567
|
+
icon: string;
|
|
2568
|
+
type: 167;
|
|
2569
|
+
req: {
|
|
2570
|
+
level: number;
|
|
2571
|
+
};
|
|
2572
|
+
attributes: {
|
|
2573
|
+
trade: 2;
|
|
2574
|
+
canStarforce: 1;
|
|
2575
|
+
canScroll: 1;
|
|
2576
|
+
canPotential: 1;
|
|
2577
|
+
canAdditionalPotential: 1;
|
|
2578
|
+
};
|
|
2579
|
+
baseOption: {
|
|
2580
|
+
maxHp: number;
|
|
2581
|
+
};
|
|
2582
|
+
scrollUpgradeableCount: number;
|
|
2583
|
+
};
|
|
2584
|
+
'\uB9AC\uD034\uB4DC\uBA54\uD0C8 \uD558\uD2B8': {
|
|
2585
|
+
id: number;
|
|
2586
|
+
version: 2;
|
|
2587
|
+
name: string;
|
|
2588
|
+
icon: string;
|
|
2589
|
+
type: 167;
|
|
2590
|
+
req: {
|
|
2591
|
+
level: number;
|
|
2592
|
+
};
|
|
2593
|
+
attributes: {
|
|
2594
|
+
trade: 2;
|
|
2595
|
+
canStarforce: 1;
|
|
2596
|
+
canScroll: 1;
|
|
2597
|
+
canPotential: 1;
|
|
2598
|
+
canAdditionalPotential: 1;
|
|
2599
|
+
};
|
|
2600
|
+
baseOption: {
|
|
2601
|
+
str: number;
|
|
2602
|
+
dex: number;
|
|
2603
|
+
int: number;
|
|
2604
|
+
luk: number;
|
|
2605
|
+
maxHp: number;
|
|
2606
|
+
};
|
|
2607
|
+
scrollUpgradeableCount: number;
|
|
2608
|
+
};
|
|
2609
|
+
'\uCEF4\uD50C\uB9AC\uD2B8 \uC5B8\uB354\uCEE8\uD2B8\uB864': {
|
|
2610
|
+
id: number;
|
|
2611
|
+
version: 2;
|
|
2612
|
+
name: string;
|
|
2613
|
+
icon: string;
|
|
2614
|
+
type: 167;
|
|
2615
|
+
req: {
|
|
2616
|
+
level: number;
|
|
2617
|
+
};
|
|
2618
|
+
attributes: {
|
|
2619
|
+
trade: 2;
|
|
2620
|
+
canStarforce: 1;
|
|
2621
|
+
canScroll: 1;
|
|
2622
|
+
canPotential: 1;
|
|
2623
|
+
canAdditionalPotential: 1;
|
|
2624
|
+
};
|
|
2625
|
+
baseOption: {
|
|
2626
|
+
str: number;
|
|
2627
|
+
dex: number;
|
|
2628
|
+
int: number;
|
|
2629
|
+
luk: number;
|
|
2630
|
+
maxHp: number;
|
|
2631
|
+
attackPower: number;
|
|
2632
|
+
magicPower: number;
|
|
2633
|
+
ignoreMonsterArmor: number;
|
|
2634
|
+
};
|
|
2635
|
+
scrollUpgradeableCount: number;
|
|
2636
|
+
};
|
|
2637
|
+
'\uC7C8\uC774\uD78C \uC2A4\uD0DC\uD504': {
|
|
2638
|
+
id: number;
|
|
2639
|
+
version: 2;
|
|
2640
|
+
name: string;
|
|
2641
|
+
icon: string;
|
|
2642
|
+
type: 138;
|
|
2643
|
+
req: {
|
|
2644
|
+
level: number;
|
|
2645
|
+
job: number;
|
|
2646
|
+
};
|
|
2647
|
+
attributes: {
|
|
2648
|
+
attackSpeed: number;
|
|
2649
|
+
canStarforce: 1;
|
|
2650
|
+
canScroll: 1;
|
|
2651
|
+
canAddOption: 1;
|
|
2652
|
+
canPotential: 1;
|
|
2653
|
+
canAdditionalPotential: 1;
|
|
2654
|
+
};
|
|
2655
|
+
baseOption: {
|
|
2656
|
+
attackPower: number;
|
|
2657
|
+
magicPower: number;
|
|
2658
|
+
};
|
|
2659
|
+
scrollUpgradeableCount: number;
|
|
2660
|
+
};
|
|
2661
|
+
'\uC571\uC194\uB7A9\uC2A4 ESP\uB9AC\uBBF8\uD130': {
|
|
2662
|
+
id: number;
|
|
2663
|
+
version: 2;
|
|
2664
|
+
name: string;
|
|
2665
|
+
icon: string;
|
|
2666
|
+
type: 126;
|
|
2667
|
+
req: {
|
|
2668
|
+
level: number;
|
|
2669
|
+
job: number;
|
|
2670
|
+
class: number;
|
|
2671
|
+
};
|
|
2672
|
+
attributes: {
|
|
2673
|
+
trade: 2;
|
|
2674
|
+
cuttable: 2;
|
|
2675
|
+
attackSpeed: number;
|
|
2676
|
+
bossReward: true;
|
|
2677
|
+
incline: {
|
|
2678
|
+
charm: number;
|
|
2679
|
+
};
|
|
2680
|
+
canStarforce: 1;
|
|
2681
|
+
canScroll: 1;
|
|
2682
|
+
canAddOption: 1;
|
|
2683
|
+
canPotential: 1;
|
|
2684
|
+
canAdditionalPotential: 1;
|
|
2685
|
+
};
|
|
2686
|
+
baseOption: {
|
|
2687
|
+
int: number;
|
|
2688
|
+
luk: number;
|
|
2689
|
+
attackPower: number;
|
|
2690
|
+
magicPower: number;
|
|
2691
|
+
bossDamage: number;
|
|
2692
|
+
ignoreMonsterArmor: number;
|
|
2693
|
+
};
|
|
2694
|
+
scrollUpgradeableCount: number;
|
|
2695
|
+
};
|
|
2696
|
+
'\uC544\uCF00\uC778\uC170\uC774\uB4DC \uC0E4\uC774\uB2DD\uB85C\uB4DC': {
|
|
2697
|
+
id: number;
|
|
2698
|
+
version: 2;
|
|
2699
|
+
name: string;
|
|
2700
|
+
icon: string;
|
|
2701
|
+
type: GearType.shiningRod;
|
|
2702
|
+
req: {
|
|
2703
|
+
level: number;
|
|
2704
|
+
job: number;
|
|
2705
|
+
};
|
|
2706
|
+
attributes: {
|
|
2707
|
+
trade: 2;
|
|
2708
|
+
cuttable: 2;
|
|
2709
|
+
bossReward: true;
|
|
2710
|
+
incline: {
|
|
2711
|
+
charm: number;
|
|
2712
|
+
};
|
|
2713
|
+
canStarforce: 1;
|
|
2714
|
+
canScroll: 1;
|
|
2715
|
+
canAddOption: 1;
|
|
2716
|
+
canPotential: 1;
|
|
2717
|
+
canAdditionalPotential: 1;
|
|
2718
|
+
};
|
|
2719
|
+
baseOption: {
|
|
2720
|
+
int: number;
|
|
2721
|
+
luk: number;
|
|
2722
|
+
attackPower: number;
|
|
2723
|
+
magicPower: number;
|
|
2724
|
+
bossDamage: number;
|
|
2725
|
+
ignoreMonsterArmor: number;
|
|
2726
|
+
};
|
|
2727
|
+
scrollUpgradeableCount: number;
|
|
2728
|
+
};
|
|
2729
|
+
'\uC544\uCF00\uC778\uC170\uC774\uB4DC \uCD08\uC120': {
|
|
2730
|
+
id: number;
|
|
2731
|
+
version: 2;
|
|
2732
|
+
name: string;
|
|
2733
|
+
icon: string;
|
|
2734
|
+
type: 129;
|
|
2735
|
+
req: {
|
|
2736
|
+
level: number;
|
|
2737
|
+
job: number;
|
|
2738
|
+
};
|
|
2739
|
+
attributes: {
|
|
2740
|
+
trade: 2;
|
|
2741
|
+
cuttable: 2;
|
|
2742
|
+
attackSpeed: number;
|
|
2743
|
+
bossReward: true;
|
|
2744
|
+
incline: {
|
|
2745
|
+
charm: number;
|
|
2746
|
+
};
|
|
2747
|
+
canStarforce: 1;
|
|
2748
|
+
canScroll: 1;
|
|
2749
|
+
canAddOption: 1;
|
|
2750
|
+
canPotential: 1;
|
|
2751
|
+
canAdditionalPotential: 1;
|
|
2752
|
+
};
|
|
2753
|
+
baseOption: {
|
|
2754
|
+
dex: number;
|
|
2755
|
+
luk: number;
|
|
2756
|
+
attackPower: number;
|
|
2757
|
+
bossDamage: number;
|
|
2758
|
+
ignoreMonsterArmor: number;
|
|
2759
|
+
};
|
|
2760
|
+
scrollUpgradeableCount: number;
|
|
2761
|
+
};
|
|
2762
|
+
'\uB808\uB4DC \uBCF4\uC6B0': {
|
|
2763
|
+
id: number;
|
|
2764
|
+
version: 2;
|
|
2765
|
+
name: string;
|
|
2766
|
+
icon: string;
|
|
2767
|
+
type: 145;
|
|
2768
|
+
req: {
|
|
2769
|
+
level: number;
|
|
2770
|
+
job: number;
|
|
2771
|
+
};
|
|
2772
|
+
attributes: {
|
|
2773
|
+
trade: 2;
|
|
2774
|
+
attackSpeed: number;
|
|
2775
|
+
canStarforce: 1;
|
|
2776
|
+
canScroll: 1;
|
|
2777
|
+
canAddOption: 1;
|
|
2778
|
+
canPotential: 1;
|
|
2779
|
+
canAdditionalPotential: 1;
|
|
2780
|
+
};
|
|
2781
|
+
baseOption: {
|
|
2782
|
+
attackPower: number;
|
|
2783
|
+
};
|
|
2784
|
+
scrollUpgradeableCount: number;
|
|
2785
|
+
};
|
|
2786
|
+
'\uB77C\uC990\uB9AC 9\uD615': {
|
|
2787
|
+
id: number;
|
|
2788
|
+
version: 2;
|
|
2789
|
+
name: string;
|
|
2790
|
+
icon: string;
|
|
2791
|
+
type: 157;
|
|
2792
|
+
req: {
|
|
2793
|
+
level: number;
|
|
2794
|
+
job: number;
|
|
2795
|
+
class: number;
|
|
2796
|
+
};
|
|
2797
|
+
attributes: {
|
|
2798
|
+
trade: 1;
|
|
2799
|
+
attackSpeed: number;
|
|
2800
|
+
canStarforce: 1;
|
|
2801
|
+
canScroll: 1;
|
|
2802
|
+
canAddOption: 1;
|
|
2803
|
+
canPotential: 1;
|
|
2804
|
+
canAdditionalPotential: 1;
|
|
2805
|
+
};
|
|
2806
|
+
baseOption: {
|
|
2807
|
+
str: number;
|
|
2808
|
+
dex: number;
|
|
2809
|
+
attackPower: number;
|
|
2810
|
+
bossDamage: number;
|
|
2811
|
+
ignoreMonsterArmor: number;
|
|
2812
|
+
};
|
|
2813
|
+
scrollUpgradeableCount: number;
|
|
2814
|
+
};
|
|
2815
|
+
'\uC81C\uB124\uC2DC\uC2A4 \uBE0C\uB808\uC2A4 \uC288\uD130': {
|
|
2816
|
+
id: number;
|
|
2817
|
+
version: 2;
|
|
2818
|
+
name: string;
|
|
2819
|
+
icon: string;
|
|
2820
|
+
type: 1214;
|
|
2821
|
+
req: {
|
|
2822
|
+
level: number;
|
|
2823
|
+
job: number;
|
|
2824
|
+
class: number;
|
|
2825
|
+
};
|
|
2826
|
+
attributes: {
|
|
2827
|
+
only: true;
|
|
2828
|
+
trade: 1;
|
|
2829
|
+
onlyEquip: true;
|
|
2830
|
+
attackSpeed: number;
|
|
2831
|
+
lucky: true;
|
|
2832
|
+
bossReward: true;
|
|
2833
|
+
incline: {
|
|
2834
|
+
charm: number;
|
|
2835
|
+
};
|
|
2836
|
+
canStarforce: 2;
|
|
2837
|
+
canScroll: 2;
|
|
2838
|
+
canAddOption: 1;
|
|
2839
|
+
canPotential: 1;
|
|
2840
|
+
canAdditionalPotential: 1;
|
|
2841
|
+
};
|
|
2842
|
+
baseOption: {
|
|
2843
|
+
str: number;
|
|
2844
|
+
dex: number;
|
|
2845
|
+
attackPower: number;
|
|
2846
|
+
speed: number;
|
|
2847
|
+
bossDamage: number;
|
|
2848
|
+
ignoreMonsterArmor: number;
|
|
2849
|
+
};
|
|
2850
|
+
scrollUpgradeableCount: number;
|
|
2851
|
+
};
|
|
2852
|
+
};
|
|
2853
|
+
|
|
2854
|
+
/**
|
|
2855
|
+
* 주문서
|
|
2856
|
+
*/
|
|
2857
|
+
declare interface Scroll {
|
|
2858
|
+
/** 주문서 이름 */
|
|
2859
|
+
name: string;
|
|
2860
|
+
/** 주문서 아이콘 */
|
|
2861
|
+
icon?: string;
|
|
2862
|
+
/** 주문서 옵션 */
|
|
2863
|
+
option: Partial<GearUpgradeOption>;
|
|
2864
|
+
}
|
|
2865
|
+
export { Scroll }
|
|
2866
|
+
export { Scroll as Scroll_alias_1 }
|
|
2867
|
+
|
|
2868
|
+
/**
|
|
2869
|
+
* 장비의 에디셔널 잠재능력을 설정합니다.
|
|
2870
|
+
* @param gear 설정할 장비.
|
|
2871
|
+
* @param grade 에디셔널 잠재능력 등급.
|
|
2872
|
+
* @param options 에디셔널 잠재옵션 목록.
|
|
2873
|
+
*
|
|
2874
|
+
* @throws {@link GearError}
|
|
2875
|
+
* 에디셔널 잠재능력을 설정할 수 없는 장비일 경우.
|
|
2876
|
+
*
|
|
2877
|
+
* @throws {@link RangeError}
|
|
2878
|
+
* 설정하려는 에디셔널 잠재능력 등급이 Normal일 경우.
|
|
2879
|
+
*
|
|
2880
|
+
* @throws {@link GearError}
|
|
2881
|
+
* 잘못된 에디셔널 잠재옵션 목록을 지정했을 경우.
|
|
2882
|
+
*/
|
|
2883
|
+
declare function setAdditionalPotential(gear: Gear, grade: PotentialGrade, options: PotentialData[]): void;
|
|
2884
|
+
export { setAdditionalPotential }
|
|
2885
|
+
export { setAdditionalPotential as setAdditionalPotential_alias_1 }
|
|
2886
|
+
|
|
2887
|
+
/**
|
|
2888
|
+
* 장비의 잠재능력을 설정합니다.
|
|
2889
|
+
* @param gear 설정할 장비.
|
|
2890
|
+
* @param grade 잠재능력 등급.
|
|
2891
|
+
* @param options 잠재옵션 목록.
|
|
2892
|
+
*
|
|
2893
|
+
* @throws {@link GearError}
|
|
2894
|
+
* 잠재능력을 설정할 수 없는 장비일 경우.
|
|
2895
|
+
*
|
|
2896
|
+
* @throws {@link RangeError}
|
|
2897
|
+
* 설정하려는 잠재능력 등급이 Normal일 경우.
|
|
2898
|
+
*
|
|
2899
|
+
* @throws {@link TypeError}
|
|
2900
|
+
* 잘못된 잠재옵션 목록을 지정했을 경우.
|
|
2901
|
+
*/
|
|
2902
|
+
declare function setPotential(gear: Gear, grade: PotentialGrade, options: PotentialData[]): void;
|
|
2903
|
+
export { setPotential }
|
|
2904
|
+
export { setPotential as setPotential_alias_1 }
|
|
2905
|
+
|
|
2906
|
+
/**
|
|
2907
|
+
* 장비에 소울을 장착합니다.
|
|
2908
|
+
* @param gear 대상 장비.
|
|
2909
|
+
* @param soul 장착할 소울 아이템.
|
|
2910
|
+
*
|
|
2911
|
+
* @throws {@link GearError}
|
|
2912
|
+
* 소울을 장착할 수 없는 경우.
|
|
2913
|
+
*/
|
|
2914
|
+
declare function setSoul(gear: Gear, soul: SoulData): void;
|
|
2915
|
+
export { setSoul }
|
|
2916
|
+
export { setSoul as setSoul_alias_1 }
|
|
2917
|
+
|
|
2918
|
+
/**
|
|
2919
|
+
* 장비의 소울 충전량을 설정합니다.
|
|
2920
|
+
* @param gear 대상 장비.
|
|
2921
|
+
* @param charge 소울 충전량.
|
|
2922
|
+
*
|
|
2923
|
+
* @throws {@link GearError}
|
|
2924
|
+
* 소울 충전량을 설정할 수 없는 경우.
|
|
2925
|
+
*
|
|
2926
|
+
* @throws {@link RangeError}
|
|
2927
|
+
* 소울 충전량이 0 미만 또는 1000 초과인 경우.
|
|
2928
|
+
*/
|
|
2929
|
+
declare function setSoulCharge(gear: Gear, charge: number): void;
|
|
2930
|
+
export { setSoulCharge }
|
|
2931
|
+
export { setSoulCharge as setSoulCharge_alias_1 }
|
|
2932
|
+
|
|
2933
|
+
/**
|
|
2934
|
+
* 소울 충전 옵션
|
|
2935
|
+
*/
|
|
2936
|
+
declare type SoulChargeOption = Pick<GearOption, 'attackPower' | 'magicPower'>;
|
|
2937
|
+
export { SoulChargeOption }
|
|
2938
|
+
export { SoulChargeOption as SoulChargeOption_alias_1 }
|
|
2939
|
+
export { SoulChargeOption as SoulChargeOption_alias_2 }
|
|
2940
|
+
|
|
2941
|
+
/**
|
|
2942
|
+
* 소울 정보
|
|
2943
|
+
*/
|
|
2944
|
+
declare interface SoulData {
|
|
2945
|
+
/** 소울 명 */
|
|
2946
|
+
name: string;
|
|
2947
|
+
/** 소울 스킬 명 */
|
|
2948
|
+
skill: string;
|
|
2949
|
+
/** 소울 옵션 */
|
|
2950
|
+
option: Partial<SoulOption>;
|
|
2951
|
+
/** 소울 충전 옵션 배율 */
|
|
2952
|
+
chargeFactor?: 1 | 2;
|
|
2953
|
+
}
|
|
2954
|
+
export { SoulData }
|
|
2955
|
+
export { SoulData as SoulData_alias_1 }
|
|
2956
|
+
export { SoulData as SoulData_alias_2 }
|
|
2957
|
+
|
|
2958
|
+
/**
|
|
2959
|
+
* 소울 옵션
|
|
2960
|
+
*/
|
|
2961
|
+
declare type SoulOption = Pick<GearOption, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'maxHp' | 'maxMp' | 'criticalRate' | 'ignoreMonsterArmor' | 'bossDamage'>;
|
|
2962
|
+
export { SoulOption }
|
|
2963
|
+
export { SoulOption as SoulOption_alias_1 }
|
|
2964
|
+
export { SoulOption as SoulOption_alias_2 }
|
|
2965
|
+
|
|
2966
|
+
declare function soulPatch(soul?: SoulData, charge?: number): Patch;
|
|
2967
|
+
export { soulPatch }
|
|
2968
|
+
export { soulPatch as soulPatch_alias_1 }
|
|
2969
|
+
|
|
2970
|
+
/**
|
|
2971
|
+
* 소울 웨폰 정보
|
|
2972
|
+
*/
|
|
2973
|
+
declare interface SoulSlotData {
|
|
2974
|
+
/** 소울 아이템 */
|
|
2975
|
+
soul?: SoulData;
|
|
2976
|
+
/** 소울 충전량 */
|
|
2977
|
+
charge?: number;
|
|
2978
|
+
/** 소울 충전 옵션 */
|
|
2979
|
+
chargeOption?: Partial<SoulChargeOption>;
|
|
2980
|
+
}
|
|
2981
|
+
export { SoulSlotData }
|
|
2982
|
+
export { SoulSlotData as SoulSlotData_alias_1 }
|
|
2983
|
+
export { SoulSlotData as SoulSlotData_alias_2 }
|
|
2984
|
+
|
|
2985
|
+
/**
|
|
2986
|
+
* 주문의 흔적
|
|
2987
|
+
*/
|
|
2988
|
+
declare type SpellTrace = Scroll & {
|
|
2989
|
+
type: SpellTraceType;
|
|
2990
|
+
rate: SpellTraceRate;
|
|
2991
|
+
};
|
|
2992
|
+
export { SpellTrace }
|
|
2993
|
+
export { SpellTrace as SpellTrace_alias_1 }
|
|
2994
|
+
|
|
2995
|
+
/**
|
|
2996
|
+
* 주문의 흔적 성공 확률
|
|
2997
|
+
*/
|
|
2998
|
+
declare type SpellTraceRate = 100 | 70 | 30 | 15;
|
|
2999
|
+
export { SpellTraceRate }
|
|
3000
|
+
export { SpellTraceRate as SpellTraceRate_alias_1 }
|
|
3001
|
+
|
|
3002
|
+
/**
|
|
3003
|
+
* 주문의 흔적 종류
|
|
3004
|
+
*/
|
|
3005
|
+
declare enum SpellTraceType {
|
|
3006
|
+
/** STR */
|
|
3007
|
+
str = "str",
|
|
3008
|
+
/** DEX */
|
|
3009
|
+
dex = "dex",
|
|
3010
|
+
/** INT */
|
|
3011
|
+
int = "int",
|
|
3012
|
+
/** LUK */
|
|
3013
|
+
luk = "luk",
|
|
3014
|
+
/** 최대 HP */
|
|
3015
|
+
maxHp = "maxHp",
|
|
3016
|
+
/** 올스탯 */
|
|
3017
|
+
allStat = "allStat"
|
|
3018
|
+
}
|
|
3019
|
+
export { SpellTraceType }
|
|
3020
|
+
export { SpellTraceType as SpellTraceType_alias_1 }
|
|
3021
|
+
|
|
3022
|
+
/**
|
|
3023
|
+
* 장비에 스타포스 강화를 1회 적용합니다.
|
|
3024
|
+
*
|
|
3025
|
+
* 업그레이드가 완료되지 않은 장비, 놀라운 장비강화 주문서가 적용된 장비에도 적용할 수 있습니다.
|
|
3026
|
+
* @param gear 적용할 장비.
|
|
3027
|
+
* @param exceedMaxStar 장비의 최대 강화 단계를 초과하여 강화할 지 여부.
|
|
3028
|
+
*
|
|
3029
|
+
* @throws {@link GearError}
|
|
3030
|
+
* 스타포스 강화를 적용할 수 없는 경우.
|
|
3031
|
+
*/
|
|
3032
|
+
declare function starforce(gear: Gear, exceedMaxStar?: boolean): void;
|
|
3033
|
+
export { starforce }
|
|
3034
|
+
export { starforce as starforce_alias_1 }
|
|
3035
|
+
|
|
3036
|
+
declare function starforcePatch(star: number, starScroll?: boolean, ignoreMaxStar?: boolean): Patch;
|
|
3037
|
+
export { starforcePatch }
|
|
3038
|
+
export { starforcePatch as starforcePatch_alias_1 }
|
|
3039
|
+
|
|
3040
|
+
/**
|
|
3041
|
+
* 장비에 놀라운 장비 강화 주문서를 1회 적용합니다.
|
|
3042
|
+
*
|
|
3043
|
+
* 착용 가능 레벨 150 이하의 장비에만 적용할 수 있습니다.
|
|
3044
|
+
* 업그레이드가 완료되지 않은 장비, 스타포스 강화가 적용된 장비에도 적용할 수 있습니다.
|
|
3045
|
+
* 슈페리얼 장비에는 적용할 수 없습니다.
|
|
3046
|
+
*
|
|
3047
|
+
* 보너스 스탯은 장비 분류에 따라 결정됩니다.
|
|
3048
|
+
* - 방어구(방패 제외): 최대 HP +50
|
|
3049
|
+
* - 장신구: 올스탯 +1 ~ +2
|
|
3050
|
+
* - 무기/블레이드/방패: 공격력/마력 +1
|
|
3051
|
+
* @param gear 적용할 장비.
|
|
3052
|
+
* @param bonus 보너스 스탯 적용 여부.
|
|
3053
|
+
* @param exceedMaxStar 장비의 최대 강화 단계를 초과하여 강화할 지 여부.
|
|
3054
|
+
*
|
|
3055
|
+
* @throws {@link GearError}
|
|
3056
|
+
* 놀라운 장비 강화 주문서를 적용할 수 없는 경우.
|
|
3057
|
+
*/
|
|
3058
|
+
declare function starScroll(gear: Gear, bonus?: boolean, exceedMaxStar?: boolean): void;
|
|
3059
|
+
export { starScroll }
|
|
3060
|
+
export { starScroll as starScroll_alias_1 }
|
|
3061
|
+
|
|
3062
|
+
export declare function sumOptions(...options: Partial<GearOption>[]): Partial<GearOption>;
|
|
3063
|
+
|
|
3064
|
+
/**
|
|
3065
|
+
* 장비가 에디셔널 잠재능력을 지원하는지 여부를 확인합니다.
|
|
3066
|
+
* @param gear 확인할 장비.
|
|
3067
|
+
* @returns 지원할 경우 `true`; 아닐 경우 `false`.
|
|
3068
|
+
*/
|
|
3069
|
+
declare function supportsAdditionalPotential(gear: ReadonlyGear): boolean;
|
|
3070
|
+
export { supportsAdditionalPotential }
|
|
3071
|
+
export { supportsAdditionalPotential as supportsAdditionalPotential_alias_1 }
|
|
3072
|
+
|
|
3073
|
+
/**
|
|
3074
|
+
* 장비가 추가 옵션을 지원하는지 확인합니다.
|
|
3075
|
+
* @param gear 확인할 장비.
|
|
3076
|
+
* @returns 적용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
3077
|
+
*/
|
|
3078
|
+
declare function supportsAddOption(gear: ReadonlyGear): boolean;
|
|
3079
|
+
export { supportsAddOption }
|
|
3080
|
+
export { supportsAddOption as supportsAddOption_alias_1 }
|
|
3081
|
+
|
|
3082
|
+
/**
|
|
3083
|
+
* 장비가 익셉셔널 강화를 지원하는지 여부를 확인합니다.
|
|
3084
|
+
* @param gear 확인할 장비.
|
|
3085
|
+
* @returns 지원할 경우 `true`; 아닐 경우 `false`.
|
|
3086
|
+
*/
|
|
3087
|
+
declare function supportsExceptional(gear: ReadonlyGear): boolean;
|
|
3088
|
+
export { supportsExceptional }
|
|
3089
|
+
export { supportsExceptional as supportsExceptional_alias_1 }
|
|
3090
|
+
|
|
3091
|
+
/**
|
|
3092
|
+
* 장비가 잠재능력을 지원하는지 여부를 확인합니다.
|
|
3093
|
+
* @param gear 확인할 장비.
|
|
3094
|
+
* @returns 지원할 경우 `true`; 아닐 경우 `false`.
|
|
3095
|
+
*/
|
|
3096
|
+
declare function supportsPotential(gear: ReadonlyGear): boolean;
|
|
3097
|
+
export { supportsPotential }
|
|
3098
|
+
export { supportsPotential as supportsPotential_alias_1 }
|
|
3099
|
+
|
|
3100
|
+
/**
|
|
3101
|
+
* 장비가 소울웨폰을 지원하는지 여부를 확인합니다.
|
|
3102
|
+
* @param gear 확인할 장비.
|
|
3103
|
+
* @returns 지원할 경우 `true`; 아닐 경우 `false`.
|
|
3104
|
+
*/
|
|
3105
|
+
declare function supportsSoul(gear: ReadonlyGear): boolean;
|
|
3106
|
+
export { supportsSoul }
|
|
3107
|
+
export { supportsSoul as supportsSoul_alias_1 }
|
|
3108
|
+
|
|
3109
|
+
/**
|
|
3110
|
+
* 장비가 스타포스 강화를 지원하는지 여부를 확인합니다.
|
|
3111
|
+
* @param gear 확인할 장비.
|
|
3112
|
+
* @returns 지원할 경우 `true`; 아닐 경우 `false`.
|
|
3113
|
+
*/
|
|
3114
|
+
declare function supportsStarforce(gear: ReadonlyGear): boolean;
|
|
3115
|
+
export { supportsStarforce }
|
|
3116
|
+
export { supportsStarforce as supportsStarforce_alias_1 }
|
|
3117
|
+
|
|
3118
|
+
/**
|
|
3119
|
+
* 장비가 주문서 강화를 지원하는지 여부를 확인합니다.
|
|
3120
|
+
* @param gear 확인할 장비.
|
|
3121
|
+
* @returns 지원할 경우 `true`; 아닐 경우 `false`.
|
|
3122
|
+
*/
|
|
3123
|
+
declare function supportsUpgrade(gear: ReadonlyGear): boolean;
|
|
3124
|
+
export { supportsUpgrade }
|
|
3125
|
+
export { supportsUpgrade as supportsUpgrade_alias_1 }
|
|
3126
|
+
|
|
3127
|
+
/**
|
|
3128
|
+
* 장비 옵션의 설정되지 않은 속성(`undefined`)을 `0`으로 처리하는 프록시 객체를 생성합니다.
|
|
3129
|
+
*
|
|
3130
|
+
* 프록시 객체를 반복할 때 값이 `0`인 속성은 열거하지 않습니다.
|
|
3131
|
+
* @param option 장비 옵션.
|
|
3132
|
+
* @returns 장비 옵션 프록시.
|
|
3133
|
+
*/
|
|
3134
|
+
declare function toGearOption(option: Partial<GearOption>): GearOption;
|
|
3135
|
+
export { toGearOption }
|
|
3136
|
+
export { toGearOption as toGearOption_alias_1 }
|
|
3137
|
+
|
|
3138
|
+
export declare function _updateChargeOption(gear: Gear): void;
|
|
3139
|
+
|
|
3140
|
+
declare function upgradePatch(options: ([SpellTraceType, SpellTraceRate] | Partial<GearOption>)[]): Patch;
|
|
3141
|
+
export { upgradePatch }
|
|
3142
|
+
export { upgradePatch as upgradePatch_alias_1 }
|
|
3143
|
+
|
|
3144
|
+
declare const VERSION = 2;
|
|
3145
|
+
export { VERSION }
|
|
3146
|
+
export { VERSION as VERSION_alias_1 }
|
|
3147
|
+
|
|
3148
|
+
export { }
|