bnstooltips 1.18.18 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.es.js +101 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +101 -0
- package/build/index.js.map +1 -1
- package/build/itemapiclient/ItemApiClient.d.ts +34 -0
- package/package.json +1 -1
|
@@ -196,6 +196,7 @@ export declare class BnsItemDto implements IBnsItemDto {
|
|
|
196
196
|
setPoints?: number;
|
|
197
197
|
refinementPoints?: number;
|
|
198
198
|
slateStones?: SlateStoneDto[] | undefined;
|
|
199
|
+
randomEffects?: ItemRandomEffectsDto;
|
|
199
200
|
constructor(data?: IBnsItemDto);
|
|
200
201
|
init(_data?: any): void;
|
|
201
202
|
static fromJS(data: any): BnsItemDto;
|
|
@@ -238,6 +239,7 @@ export interface IBnsItemDto {
|
|
|
238
239
|
setPoints?: number;
|
|
239
240
|
refinementPoints?: number;
|
|
240
241
|
slateStones?: SlateStoneDto[] | undefined;
|
|
242
|
+
randomEffects?: ItemRandomEffectsDto;
|
|
241
243
|
}
|
|
242
244
|
export declare class DecomposeRewardDto implements IDecomposeRewardDto {
|
|
243
245
|
fixedItems?: ItemRefWithCount[] | undefined;
|
|
@@ -333,6 +335,20 @@ export interface IItemDescriptionDto {
|
|
|
333
335
|
title?: string | undefined;
|
|
334
336
|
text?: string | undefined;
|
|
335
337
|
}
|
|
338
|
+
export declare class ItemEffectDto implements IItemEffectDto {
|
|
339
|
+
id?: number;
|
|
340
|
+
text?: string | undefined;
|
|
341
|
+
weight?: number;
|
|
342
|
+
constructor(data?: IItemEffectDto);
|
|
343
|
+
init(_data?: any): void;
|
|
344
|
+
static fromJS(data: any): ItemEffectDto;
|
|
345
|
+
toJSON(data?: any): any;
|
|
346
|
+
}
|
|
347
|
+
export interface IItemEffectDto {
|
|
348
|
+
id?: number;
|
|
349
|
+
text?: string | undefined;
|
|
350
|
+
weight?: number;
|
|
351
|
+
}
|
|
336
352
|
export declare class ItemIconDto implements IItemIconDto {
|
|
337
353
|
iconPath?: string | undefined;
|
|
338
354
|
iconIndex?: number;
|
|
@@ -417,6 +433,24 @@ export interface IItemImproveEffectOptionWithNameDto {
|
|
|
417
433
|
upgradeName?: string | undefined;
|
|
418
434
|
itemImproveEffectOptions?: ItemImproveEffectOptionDto[] | undefined;
|
|
419
435
|
}
|
|
436
|
+
export declare class ItemRandomEffectsDto implements IItemRandomEffectsDto {
|
|
437
|
+
alias?: string | undefined;
|
|
438
|
+
randomEffectCount?: number;
|
|
439
|
+
totalWeight?: number;
|
|
440
|
+
itemSkillName?: string | undefined;
|
|
441
|
+
randomEffects?: ItemEffectDto[] | undefined;
|
|
442
|
+
constructor(data?: IItemRandomEffectsDto);
|
|
443
|
+
init(_data?: any): void;
|
|
444
|
+
static fromJS(data: any): ItemRandomEffectsDto;
|
|
445
|
+
toJSON(data?: any): any;
|
|
446
|
+
}
|
|
447
|
+
export interface IItemRandomEffectsDto {
|
|
448
|
+
alias?: string | undefined;
|
|
449
|
+
randomEffectCount?: number;
|
|
450
|
+
totalWeight?: number;
|
|
451
|
+
itemSkillName?: string | undefined;
|
|
452
|
+
randomEffects?: ItemEffectDto[] | undefined;
|
|
453
|
+
}
|
|
420
454
|
export declare class ItemRandomStatDto implements IItemRandomStatDto {
|
|
421
455
|
name?: string | undefined;
|
|
422
456
|
min?: number;
|