maplestory-openapi 3.2.1 → 3.4.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/README.md +50 -39
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +2 -2
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +2 -2
- package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +2 -2
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterOtherStat.js +62 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +34 -0
- package/dist/cjs/maplestory/api/kms/kms.js +4 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +66 -10
- package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +11 -1
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +1 -1
- package/dist/cjs/maplestory/api/tms/dto/character/character.js +22 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterAbility.js +108 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterAndroidEquipment.js +424 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterBasic.js +93 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterBeautyEquipment.js +172 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterCashItemEquipment.js +228 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterDojang.js +49 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterHexaMatrix.js +73 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterHexaMatrixStat.js +113 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterHyperStat.js +97 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterImage.js +81 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterItemEquipment.js +1137 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterLinkSkill.js +115 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterPetEquipment.js +332 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterPopularity.js +27 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterPropensity.js +52 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterSetEffect.js +97 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterSkill.js +77 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterStat.js +57 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterSymbolEquipment.js +119 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterVMatrix.js +88 -0
- package/dist/cjs/maplestory/api/tms/dto/guild/guild.js +22 -0
- package/dist/cjs/maplestory/api/tms/dto/guild/guildBasic.js +107 -0
- package/dist/cjs/maplestory/api/tms/dto/union/union.js +47 -0
- package/dist/cjs/maplestory/api/tms/dto/union/unionArtifact.js +111 -0
- package/dist/cjs/maplestory/api/tms/dto/union/unionRaider.js +214 -0
- package/dist/cjs/maplestory/api/tms/mapleStoryApi.js +802 -0
- package/dist/cjs/maplestory/api/tms/tms.js +109 -0
- package/dist/cjs/node_modules/base64-js/index.js +1 -1
- package/dist/cjs/node_modules/buffer/index.js +2 -2
- package/dist/cjs/node_modules/dayjs/plugin/utc.js +1 -1
- package/dist/cjs/node_modules/ieee754/index.js +1 -1
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +2 -2
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +2 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +2 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterOtherStat.js +56 -0
- package/dist/esm/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +30 -0
- package/dist/esm/maplestory/api/kms/kms.js +1 -0
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +66 -10
- package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +11 -1
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +1 -1
- package/dist/esm/maplestory/api/tms/dto/character/character.js +18 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterAbility.js +102 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterAndroidEquipment.js +413 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterBasic.js +89 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterBeautyEquipment.js +165 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterCashItemEquipment.js +221 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterDojang.js +45 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterHexaMatrix.js +67 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterHexaMatrixStat.js +108 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterHyperStat.js +92 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterImage.js +77 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterItemEquipment.js +1123 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterLinkSkill.js +110 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterPetEquipment.js +325 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterPopularity.js +23 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterPropensity.js +48 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterSetEffect.js +90 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterSkill.js +72 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterStat.js +52 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterSymbolEquipment.js +114 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterVMatrix.js +83 -0
- package/dist/esm/maplestory/api/tms/dto/guild/guild.js +18 -0
- package/dist/esm/maplestory/api/tms/dto/guild/guildBasic.js +102 -0
- package/dist/esm/maplestory/api/tms/dto/union/union.js +43 -0
- package/dist/esm/maplestory/api/tms/dto/union/unionArtifact.js +105 -0
- package/dist/esm/maplestory/api/tms/dto/union/unionRaider.js +205 -0
- package/dist/esm/maplestory/api/tms/mapleStoryApi.js +794 -0
- package/dist/esm/maplestory/api/tms/tms.js +27 -0
- package/dist/esm/node_modules/base64-js/index.js +2 -2
- package/dist/esm/node_modules/buffer/index.js +2 -2
- package/dist/esm/node_modules/dayjs/plugin/utc.js +1 -1
- package/dist/esm/node_modules/ieee754/index.js +2 -2
- package/dist/index.min.js +1 -1
- package/package.json +6 -1
- package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +2 -0
- package/types/maplestory/api/common/dto/character/characterSkill.d.ts +1 -1
- package/types/maplestory/api/common/mapleStoryApi.d.ts +0 -16
- package/types/maplestory/api/kms/dto/character/characterImage.d.ts +2 -2
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +8 -0
- package/types/maplestory/api/kms/dto/character/characterOtherStat.d.ts +43 -0
- package/types/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.d.ts +23 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +1 -1
- package/types/maplestory/api/kms/index.d.ts +1 -0
- package/types/maplestory/api/kms/mapleStoryApi.d.ts +27 -17
- package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +2 -0
- package/types/maplestory/api/kms/response/character/characterOtherStatBody.d.ts +12 -0
- package/types/maplestory/api/kms/response/character/characterRingExchangeSkillEquipmentBody.d.ts +6 -0
- package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +8 -0
- package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +1 -1
- package/types/maplestory/api/msea/mapleStoryApi.d.ts +1 -1
- package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +2 -0
- package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +1 -1
- package/types/maplestory/api/tms/dto/character/character.d.ts +12 -0
- package/types/maplestory/api/tms/dto/character/characterAbility.d.ts +72 -0
- package/types/maplestory/api/tms/dto/character/characterAndroidEquipment.d.ts +299 -0
- package/types/maplestory/api/tms/dto/character/characterBasic.d.ts +68 -0
- package/types/maplestory/api/tms/dto/character/characterBeautyEquipment.d.ts +117 -0
- package/types/maplestory/api/tms/dto/character/characterCashItemEquipment.d.ts +158 -0
- package/types/maplestory/api/tms/dto/character/characterDojang.d.ts +32 -0
- package/types/maplestory/api/tms/dto/character/characterHexaMatrix.d.ts +48 -0
- package/types/maplestory/api/tms/dto/character/characterHexaMatrixStat.d.ts +78 -0
- package/types/maplestory/api/tms/dto/character/characterHyperStat.d.ts +70 -0
- package/types/maplestory/api/tms/dto/character/characterImage.d.ts +74 -0
- package/types/maplestory/api/tms/dto/character/characterItemEquipment.d.ts +864 -0
- package/types/maplestory/api/tms/dto/character/characterLinkSkill.d.ts +78 -0
- package/types/maplestory/api/tms/dto/character/characterPetEquipment.d.ts +230 -0
- package/types/maplestory/api/tms/dto/character/characterPopularity.d.ts +16 -0
- package/types/maplestory/api/tms/dto/character/characterPropensity.d.ts +36 -0
- package/types/maplestory/api/tms/dto/character/characterSetEffect.d.ts +66 -0
- package/types/maplestory/api/tms/dto/character/characterSkill.d.ts +54 -0
- package/types/maplestory/api/tms/dto/character/characterStat.d.ts +38 -0
- package/types/maplestory/api/tms/dto/character/characterSymbolEquipment.d.ts +86 -0
- package/types/maplestory/api/tms/dto/character/characterVMatrix.d.ts +62 -0
- package/types/maplestory/api/tms/dto/guild/guild.d.ts +12 -0
- package/types/maplestory/api/tms/dto/guild/guildBasic.d.ts +78 -0
- package/types/maplestory/api/tms/dto/union/union.d.ts +32 -0
- package/types/maplestory/api/tms/dto/union/unionArtifact.d.ts +76 -0
- package/types/maplestory/api/tms/dto/union/unionRaider.d.ts +147 -0
- package/types/maplestory/api/tms/index.d.ts +27 -0
- package/types/maplestory/api/tms/mapleStoryApi.d.ts +364 -0
- package/types/maplestory/api/tms/response/character/characterAbilityBody.d.ts +19 -0
- package/types/maplestory/api/tms/response/character/characterAndroidEquipmentBody.d.ts +76 -0
- package/types/maplestory/api/tms/response/character/characterBasicBody.d.ts +16 -0
- package/types/maplestory/api/tms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
- package/types/maplestory/api/tms/response/character/characterBody.d.ts +3 -0
- package/types/maplestory/api/tms/response/character/characterCashItemEquipmentBody.d.ts +39 -0
- package/types/maplestory/api/tms/response/character/characterDojangBody.d.ts +8 -0
- package/types/maplestory/api/tms/response/character/characterHexaMatrixBody.d.ts +13 -0
- package/types/maplestory/api/tms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
- package/types/maplestory/api/tms/response/character/characterHyperStatBody.d.ts +18 -0
- package/types/maplestory/api/tms/response/character/characterItemEquipmentBody.d.ts +195 -0
- package/types/maplestory/api/tms/response/character/characterLinkSkillBody.d.ts +20 -0
- package/types/maplestory/api/tms/response/character/characterPetEquipmentBody.d.ts +56 -0
- package/types/maplestory/api/tms/response/character/characterPopularityBody.d.ts +4 -0
- package/types/maplestory/api/tms/response/character/characterPropensityBody.d.ts +9 -0
- package/types/maplestory/api/tms/response/character/characterSetEffectBody.d.ts +18 -0
- package/types/maplestory/api/tms/response/character/characterSkillBody.d.ts +14 -0
- package/types/maplestory/api/tms/response/character/characterStatBody.d.ts +10 -0
- package/types/maplestory/api/tms/response/character/characterSymbolEquipmentBody.d.ts +22 -0
- package/types/maplestory/api/tms/response/character/characterVMatrixBody.d.ts +16 -0
- package/types/maplestory/api/tms/response/guild/guildBasicBody.d.ts +20 -0
- package/types/maplestory/api/tms/response/guild/guildBody.d.ts +3 -0
- package/types/maplestory/api/tms/response/union/unionArtifactBody.d.ts +19 -0
- package/types/maplestory/api/tms/response/union/unionBody.d.ts +8 -0
- package/types/maplestory/api/tms/response/union/unionRaiderBody.d.ts +38 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterHexaMatrix';
|
|
2
|
+
import { CharacterHexaMatrixBody, CharacterHexaMatrixEquipmentBody, CharacterHexaMatrixEquipmentLinkedSkillBody } from '../../response/character/characterHexaMatrixBody';
|
|
3
|
+
/**
|
|
4
|
+
* 角色已裝備於 HEXA 矩陣的 HEXA 核心資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterHexaMatrixDto extends base.CharacterHexaMatrixDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* HEXA 核心資訊
|
|
13
|
+
*/
|
|
14
|
+
characterHexaCoreEquipment: CharacterHexaMatrixEquipmentDto[];
|
|
15
|
+
constructor(obj: CharacterHexaMatrixBody);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* 已連接的技能
|
|
19
|
+
*/
|
|
20
|
+
export declare class CharacterHexaMatrixEquipmentLinkedSkillDto extends base.CharacterHexaMatrixEquipmentLinkedSkillDto {
|
|
21
|
+
/**
|
|
22
|
+
* HEXA 技能名稱
|
|
23
|
+
*/
|
|
24
|
+
hexaSkillId: string;
|
|
25
|
+
constructor(obj: CharacterHexaMatrixEquipmentLinkedSkillBody);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* HEXA 核心資訊
|
|
29
|
+
*/
|
|
30
|
+
export declare class CharacterHexaMatrixEquipmentDto extends base.CharacterHexaMatrixEquipmentDto {
|
|
31
|
+
/**
|
|
32
|
+
* 核心名稱
|
|
33
|
+
*/
|
|
34
|
+
hexaCoreName: string;
|
|
35
|
+
/**
|
|
36
|
+
* 核心等級
|
|
37
|
+
*/
|
|
38
|
+
hexaCoreLevel: number;
|
|
39
|
+
/**
|
|
40
|
+
* 核心類型
|
|
41
|
+
*/
|
|
42
|
+
hexaCoreType: string;
|
|
43
|
+
/**
|
|
44
|
+
* 已連接的技能
|
|
45
|
+
*/
|
|
46
|
+
linkedSkill: CharacterHexaMatrixEquipmentLinkedSkillDto[];
|
|
47
|
+
constructor(obj: CharacterHexaMatrixEquipmentBody);
|
|
48
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterHexaMatrixStat';
|
|
2
|
+
import { CharacterHexaMatrixStatBody, CharacterHexaMatrixStatCoreBody } from '../../response/character/characterHexaMatrixStatBody';
|
|
3
|
+
/**
|
|
4
|
+
* 角色設定於 HEXA 矩陣中的 HEXA 屬性資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterHexaMatrixStatDto extends base.CharacterHexaMatrixStatDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 角色職業
|
|
13
|
+
*/
|
|
14
|
+
characterClass: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* HEXA 屬性 I 核心資訊
|
|
17
|
+
*/
|
|
18
|
+
characterHexaStatCore: CharacterHexaMatrixStatCoreDto[];
|
|
19
|
+
/**
|
|
20
|
+
* HEXA 屬性 II 核心資訊
|
|
21
|
+
*/
|
|
22
|
+
characterHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
|
|
23
|
+
/**
|
|
24
|
+
* HEXA 屬性 III 核心資訊
|
|
25
|
+
*/
|
|
26
|
+
characterHexaStatCore3: CharacterHexaMatrixStatCoreDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 預設的 HEXA 屬性 I 核心資訊
|
|
29
|
+
*/
|
|
30
|
+
presetHexaStatCore: CharacterHexaMatrixStatCoreDto[];
|
|
31
|
+
/**
|
|
32
|
+
* 預設的 HEXA 屬性 II 核心資訊
|
|
33
|
+
*/
|
|
34
|
+
presetHexaStatCore2: CharacterHexaMatrixStatCoreDto[];
|
|
35
|
+
/**
|
|
36
|
+
* 預設的 HEXA 屬性 III 核心資訊
|
|
37
|
+
*/
|
|
38
|
+
presetHexaStatCore3: CharacterHexaMatrixStatCoreDto[];
|
|
39
|
+
constructor(obj: CharacterHexaMatrixStatBody);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* HEXA 屬性核心資訊
|
|
43
|
+
*/
|
|
44
|
+
export declare class CharacterHexaMatrixStatCoreDto extends base.CharacterHexaMatrixStatCoreDto {
|
|
45
|
+
/**
|
|
46
|
+
* 欄位索引
|
|
47
|
+
*/
|
|
48
|
+
slotId: string;
|
|
49
|
+
/**
|
|
50
|
+
* 主要屬性名稱
|
|
51
|
+
*/
|
|
52
|
+
mainStatName: string;
|
|
53
|
+
/**
|
|
54
|
+
* 第一副屬性名稱
|
|
55
|
+
*/
|
|
56
|
+
subStatName1: string;
|
|
57
|
+
/**
|
|
58
|
+
* 第二副屬性名稱
|
|
59
|
+
*/
|
|
60
|
+
subStatName2: string;
|
|
61
|
+
/**
|
|
62
|
+
* 主要屬性等級
|
|
63
|
+
*/
|
|
64
|
+
mainStatLevel: number;
|
|
65
|
+
/**
|
|
66
|
+
* 第一副屬性等級
|
|
67
|
+
*/
|
|
68
|
+
subStatLevel1: number;
|
|
69
|
+
/**
|
|
70
|
+
* 第二副屬性等級
|
|
71
|
+
*/
|
|
72
|
+
subStatLevel2: number;
|
|
73
|
+
/**
|
|
74
|
+
* 屬性核心階級
|
|
75
|
+
*/
|
|
76
|
+
statGrade: number;
|
|
77
|
+
constructor(obj: CharacterHexaMatrixStatCoreBody);
|
|
78
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterHyperStat';
|
|
2
|
+
import { CharacterHyperStatBody, CharacterHyperStatPresetBody } from '../../response/character/characterHyperStatBody';
|
|
3
|
+
/**
|
|
4
|
+
* 角色極限屬性資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterHyperStatDto extends base.CharacterHyperStatDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 角色職業
|
|
13
|
+
*/
|
|
14
|
+
characterClass: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* 目前套用的預設編號
|
|
17
|
+
*/
|
|
18
|
+
usePresetNo: string | null;
|
|
19
|
+
/**
|
|
20
|
+
* 可用的極限屬性點數上限
|
|
21
|
+
*/
|
|
22
|
+
useAvailableHyperStat: number | null;
|
|
23
|
+
/**
|
|
24
|
+
* 預設 1 的極限屬性資訊
|
|
25
|
+
*/
|
|
26
|
+
hyperStatPreset1: CharacterHyperStatPresetDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 預設 1 剩餘的極限屬性點數
|
|
29
|
+
*/
|
|
30
|
+
hyperStatPreset1RemainPoint: number | null;
|
|
31
|
+
/**
|
|
32
|
+
* 預設 2 的極限屬性資訊
|
|
33
|
+
*/
|
|
34
|
+
hyperStatPreset2: CharacterHyperStatPresetDto[];
|
|
35
|
+
/**
|
|
36
|
+
* 預設 2 剩餘的極限屬性點數
|
|
37
|
+
*/
|
|
38
|
+
hyperStatPreset2RemainPoint: number | null;
|
|
39
|
+
/**
|
|
40
|
+
* 預設 3 的極限屬性資訊
|
|
41
|
+
*/
|
|
42
|
+
hyperStatPreset3: CharacterHyperStatPresetDto[];
|
|
43
|
+
/**
|
|
44
|
+
* 預設 3 剩餘的極限屬性點數
|
|
45
|
+
*/
|
|
46
|
+
hyperStatPreset3RemainPoint: number | null;
|
|
47
|
+
constructor(obj: CharacterHyperStatBody);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* 預設的極限屬性資訊
|
|
51
|
+
*/
|
|
52
|
+
export declare class CharacterHyperStatPresetDto extends base.CharacterHyperStatPresetDto {
|
|
53
|
+
/**
|
|
54
|
+
* 能力值類型
|
|
55
|
+
*/
|
|
56
|
+
statType: string;
|
|
57
|
+
/**
|
|
58
|
+
* 投入於能力值的點數
|
|
59
|
+
*/
|
|
60
|
+
statPoint: number | null;
|
|
61
|
+
/**
|
|
62
|
+
* 能力值等級
|
|
63
|
+
*/
|
|
64
|
+
statLevel: number;
|
|
65
|
+
/**
|
|
66
|
+
* 能力值提升量
|
|
67
|
+
*/
|
|
68
|
+
statIncrease: string | null;
|
|
69
|
+
constructor(obj: CharacterHyperStatPresetBody);
|
|
70
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/character/characterImage';
|
|
2
|
+
import { CharacterImageAction, CharacterImageEmotion, CharacterImageWeaponMotion } from '../../../common/enum/characterImage';
|
|
3
|
+
/**
|
|
4
|
+
* 角色外型圖片資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterImageDto extends base.CharacterImageDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 角色外型圖片原始 (URL)
|
|
13
|
+
*/
|
|
14
|
+
originUrl: string;
|
|
15
|
+
/**
|
|
16
|
+
* 角色外型圖片原始 (base64)
|
|
17
|
+
*/
|
|
18
|
+
originImage: string;
|
|
19
|
+
/**
|
|
20
|
+
* 角色外型圖片 (base64)
|
|
21
|
+
*/
|
|
22
|
+
image: string;
|
|
23
|
+
/**
|
|
24
|
+
* 角色動作
|
|
25
|
+
*/
|
|
26
|
+
action: CharacterImageAction;
|
|
27
|
+
/**
|
|
28
|
+
* 角色表情
|
|
29
|
+
*/
|
|
30
|
+
emotion: CharacterImageEmotion;
|
|
31
|
+
/**
|
|
32
|
+
* 角色武器動作
|
|
33
|
+
*/
|
|
34
|
+
wmotion: CharacterImageWeaponMotion;
|
|
35
|
+
/**
|
|
36
|
+
* 角色動作影格
|
|
37
|
+
*/
|
|
38
|
+
actionFrame: number | null;
|
|
39
|
+
/**
|
|
40
|
+
* 角色表情影格
|
|
41
|
+
*/
|
|
42
|
+
emotionFrame: number | null;
|
|
43
|
+
/**
|
|
44
|
+
* 寬度 (對應背景大小,96 (預設) 至 1000)
|
|
45
|
+
*/
|
|
46
|
+
width: number;
|
|
47
|
+
/**
|
|
48
|
+
* 高度 (對應背景大小,96 (預設) 至 1000)
|
|
49
|
+
*/
|
|
50
|
+
height: number;
|
|
51
|
+
/**
|
|
52
|
+
* 角色的水平座標 (座標範圍 0 < x < 寬度,0 對應至最左起點)
|
|
53
|
+
*/
|
|
54
|
+
x: number | null;
|
|
55
|
+
/**
|
|
56
|
+
* 角色的垂直座標 (座標範圍 0 < y < 高度,0 對應至最上方起點)
|
|
57
|
+
*/
|
|
58
|
+
y: number | null;
|
|
59
|
+
constructor(obj: {
|
|
60
|
+
date: Date | null;
|
|
61
|
+
originUrl: string;
|
|
62
|
+
originImage: string;
|
|
63
|
+
image: string;
|
|
64
|
+
action: CharacterImageAction;
|
|
65
|
+
emotion: CharacterImageEmotion;
|
|
66
|
+
wmotion: CharacterImageWeaponMotion;
|
|
67
|
+
actionFrame: number | null;
|
|
68
|
+
emotionFrame: number | null;
|
|
69
|
+
width: number;
|
|
70
|
+
height: number;
|
|
71
|
+
x: number | null;
|
|
72
|
+
y: number | null;
|
|
73
|
+
});
|
|
74
|
+
}
|