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,78 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/guild/guildBasic';
|
|
2
|
+
import { GuildBasicBody, GuildSkillBody } from '../../response/guild/guildBasicBody';
|
|
3
|
+
/**
|
|
4
|
+
* 公會基本資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class GuildBasicDto extends base.GuildBasicDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 世界名稱
|
|
13
|
+
*/
|
|
14
|
+
worldName: string;
|
|
15
|
+
/**
|
|
16
|
+
* 公會名稱
|
|
17
|
+
*/
|
|
18
|
+
guildName: string;
|
|
19
|
+
/**
|
|
20
|
+
* 公會等級
|
|
21
|
+
*/
|
|
22
|
+
guildLevel: number;
|
|
23
|
+
/**
|
|
24
|
+
* 公會名聲值
|
|
25
|
+
*/
|
|
26
|
+
guildFame: number;
|
|
27
|
+
/**
|
|
28
|
+
* 公會點數 (GP)
|
|
29
|
+
*/
|
|
30
|
+
guildPoint: number;
|
|
31
|
+
/**
|
|
32
|
+
* 公會會長角色名稱
|
|
33
|
+
*/
|
|
34
|
+
guildMasterName: string;
|
|
35
|
+
/**
|
|
36
|
+
* 公會成員人數
|
|
37
|
+
*/
|
|
38
|
+
guildMemberCount: number;
|
|
39
|
+
/**
|
|
40
|
+
* 公會成員清單
|
|
41
|
+
*/
|
|
42
|
+
guildMember: string[];
|
|
43
|
+
/**
|
|
44
|
+
* 公會技能清單
|
|
45
|
+
*/
|
|
46
|
+
guildSkill: GuildSkillDto[];
|
|
47
|
+
/**
|
|
48
|
+
* 貴族技能清單
|
|
49
|
+
*/
|
|
50
|
+
guildNoblesseSkill: GuildSkillDto[];
|
|
51
|
+
constructor(obj: GuildBasicBody);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* 公會技能
|
|
55
|
+
*/
|
|
56
|
+
export declare class GuildSkillDto extends base.GuildSkillDto {
|
|
57
|
+
/**
|
|
58
|
+
* 技能名稱
|
|
59
|
+
*/
|
|
60
|
+
skillName: string;
|
|
61
|
+
/**
|
|
62
|
+
* 技能描述
|
|
63
|
+
*/
|
|
64
|
+
skillDescription: string;
|
|
65
|
+
/**
|
|
66
|
+
* 技能等級
|
|
67
|
+
*/
|
|
68
|
+
skillLevel: number;
|
|
69
|
+
/**
|
|
70
|
+
* 技能等級的效果
|
|
71
|
+
*/
|
|
72
|
+
skillEffect: string;
|
|
73
|
+
/**
|
|
74
|
+
* 技能圖示
|
|
75
|
+
*/
|
|
76
|
+
skillIcon: string;
|
|
77
|
+
constructor(obj: GuildSkillBody);
|
|
78
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/union/union';
|
|
2
|
+
import { UnionBody } from '../../response/union/unionBody';
|
|
3
|
+
/**
|
|
4
|
+
* 戰地資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class UnionDto extends base.UnionDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 聯盟等級
|
|
13
|
+
*/
|
|
14
|
+
unionLevel: number | null;
|
|
15
|
+
/**
|
|
16
|
+
* 聯盟階級
|
|
17
|
+
*/
|
|
18
|
+
unionGrade: string | null;
|
|
19
|
+
/**
|
|
20
|
+
* 神器等級
|
|
21
|
+
*/
|
|
22
|
+
unionArtifactLevel: number | null;
|
|
23
|
+
/**
|
|
24
|
+
* 持有的神器經驗值
|
|
25
|
+
*/
|
|
26
|
+
unionArtifactExp: number | null;
|
|
27
|
+
/**
|
|
28
|
+
* 持有的神器點數
|
|
29
|
+
*/
|
|
30
|
+
unionArtifactPoint: number | null;
|
|
31
|
+
constructor(obj: UnionBody);
|
|
32
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/union/unionArtifact';
|
|
2
|
+
import { UnionArtifactBody, UnionArtifactCrystalBody, UnionArtifactEffectBody } from '../../response/union/unionArtifactBody';
|
|
3
|
+
/**
|
|
4
|
+
* 戰地神器資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class UnionArtifactDto extends base.UnionArtifactDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 神器效果資訊
|
|
13
|
+
*/
|
|
14
|
+
unionArtifactEffect: UnionArtifactEffectDto[];
|
|
15
|
+
/**
|
|
16
|
+
* 神器水晶資訊
|
|
17
|
+
*/
|
|
18
|
+
unionArtifactCrystal: UnionArtifactCrystalDto[];
|
|
19
|
+
/**
|
|
20
|
+
* 剩餘神器 AP
|
|
21
|
+
*/
|
|
22
|
+
unionArtifactRemainAp: number | null;
|
|
23
|
+
constructor(obj: UnionArtifactBody);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* 神器效果資訊
|
|
27
|
+
*/
|
|
28
|
+
export declare class UnionArtifactEffectDto extends base.UnionArtifactEffectDto {
|
|
29
|
+
/**
|
|
30
|
+
* 神器效果名稱
|
|
31
|
+
*/
|
|
32
|
+
name: string;
|
|
33
|
+
/**
|
|
34
|
+
* 神器效果等級
|
|
35
|
+
*/
|
|
36
|
+
level: number;
|
|
37
|
+
constructor(obj: UnionArtifactEffectBody);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* 神器水晶資訊
|
|
41
|
+
*/
|
|
42
|
+
export declare class UnionArtifactCrystalDto extends base.UnionArtifactCrystalDto {
|
|
43
|
+
/**
|
|
44
|
+
* 神器水晶名稱
|
|
45
|
+
*/
|
|
46
|
+
name: string;
|
|
47
|
+
/**
|
|
48
|
+
* 能力有效性 (0:有效,1:無效)
|
|
49
|
+
*/
|
|
50
|
+
validityFlag: string;
|
|
51
|
+
/**
|
|
52
|
+
* 能力有效期間 (TST)
|
|
53
|
+
*/
|
|
54
|
+
dateExpire: Date | null;
|
|
55
|
+
/**
|
|
56
|
+
* Whether the artifact crystal is expired
|
|
57
|
+
*/
|
|
58
|
+
isExpired: boolean | null;
|
|
59
|
+
/**
|
|
60
|
+
* 神器水晶階級
|
|
61
|
+
*/
|
|
62
|
+
level: number;
|
|
63
|
+
/**
|
|
64
|
+
* 神器水晶第一選項名稱
|
|
65
|
+
*/
|
|
66
|
+
crystalOptionName1: string;
|
|
67
|
+
/**
|
|
68
|
+
* 神器水晶第二選項名稱
|
|
69
|
+
*/
|
|
70
|
+
crystalOptionName2: string;
|
|
71
|
+
/**
|
|
72
|
+
* 神器水晶第三選項名稱
|
|
73
|
+
*/
|
|
74
|
+
crystalOptionName3: string;
|
|
75
|
+
constructor(obj: UnionArtifactCrystalBody);
|
|
76
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import * as base from '../../../common/dto/union/unionRaider';
|
|
2
|
+
import { UnionRaiderBlockBody, UnionRaiderBlockControlPointBody, UnionRaiderBlockPositionBody, UnionRaiderBody, UnionRaiderInnerStatBody, UnionRaiderPresetBody } from '../../response/union/unionRaiderBody';
|
|
3
|
+
/**
|
|
4
|
+
* 戰地攻擊隊資訊
|
|
5
|
+
*/
|
|
6
|
+
export declare class UnionRaiderDto extends base.UnionRaiderDto {
|
|
7
|
+
/**
|
|
8
|
+
* 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
|
|
9
|
+
*/
|
|
10
|
+
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 戰地攻擊隊員效果
|
|
13
|
+
*/
|
|
14
|
+
unionRaiderStat: string[];
|
|
15
|
+
/**
|
|
16
|
+
* 戰地攻擊隊佔領效果
|
|
17
|
+
*/
|
|
18
|
+
unionOccupiedStat: string[];
|
|
19
|
+
/**
|
|
20
|
+
* 戰地攻擊隊部署
|
|
21
|
+
*/
|
|
22
|
+
unionInnerStat: UnionRaiderInnerStatDto[];
|
|
23
|
+
/**
|
|
24
|
+
* 聯盟方塊資訊
|
|
25
|
+
*/
|
|
26
|
+
unionBlock: UnionRaiderBlockDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 目前套用的預設編號
|
|
29
|
+
*/
|
|
30
|
+
usePresetNo: number;
|
|
31
|
+
/**
|
|
32
|
+
* 聯盟預設 1 資訊
|
|
33
|
+
*/
|
|
34
|
+
unionRaiderPreset1: UnionRaiderPresetDto | null;
|
|
35
|
+
/**
|
|
36
|
+
* 聯盟預設 2 資訊
|
|
37
|
+
*/
|
|
38
|
+
unionRaiderPreset2: UnionRaiderPresetDto | null;
|
|
39
|
+
/**
|
|
40
|
+
* 聯盟預設 3 資訊
|
|
41
|
+
*/
|
|
42
|
+
unionRaiderPreset3: UnionRaiderPresetDto | null;
|
|
43
|
+
/**
|
|
44
|
+
* 聯盟預設 4 資訊
|
|
45
|
+
*/
|
|
46
|
+
unionRaiderPreset4: UnionRaiderPresetDto | null;
|
|
47
|
+
/**
|
|
48
|
+
* 聯盟預設 5 資訊
|
|
49
|
+
*/
|
|
50
|
+
unionRaiderPreset5: UnionRaiderPresetDto | null;
|
|
51
|
+
constructor(obj: UnionRaiderBody);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* 戰地攻擊隊部署
|
|
55
|
+
*/
|
|
56
|
+
export declare class UnionRaiderInnerStatDto extends base.UnionRaiderInnerStatDto {
|
|
57
|
+
/**
|
|
58
|
+
* 攻擊單位部署位置 (以 11 點鐘方向為起點,順時針 0-7)
|
|
59
|
+
*/
|
|
60
|
+
statFieldId: string;
|
|
61
|
+
/**
|
|
62
|
+
* 相關區域佔領效果
|
|
63
|
+
*/
|
|
64
|
+
statFieldEffect: string;
|
|
65
|
+
constructor(obj: UnionRaiderInnerStatBody);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* 方塊佔領區域的座標
|
|
69
|
+
*/
|
|
70
|
+
export declare class UnionRaiderBlockPositionDto extends base.UnionRaiderBlockPositionDto {
|
|
71
|
+
/**
|
|
72
|
+
* 方塊 x 座標
|
|
73
|
+
*/
|
|
74
|
+
x: number;
|
|
75
|
+
/**
|
|
76
|
+
* 方塊 y 座標
|
|
77
|
+
*/
|
|
78
|
+
y: number;
|
|
79
|
+
constructor(obj: UnionRaiderBlockPositionBody);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* 方塊基準點座標
|
|
83
|
+
* - 四個中央方塊的右下角為位置 x : 0, y : 0
|
|
84
|
+
* - 向左移動一格,x 減少 1
|
|
85
|
+
* - 向右移動一格,x 增加 1
|
|
86
|
+
* - 向下移動一格,y 減少 1
|
|
87
|
+
* - 向上移動一格,y 增加 1
|
|
88
|
+
*/
|
|
89
|
+
export declare class UnionRaiderBlockControlPointDto extends base.UnionRaiderBlockControlPointDto {
|
|
90
|
+
/**
|
|
91
|
+
* 方塊基準點 x 座標
|
|
92
|
+
*/
|
|
93
|
+
x: number;
|
|
94
|
+
/**
|
|
95
|
+
* 方塊基準點 y 座標
|
|
96
|
+
*/
|
|
97
|
+
y: number;
|
|
98
|
+
constructor(obj: UnionRaiderBlockControlPointBody);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* 聯盟方塊資訊
|
|
102
|
+
*/
|
|
103
|
+
export declare class UnionRaiderBlockDto extends base.UnionRaiderBlockDto {
|
|
104
|
+
/**
|
|
105
|
+
* 方塊編制 (戰士、法師、弓箭手、盜賊、海盜、混合)
|
|
106
|
+
*/
|
|
107
|
+
blockType: string;
|
|
108
|
+
/**
|
|
109
|
+
* 方塊角色職業
|
|
110
|
+
*/
|
|
111
|
+
blockClass: string;
|
|
112
|
+
/**
|
|
113
|
+
* 方塊角色等級
|
|
114
|
+
*/
|
|
115
|
+
blockLevel: string;
|
|
116
|
+
/**
|
|
117
|
+
* 方塊基準點座標
|
|
118
|
+
*/
|
|
119
|
+
blockControlPoint: UnionRaiderBlockControlPointDto;
|
|
120
|
+
/**
|
|
121
|
+
* 方塊佔領區域的座標 (null:未部署時)
|
|
122
|
+
*/
|
|
123
|
+
blockPosition: UnionRaiderBlockPositionDto[] | null;
|
|
124
|
+
constructor(obj: UnionRaiderBlockBody);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* 聯盟預設 資訊
|
|
128
|
+
*/
|
|
129
|
+
export declare class UnionRaiderPresetDto extends base.UnionRaiderPresetDto {
|
|
130
|
+
/**
|
|
131
|
+
* 戰地攻擊隊員效果
|
|
132
|
+
*/
|
|
133
|
+
unionRaiderStat: string[];
|
|
134
|
+
/**
|
|
135
|
+
* 戰地攻擊隊佔領效果
|
|
136
|
+
*/
|
|
137
|
+
unionOccupiedStat: string[];
|
|
138
|
+
/**
|
|
139
|
+
* 戰地攻擊隊部署
|
|
140
|
+
*/
|
|
141
|
+
unionInnerStat: UnionRaiderInnerStatDto[];
|
|
142
|
+
/**
|
|
143
|
+
* 聯盟方塊資訊
|
|
144
|
+
*/
|
|
145
|
+
unionBlock: UnionRaiderBlockDto[];
|
|
146
|
+
constructor(obj: UnionRaiderPresetBody);
|
|
147
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export * from './mapleStoryApi';
|
|
2
|
+
export * from './dto/character/character';
|
|
3
|
+
export * from './dto/character/characterAbility';
|
|
4
|
+
export * from './dto/character/characterAndroidEquipment';
|
|
5
|
+
export * from './dto/character/characterBasic';
|
|
6
|
+
export * from './dto/character/characterBeautyEquipment';
|
|
7
|
+
export * from './dto/character/characterCashItemEquipment';
|
|
8
|
+
export * from './dto/character/characterDojang';
|
|
9
|
+
export * from './dto/character/characterHexaMatrix';
|
|
10
|
+
export * from './dto/character/characterHexaMatrixStat';
|
|
11
|
+
export * from './dto/character/characterHyperStat';
|
|
12
|
+
export * from './dto/character/characterImage';
|
|
13
|
+
export * from './dto/character/characterItemEquipment';
|
|
14
|
+
export * from './dto/character/characterLinkSkill';
|
|
15
|
+
export * from './dto/character/characterPetEquipment';
|
|
16
|
+
export * from './dto/character/characterPopularity';
|
|
17
|
+
export * from './dto/character/characterPropensity';
|
|
18
|
+
export * from './dto/character/characterSetEffect';
|
|
19
|
+
export * from './dto/character/characterSkill';
|
|
20
|
+
export * from './dto/character/characterStat';
|
|
21
|
+
export * from './dto/character/characterSymbolEquipment';
|
|
22
|
+
export * from './dto/character/characterVMatrix';
|
|
23
|
+
export * from './dto/guild/guild';
|
|
24
|
+
export * from './dto/guild/guildBasic';
|
|
25
|
+
export * from './dto/union/union';
|
|
26
|
+
export * from './dto/union/unionArtifact';
|
|
27
|
+
export * from './dto/union/unionRaider';
|