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.
Files changed (158) hide show
  1. package/README.md +50 -39
  2. package/dist/cjs/_virtual/index.js_commonjs-exports2.js +2 -2
  3. package/dist/cjs/_virtual/index.js_commonjs-exports3.js +2 -2
  4. package/dist/cjs/maplestory/api/kms/dto/character/characterImage.js +2 -2
  5. package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
  6. package/dist/cjs/maplestory/api/kms/dto/character/characterOtherStat.js +62 -0
  7. package/dist/cjs/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +34 -0
  8. package/dist/cjs/maplestory/api/kms/kms.js +4 -0
  9. package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +66 -10
  10. package/dist/cjs/maplestory/api/msea/dto/character/characterItemEquipment.js +11 -1
  11. package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +1 -1
  12. package/dist/cjs/maplestory/api/tms/dto/character/character.js +22 -0
  13. package/dist/cjs/maplestory/api/tms/dto/character/characterAbility.js +108 -0
  14. package/dist/cjs/maplestory/api/tms/dto/character/characterAndroidEquipment.js +424 -0
  15. package/dist/cjs/maplestory/api/tms/dto/character/characterBasic.js +93 -0
  16. package/dist/cjs/maplestory/api/tms/dto/character/characterBeautyEquipment.js +172 -0
  17. package/dist/cjs/maplestory/api/tms/dto/character/characterCashItemEquipment.js +228 -0
  18. package/dist/cjs/maplestory/api/tms/dto/character/characterDojang.js +49 -0
  19. package/dist/cjs/maplestory/api/tms/dto/character/characterHexaMatrix.js +73 -0
  20. package/dist/cjs/maplestory/api/tms/dto/character/characterHexaMatrixStat.js +113 -0
  21. package/dist/cjs/maplestory/api/tms/dto/character/characterHyperStat.js +97 -0
  22. package/dist/cjs/maplestory/api/tms/dto/character/characterImage.js +81 -0
  23. package/dist/cjs/maplestory/api/tms/dto/character/characterItemEquipment.js +1137 -0
  24. package/dist/cjs/maplestory/api/tms/dto/character/characterLinkSkill.js +115 -0
  25. package/dist/cjs/maplestory/api/tms/dto/character/characterPetEquipment.js +332 -0
  26. package/dist/cjs/maplestory/api/tms/dto/character/characterPopularity.js +27 -0
  27. package/dist/cjs/maplestory/api/tms/dto/character/characterPropensity.js +52 -0
  28. package/dist/cjs/maplestory/api/tms/dto/character/characterSetEffect.js +97 -0
  29. package/dist/cjs/maplestory/api/tms/dto/character/characterSkill.js +77 -0
  30. package/dist/cjs/maplestory/api/tms/dto/character/characterStat.js +57 -0
  31. package/dist/cjs/maplestory/api/tms/dto/character/characterSymbolEquipment.js +119 -0
  32. package/dist/cjs/maplestory/api/tms/dto/character/characterVMatrix.js +88 -0
  33. package/dist/cjs/maplestory/api/tms/dto/guild/guild.js +22 -0
  34. package/dist/cjs/maplestory/api/tms/dto/guild/guildBasic.js +107 -0
  35. package/dist/cjs/maplestory/api/tms/dto/union/union.js +47 -0
  36. package/dist/cjs/maplestory/api/tms/dto/union/unionArtifact.js +111 -0
  37. package/dist/cjs/maplestory/api/tms/dto/union/unionRaider.js +214 -0
  38. package/dist/cjs/maplestory/api/tms/mapleStoryApi.js +802 -0
  39. package/dist/cjs/maplestory/api/tms/tms.js +109 -0
  40. package/dist/cjs/node_modules/base64-js/index.js +1 -1
  41. package/dist/cjs/node_modules/buffer/index.js +2 -2
  42. package/dist/cjs/node_modules/dayjs/plugin/utc.js +1 -1
  43. package/dist/cjs/node_modules/ieee754/index.js +1 -1
  44. package/dist/esm/_virtual/index.js_commonjs-exports2.js +2 -2
  45. package/dist/esm/_virtual/index.js_commonjs-exports3.js +2 -2
  46. package/dist/esm/maplestory/api/kms/dto/character/characterImage.js +2 -2
  47. package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
  48. package/dist/esm/maplestory/api/kms/dto/character/characterOtherStat.js +56 -0
  49. package/dist/esm/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +30 -0
  50. package/dist/esm/maplestory/api/kms/kms.js +1 -0
  51. package/dist/esm/maplestory/api/kms/mapleStoryApi.js +66 -10
  52. package/dist/esm/maplestory/api/msea/dto/character/characterItemEquipment.js +11 -1
  53. package/dist/esm/maplestory/api/msea/mapleStoryApi.js +1 -1
  54. package/dist/esm/maplestory/api/tms/dto/character/character.js +18 -0
  55. package/dist/esm/maplestory/api/tms/dto/character/characterAbility.js +102 -0
  56. package/dist/esm/maplestory/api/tms/dto/character/characterAndroidEquipment.js +413 -0
  57. package/dist/esm/maplestory/api/tms/dto/character/characterBasic.js +89 -0
  58. package/dist/esm/maplestory/api/tms/dto/character/characterBeautyEquipment.js +165 -0
  59. package/dist/esm/maplestory/api/tms/dto/character/characterCashItemEquipment.js +221 -0
  60. package/dist/esm/maplestory/api/tms/dto/character/characterDojang.js +45 -0
  61. package/dist/esm/maplestory/api/tms/dto/character/characterHexaMatrix.js +67 -0
  62. package/dist/esm/maplestory/api/tms/dto/character/characterHexaMatrixStat.js +108 -0
  63. package/dist/esm/maplestory/api/tms/dto/character/characterHyperStat.js +92 -0
  64. package/dist/esm/maplestory/api/tms/dto/character/characterImage.js +77 -0
  65. package/dist/esm/maplestory/api/tms/dto/character/characterItemEquipment.js +1123 -0
  66. package/dist/esm/maplestory/api/tms/dto/character/characterLinkSkill.js +110 -0
  67. package/dist/esm/maplestory/api/tms/dto/character/characterPetEquipment.js +325 -0
  68. package/dist/esm/maplestory/api/tms/dto/character/characterPopularity.js +23 -0
  69. package/dist/esm/maplestory/api/tms/dto/character/characterPropensity.js +48 -0
  70. package/dist/esm/maplestory/api/tms/dto/character/characterSetEffect.js +90 -0
  71. package/dist/esm/maplestory/api/tms/dto/character/characterSkill.js +72 -0
  72. package/dist/esm/maplestory/api/tms/dto/character/characterStat.js +52 -0
  73. package/dist/esm/maplestory/api/tms/dto/character/characterSymbolEquipment.js +114 -0
  74. package/dist/esm/maplestory/api/tms/dto/character/characterVMatrix.js +83 -0
  75. package/dist/esm/maplestory/api/tms/dto/guild/guild.js +18 -0
  76. package/dist/esm/maplestory/api/tms/dto/guild/guildBasic.js +102 -0
  77. package/dist/esm/maplestory/api/tms/dto/union/union.js +43 -0
  78. package/dist/esm/maplestory/api/tms/dto/union/unionArtifact.js +105 -0
  79. package/dist/esm/maplestory/api/tms/dto/union/unionRaider.js +205 -0
  80. package/dist/esm/maplestory/api/tms/mapleStoryApi.js +794 -0
  81. package/dist/esm/maplestory/api/tms/tms.js +27 -0
  82. package/dist/esm/node_modules/base64-js/index.js +2 -2
  83. package/dist/esm/node_modules/buffer/index.js +2 -2
  84. package/dist/esm/node_modules/dayjs/plugin/utc.js +1 -1
  85. package/dist/esm/node_modules/ieee754/index.js +2 -2
  86. package/dist/index.min.js +1 -1
  87. package/package.json +6 -1
  88. package/types/maplestory/api/common/dto/character/characterItemEquipment.d.ts +2 -0
  89. package/types/maplestory/api/common/dto/character/characterSkill.d.ts +1 -1
  90. package/types/maplestory/api/common/mapleStoryApi.d.ts +0 -16
  91. package/types/maplestory/api/kms/dto/character/characterImage.d.ts +2 -2
  92. package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +8 -0
  93. package/types/maplestory/api/kms/dto/character/characterOtherStat.d.ts +43 -0
  94. package/types/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.d.ts +23 -0
  95. package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +1 -1
  96. package/types/maplestory/api/kms/index.d.ts +1 -0
  97. package/types/maplestory/api/kms/mapleStoryApi.d.ts +27 -17
  98. package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +2 -0
  99. package/types/maplestory/api/kms/response/character/characterOtherStatBody.d.ts +12 -0
  100. package/types/maplestory/api/kms/response/character/characterRingExchangeSkillEquipmentBody.d.ts +6 -0
  101. package/types/maplestory/api/msea/dto/character/characterItemEquipment.d.ts +8 -0
  102. package/types/maplestory/api/msea/dto/character/characterSkill.d.ts +1 -1
  103. package/types/maplestory/api/msea/mapleStoryApi.d.ts +1 -1
  104. package/types/maplestory/api/msea/response/character/characterItemEquipmentBody.d.ts +2 -0
  105. package/types/maplestory/api/msea/response/character/characterSkillBody.d.ts +1 -1
  106. package/types/maplestory/api/tms/dto/character/character.d.ts +12 -0
  107. package/types/maplestory/api/tms/dto/character/characterAbility.d.ts +72 -0
  108. package/types/maplestory/api/tms/dto/character/characterAndroidEquipment.d.ts +299 -0
  109. package/types/maplestory/api/tms/dto/character/characterBasic.d.ts +68 -0
  110. package/types/maplestory/api/tms/dto/character/characterBeautyEquipment.d.ts +117 -0
  111. package/types/maplestory/api/tms/dto/character/characterCashItemEquipment.d.ts +158 -0
  112. package/types/maplestory/api/tms/dto/character/characterDojang.d.ts +32 -0
  113. package/types/maplestory/api/tms/dto/character/characterHexaMatrix.d.ts +48 -0
  114. package/types/maplestory/api/tms/dto/character/characterHexaMatrixStat.d.ts +78 -0
  115. package/types/maplestory/api/tms/dto/character/characterHyperStat.d.ts +70 -0
  116. package/types/maplestory/api/tms/dto/character/characterImage.d.ts +74 -0
  117. package/types/maplestory/api/tms/dto/character/characterItemEquipment.d.ts +864 -0
  118. package/types/maplestory/api/tms/dto/character/characterLinkSkill.d.ts +78 -0
  119. package/types/maplestory/api/tms/dto/character/characterPetEquipment.d.ts +230 -0
  120. package/types/maplestory/api/tms/dto/character/characterPopularity.d.ts +16 -0
  121. package/types/maplestory/api/tms/dto/character/characterPropensity.d.ts +36 -0
  122. package/types/maplestory/api/tms/dto/character/characterSetEffect.d.ts +66 -0
  123. package/types/maplestory/api/tms/dto/character/characterSkill.d.ts +54 -0
  124. package/types/maplestory/api/tms/dto/character/characterStat.d.ts +38 -0
  125. package/types/maplestory/api/tms/dto/character/characterSymbolEquipment.d.ts +86 -0
  126. package/types/maplestory/api/tms/dto/character/characterVMatrix.d.ts +62 -0
  127. package/types/maplestory/api/tms/dto/guild/guild.d.ts +12 -0
  128. package/types/maplestory/api/tms/dto/guild/guildBasic.d.ts +78 -0
  129. package/types/maplestory/api/tms/dto/union/union.d.ts +32 -0
  130. package/types/maplestory/api/tms/dto/union/unionArtifact.d.ts +76 -0
  131. package/types/maplestory/api/tms/dto/union/unionRaider.d.ts +147 -0
  132. package/types/maplestory/api/tms/index.d.ts +27 -0
  133. package/types/maplestory/api/tms/mapleStoryApi.d.ts +364 -0
  134. package/types/maplestory/api/tms/response/character/characterAbilityBody.d.ts +19 -0
  135. package/types/maplestory/api/tms/response/character/characterAndroidEquipmentBody.d.ts +76 -0
  136. package/types/maplestory/api/tms/response/character/characterBasicBody.d.ts +16 -0
  137. package/types/maplestory/api/tms/response/character/characterBeautyEquipmentBody.d.ts +30 -0
  138. package/types/maplestory/api/tms/response/character/characterBody.d.ts +3 -0
  139. package/types/maplestory/api/tms/response/character/characterCashItemEquipmentBody.d.ts +39 -0
  140. package/types/maplestory/api/tms/response/character/characterDojangBody.d.ts +8 -0
  141. package/types/maplestory/api/tms/response/character/characterHexaMatrixBody.d.ts +13 -0
  142. package/types/maplestory/api/tms/response/character/characterHexaMatrixStatBody.d.ts +20 -0
  143. package/types/maplestory/api/tms/response/character/characterHyperStatBody.d.ts +18 -0
  144. package/types/maplestory/api/tms/response/character/characterItemEquipmentBody.d.ts +195 -0
  145. package/types/maplestory/api/tms/response/character/characterLinkSkillBody.d.ts +20 -0
  146. package/types/maplestory/api/tms/response/character/characterPetEquipmentBody.d.ts +56 -0
  147. package/types/maplestory/api/tms/response/character/characterPopularityBody.d.ts +4 -0
  148. package/types/maplestory/api/tms/response/character/characterPropensityBody.d.ts +9 -0
  149. package/types/maplestory/api/tms/response/character/characterSetEffectBody.d.ts +18 -0
  150. package/types/maplestory/api/tms/response/character/characterSkillBody.d.ts +14 -0
  151. package/types/maplestory/api/tms/response/character/characterStatBody.d.ts +10 -0
  152. package/types/maplestory/api/tms/response/character/characterSymbolEquipmentBody.d.ts +22 -0
  153. package/types/maplestory/api/tms/response/character/characterVMatrixBody.d.ts +16 -0
  154. package/types/maplestory/api/tms/response/guild/guildBasicBody.d.ts +20 -0
  155. package/types/maplestory/api/tms/response/guild/guildBody.d.ts +3 -0
  156. package/types/maplestory/api/tms/response/union/unionArtifactBody.d.ts +19 -0
  157. package/types/maplestory/api/tms/response/union/unionBody.d.ts +8 -0
  158. package/types/maplestory/api/tms/response/union/unionRaiderBody.d.ts +38 -0
@@ -0,0 +1,864 @@
1
+ import * as base from '../../../common/dto/character/characterItemEquipment';
2
+ import { CharacterItemEquipmentAddOptionBody, CharacterItemEquipmentBaseOptionBody, CharacterItemEquipmentBody, CharacterItemEquipmentDragonInfoBody, CharacterItemEquipmentEtcOptionBody, CharacterItemEquipmentExceptionalOptionBody, CharacterItemEquipmentInfoBody, CharacterItemEquipmentMechanicInfoBody, CharacterItemEquipmentStarforceOptionBody, CharacterItemEquipmentTitleBody, CharacterItemEquipmentTotalOptionBody } from '../../response/character/characterItemEquipmentBody';
3
+ /**
4
+ * 角色已裝備道具資訊
5
+ */
6
+ export declare class CharacterItemEquipmentDto extends base.CharacterItemEquipmentDto {
7
+ /**
8
+ * 要搜尋的日期 (TST,每日資料中的小時與分鐘將顯示為 0)
9
+ */
10
+ date: Date | null;
11
+ /**
12
+ * 角色性別
13
+ */
14
+ characterGender: string | null;
15
+ /**
16
+ * 角色職業
17
+ */
18
+ characterClass: string | null;
19
+ /**
20
+ * 目前套用的道具預設編號
21
+ */
22
+ presetNo: number | null;
23
+ /**
24
+ * 道具資訊
25
+ */
26
+ itemEquipment: CharacterItemEquipmentInfoDto[];
27
+ /**
28
+ * 預設 1 的道具資訊
29
+ */
30
+ itemEquipmentPreset1: CharacterItemEquipmentInfoDto[];
31
+ /**
32
+ * 預設 2 的道具資訊
33
+ */
34
+ itemEquipmentPreset2: CharacterItemEquipmentInfoDto[];
35
+ /**
36
+ * 預設 3 的道具資訊
37
+ */
38
+ itemEquipmentPreset3: CharacterItemEquipmentInfoDto[];
39
+ /**
40
+ * 稱號資訊
41
+ */
42
+ title: CharacterItemEquipmentTitleDto | null;
43
+ /**
44
+ * 龍魔導士的龍道具資訊 (僅在龍魔導士時回應)
45
+ */
46
+ dragonEquipment: CharacterItemEquipmentDragonInfoDto[];
47
+ /**
48
+ * 機甲戰神道具資訊 (僅在機甲戰神時回應)
49
+ */
50
+ mechanicEquipment: CharacterItemEquipmentMechanicInfoDto[];
51
+ constructor(obj: CharacterItemEquipmentBody);
52
+ }
53
+ /**
54
+ * 稱號資訊
55
+ */
56
+ export declare class CharacterItemEquipmentTitleDto extends base.CharacterItemEquipmentTitleDto {
57
+ /**
58
+ * 稱號道具名稱
59
+ */
60
+ titleName: string | null;
61
+ /**
62
+ * 稱號圖示
63
+ */
64
+ titleIcon: string | null;
65
+ /**
66
+ * 稱號描述
67
+ */
68
+ titleDescription: string | null;
69
+ /**
70
+ * 稱號有效期間 (TST)
71
+ */
72
+ dateExpire: Date | null;
73
+ /**
74
+ * Whether the title is expired
75
+ */
76
+ isExpired: boolean | null;
77
+ /**
78
+ * 稱號選項有效期間 (expired:已到期,null:無限期) (TST)
79
+ */
80
+ dateOptionExpire: Date | null;
81
+ /**
82
+ * Whether the title option is expired
83
+ */
84
+ isOptionExpired: boolean | null;
85
+ /**
86
+ * 外型設定中已登錄稱號的道具名稱
87
+ */
88
+ titleShapeName: string | null;
89
+ /**
90
+ * 外型設定中已登錄稱號的圖示
91
+ */
92
+ titleShapeIcon: string | null;
93
+ /**
94
+ * 外型設定中已登錄稱號的描述
95
+ */
96
+ titleShapeDescription: string | null;
97
+ constructor(obj: CharacterItemEquipmentTitleBody);
98
+ }
99
+ /**
100
+ * 附加道具選項
101
+ */
102
+ export declare class CharacterItemEquipmentAddOptionDto extends base.CharacterItemEquipmentAddOptionDto {
103
+ /**
104
+ * 力量 (STR)
105
+ */
106
+ str: string;
107
+ /**
108
+ * 敏捷 (DEX)
109
+ */
110
+ dex: string;
111
+ /**
112
+ * 智力 (INT)
113
+ */
114
+ int: string;
115
+ /**
116
+ * 幸運 (LUK)
117
+ */
118
+ luk: string;
119
+ /**
120
+ * 最大體力 (HP)
121
+ */
122
+ maxHp: string;
123
+ /**
124
+ * 最大 MP
125
+ */
126
+ maxMp: string;
127
+ /**
128
+ * 攻擊力
129
+ */
130
+ attackPower: string;
131
+ /**
132
+ * 魔力
133
+ */
134
+ magicPower: string;
135
+ /**
136
+ * 防禦力
137
+ */
138
+ armor: string;
139
+ /**
140
+ * 移動速度
141
+ */
142
+ speed: string;
143
+ /**
144
+ * 跳躍力
145
+ */
146
+ jump: string;
147
+ /**
148
+ * 對首領傷害增加 (%)
149
+ */
150
+ bossDamage: string;
151
+ /**
152
+ * 傷害 (%)
153
+ */
154
+ damage: string;
155
+ /**
156
+ * 全部能力值 (%)
157
+ */
158
+ allStat: string;
159
+ /**
160
+ * 裝備等級減少
161
+ */
162
+ equipmentLevelDecrease: number;
163
+ constructor(obj: CharacterItemEquipmentAddOptionBody);
164
+ }
165
+ /**
166
+ * 道具基本選項資訊
167
+ */
168
+ export declare class CharacterItemEquipmentBaseOptionDto extends base.CharacterItemEquipmentBaseOptionDto {
169
+ /**
170
+ * 力量 (STR)
171
+ */
172
+ str: string;
173
+ /**
174
+ * 敏捷 (DEX)
175
+ */
176
+ dex: string;
177
+ /**
178
+ * 智力 (INT)
179
+ */
180
+ int: string;
181
+ /**
182
+ * 幸運 (LUK)
183
+ */
184
+ luk: string;
185
+ /**
186
+ * 最大體力 (HP)
187
+ */
188
+ maxHp: string;
189
+ /**
190
+ * 最大 MP
191
+ */
192
+ maxMp: string;
193
+ /**
194
+ * 攻擊力
195
+ */
196
+ attackPower: string;
197
+ /**
198
+ * 魔力
199
+ */
200
+ magicPower: string;
201
+ /**
202
+ * 防禦力
203
+ */
204
+ armor: string;
205
+ /**
206
+ * 移動速度
207
+ */
208
+ speed: string;
209
+ /**
210
+ * 跳躍力
211
+ */
212
+ jump: string;
213
+ /**
214
+ * 對首領傷害增加 (%)
215
+ */
216
+ bossDamage: string;
217
+ /**
218
+ * 無視怪物防禦力 (%)
219
+ */
220
+ ignoreMonsterArmor: string;
221
+ /**
222
+ * 全部能力值 (%)
223
+ */
224
+ allStat: string;
225
+ /**
226
+ * 最大體力 (HP) (%)
227
+ */
228
+ maxHpRate: string;
229
+ /**
230
+ * 最大 MP (%)
231
+ */
232
+ maxMpRate: string;
233
+ /**
234
+ * 裝備基本等級
235
+ */
236
+ baseEquipmentLevel: number;
237
+ constructor(obj: CharacterItemEquipmentBaseOptionBody);
238
+ }
239
+ /**
240
+ * 道具其他選項資訊
241
+ */
242
+ export declare class CharacterItemEquipmentEtcOptionDto extends base.CharacterItemEquipmentEtcOptionDto {
243
+ /**
244
+ * 力量 (STR)
245
+ */
246
+ str: string;
247
+ /**
248
+ * 敏捷 (DEX)
249
+ */
250
+ dex: string;
251
+ /**
252
+ * 智力 (INT)
253
+ */
254
+ int: string;
255
+ /**
256
+ * 幸運 (LUK)
257
+ */
258
+ luk: string;
259
+ /**
260
+ * 最大體力 (HP)
261
+ */
262
+ maxHp: string;
263
+ /**
264
+ * 最大 MP
265
+ */
266
+ maxMp: string;
267
+ /**
268
+ * 攻擊力
269
+ */
270
+ attackPower: string;
271
+ /**
272
+ * 魔力
273
+ */
274
+ magicPower: string;
275
+ /**
276
+ * 防禦力
277
+ */
278
+ armor: string;
279
+ /**
280
+ * 移動速度
281
+ */
282
+ speed: string;
283
+ /**
284
+ * 跳躍力
285
+ */
286
+ jump: string;
287
+ constructor(obj: CharacterItemEquipmentEtcOptionBody);
288
+ }
289
+ /**
290
+ * 道具特殊選項資訊
291
+ */
292
+ export declare class CharacterItemEquipmentExceptionalOptionDto extends base.CharacterItemEquipmentExceptionalOptionDto {
293
+ /**
294
+ * 力量 (STR)
295
+ */
296
+ str: string;
297
+ /**
298
+ * 敏捷 (DEX)
299
+ */
300
+ dex: string;
301
+ /**
302
+ * 智力 (INT)
303
+ */
304
+ int: string;
305
+ /**
306
+ * 幸運 (LUK)
307
+ */
308
+ luk: string;
309
+ /**
310
+ * 最大體力 (HP)
311
+ */
312
+ maxHp: string;
313
+ /**
314
+ * 最大 MP
315
+ */
316
+ maxMp: string;
317
+ /**
318
+ * 攻擊力
319
+ */
320
+ attackPower: string;
321
+ /**
322
+ * 魔力
323
+ */
324
+ magicPower: string;
325
+ /**
326
+ * 已套用的卓越強化次數
327
+ */
328
+ exceptionalUpgrade: number;
329
+ constructor(obj: CharacterItemEquipmentExceptionalOptionBody);
330
+ }
331
+ /**
332
+ * 道具星星力量資訊
333
+ */
334
+ export declare class CharacterItemEquipmentStarforceOptionDto extends base.CharacterItemEquipmentStarforceOptionDto {
335
+ /**
336
+ * 力量 (STR)
337
+ */
338
+ str: string;
339
+ /**
340
+ * 敏捷 (DEX)
341
+ */
342
+ dex: string;
343
+ /**
344
+ * 智力 (INT)
345
+ */
346
+ int: string;
347
+ /**
348
+ * 幸運 (LUK)
349
+ */
350
+ luk: string;
351
+ /**
352
+ * 最大體力 (HP)
353
+ */
354
+ maxHp: string;
355
+ /**
356
+ * 最大 MP
357
+ */
358
+ maxMp: string;
359
+ /**
360
+ * 攻擊力
361
+ */
362
+ attackPower: string;
363
+ /**
364
+ * 魔力
365
+ */
366
+ magicPower: string;
367
+ /**
368
+ * 防禦力
369
+ */
370
+ armor: string;
371
+ /**
372
+ * 移動速度
373
+ */
374
+ speed: string;
375
+ /**
376
+ * 跳躍力
377
+ */
378
+ jump: string;
379
+ constructor(obj: CharacterItemEquipmentStarforceOptionBody);
380
+ }
381
+ /**
382
+ * 道具最終選項資訊
383
+ */
384
+ export declare class CharacterItemEquipmentTotalOptionDto extends base.CharacterItemEquipmentTotalOptionDto {
385
+ /**
386
+ * 力量 (STR)
387
+ */
388
+ str: string;
389
+ /**
390
+ * 敏捷 (DEX)
391
+ */
392
+ dex: string;
393
+ /**
394
+ * 智力 (INT)
395
+ */
396
+ int: string;
397
+ /**
398
+ * 幸運 (LUK)
399
+ */
400
+ luk: string;
401
+ /**
402
+ * 最大體力 (HP)
403
+ */
404
+ maxHp: string;
405
+ /**
406
+ * 最大 MP
407
+ */
408
+ maxMp: string;
409
+ /**
410
+ * 攻擊力
411
+ */
412
+ attackPower: string;
413
+ /**
414
+ * 魔力
415
+ */
416
+ magicPower: string;
417
+ /**
418
+ * 防禦力
419
+ */
420
+ armor: string;
421
+ /**
422
+ * 移動速度
423
+ */
424
+ speed: string;
425
+ /**
426
+ * 跳躍力
427
+ */
428
+ jump: string;
429
+ /**
430
+ * 對首領傷害增加 (%)
431
+ */
432
+ bossDamage: string;
433
+ /**
434
+ * 無視怪物防禦力 (%)
435
+ */
436
+ ignoreMonsterArmor: string;
437
+ /**
438
+ * 全部能力值 (%)
439
+ */
440
+ allStat: string;
441
+ /**
442
+ * 傷害 (%)
443
+ */
444
+ damage: string;
445
+ /**
446
+ * 裝備等級減少
447
+ */
448
+ equipmentLevelDecrease: number;
449
+ /**
450
+ * 最大體力 (HP) (%)
451
+ */
452
+ maxHpRate: string;
453
+ /**
454
+ * 最大 MP (%)
455
+ */
456
+ maxMpRate: string;
457
+ constructor(obj: CharacterItemEquipmentTotalOptionBody);
458
+ }
459
+ /**
460
+ * 龍魔導士的龍道具資訊
461
+ */
462
+ export declare class CharacterItemEquipmentDragonInfoDto extends base.CharacterItemEquipmentDragonInfoDto {
463
+ /**
464
+ * 道具部位名稱
465
+ */
466
+ itemEquipmentPart: string;
467
+ /**
468
+ * 道具欄位位置
469
+ */
470
+ itemEquipmentSlot: string;
471
+ /**
472
+ * 道具名稱
473
+ */
474
+ itemName: string;
475
+ /**
476
+ * 道具圖示
477
+ */
478
+ itemIcon: string;
479
+ /**
480
+ * 道具描述
481
+ */
482
+ itemDescription: string | null;
483
+ /**
484
+ * 道具外型
485
+ */
486
+ itemShapeName: string;
487
+ /**
488
+ * 道具外型圖示
489
+ */
490
+ itemShapeIcon: string;
491
+ /**
492
+ * 性別限定
493
+ */
494
+ itemGender: string | null;
495
+ /**
496
+ * 道具最終選項資訊
497
+ */
498
+ itemTotalOption: CharacterItemEquipmentTotalOptionDto;
499
+ /**
500
+ * 道具基本選項資訊
501
+ */
502
+ itemBaseOption: CharacterItemEquipmentBaseOptionDto;
503
+ /**
504
+ * 裝備等級增加
505
+ */
506
+ equipmentLevelIncrease: number;
507
+ /**
508
+ * 道具特殊選項資訊
509
+ */
510
+ itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
511
+ /**
512
+ * 附加道具選項
513
+ */
514
+ itemAddOption: CharacterItemEquipmentAddOptionDto;
515
+ /**
516
+ * 成長經驗值
517
+ */
518
+ growthExp: number;
519
+ /**
520
+ * 成長等級
521
+ */
522
+ growthLevel: number;
523
+ /**
524
+ * 強化次數
525
+ */
526
+ scrollUpgrade: string;
527
+ /**
528
+ * 可使用剪刀的次數 (不可交易道具、可交易但從未使用剪刀的道具:255)
529
+ */
530
+ cuttableCount: string;
531
+ /**
532
+ * 黃金鐵鎚精煉 (true:已套用,false:未套用)
533
+ */
534
+ goldenHammerFlag: string;
535
+ /**
536
+ * 道具可復原次數
537
+ */
538
+ scrollResilienceCount: string;
539
+ /**
540
+ * 道具可升級次數
541
+ */
542
+ scrollUpgradeableCount: string;
543
+ /**
544
+ * 靈魂名稱
545
+ */
546
+ soulName: string | null;
547
+ /**
548
+ * 靈魂選項
549
+ */
550
+ soulOption: string | null;
551
+ /**
552
+ * 道具其他選項資訊
553
+ */
554
+ itemEtcOption: CharacterItemEquipmentEtcOptionDto;
555
+ /**
556
+ * 強化階級
557
+ */
558
+ starforce: string;
559
+ /**
560
+ * 驚異道具強化卷軸 (true:已使用,false:未使用)
561
+ */
562
+ starforceScrollFlag: string;
563
+ /**
564
+ * 道具星星力量資訊
565
+ */
566
+ itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
567
+ /**
568
+ * 特殊戒指等級
569
+ */
570
+ specialRingLevel: number;
571
+ /**
572
+ * 道具有效期間 (TST)
573
+ */
574
+ dateExpire: Date | null;
575
+ /**
576
+ * Whether the equipment is expired
577
+ */
578
+ isExpired: boolean | null;
579
+ constructor(obj: CharacterItemEquipmentDragonInfoBody);
580
+ }
581
+ /**
582
+ * 機甲戰神道具資訊
583
+ */
584
+ export declare class CharacterItemEquipmentMechanicInfoDto extends base.CharacterItemEquipmentMechanicInfoDto {
585
+ /**
586
+ * 道具部位名稱
587
+ */
588
+ itemEquipmentPart: string;
589
+ /**
590
+ * 道具欄位位置
591
+ */
592
+ itemEquipmentSlot: string;
593
+ /**
594
+ * 道具名稱
595
+ */
596
+ itemName: string;
597
+ /**
598
+ * 道具圖示
599
+ */
600
+ itemIcon: string;
601
+ /**
602
+ * 道具描述
603
+ */
604
+ itemDescription: string | null;
605
+ /**
606
+ * 道具外型
607
+ */
608
+ itemShapeName: string;
609
+ /**
610
+ * 道具外型圖示
611
+ */
612
+ itemShapeIcon: string;
613
+ /**
614
+ * 性別限定
615
+ */
616
+ itemGender: string | null;
617
+ /**
618
+ * 道具最終選項資訊
619
+ */
620
+ itemTotalOption: CharacterItemEquipmentTotalOptionDto;
621
+ /**
622
+ * 道具基本選項資訊
623
+ */
624
+ itemBaseOption: CharacterItemEquipmentBaseOptionDto;
625
+ /**
626
+ * 裝備等級增加
627
+ */
628
+ equipmentLevelIncrease: number;
629
+ /**
630
+ * 道具特殊選項資訊
631
+ */
632
+ itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
633
+ /**
634
+ * 附加道具選項
635
+ */
636
+ itemAddOption: CharacterItemEquipmentAddOptionDto;
637
+ /**
638
+ * 成長經驗值
639
+ */
640
+ growthExp: number;
641
+ /**
642
+ * 成長等級
643
+ */
644
+ growthLevel: number;
645
+ /**
646
+ * 強化次數
647
+ */
648
+ scrollUpgrade: string;
649
+ /**
650
+ * 可使用剪刀的次數 (不可交易道具、可交易但從未使用剪刀的道具:255)
651
+ */
652
+ cuttableCount: string;
653
+ /**
654
+ * 黃金鐵鎚精煉 (true:已套用,false:未套用)
655
+ */
656
+ goldenHammerFlag: string;
657
+ /**
658
+ * 道具可復原次數
659
+ */
660
+ scrollResilienceCount: string;
661
+ /**
662
+ * 道具可升級次數
663
+ */
664
+ scrollUpgradeableCount: string;
665
+ /**
666
+ * 靈魂名稱
667
+ */
668
+ soulName: string | null;
669
+ /**
670
+ * 靈魂選項
671
+ */
672
+ soulOption: string | null;
673
+ /**
674
+ * 道具其他選項資訊
675
+ */
676
+ itemEtcOption: CharacterItemEquipmentEtcOptionDto;
677
+ /**
678
+ * 強化階級
679
+ */
680
+ starforce: string;
681
+ /**
682
+ * 驚異道具強化卷軸 (true:已使用,false:未使用)
683
+ */
684
+ starforceScrollFlag: string;
685
+ /**
686
+ * 道具星星力量資訊
687
+ */
688
+ itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
689
+ /**
690
+ * 特殊戒指等級
691
+ */
692
+ specialRingLevel: number;
693
+ /**
694
+ * 道具有效期間 (TST)
695
+ */
696
+ dateExpire: Date | null;
697
+ /**
698
+ * Whether the equipment is expired
699
+ */
700
+ isExpired: boolean | null;
701
+ constructor(obj: CharacterItemEquipmentMechanicInfoBody);
702
+ }
703
+ /**
704
+ * 道具資訊
705
+ */
706
+ export declare class CharacterItemEquipmentInfoDto extends base.CharacterItemEquipmentInfoDto {
707
+ /**
708
+ * 道具部位名稱
709
+ */
710
+ itemEquipmentPart: string;
711
+ /**
712
+ * 道具欄位位置
713
+ */
714
+ itemEquipmentSlot: string;
715
+ /**
716
+ * 道具名稱
717
+ */
718
+ itemName: string;
719
+ /**
720
+ * 道具圖示
721
+ */
722
+ itemIcon: string;
723
+ /**
724
+ * 道具描述
725
+ */
726
+ itemDescription: string | null;
727
+ /**
728
+ * 道具外型
729
+ */
730
+ itemShapeName: string;
731
+ /**
732
+ * 道具外型圖示
733
+ */
734
+ itemShapeIcon: string;
735
+ /**
736
+ * 性別限定
737
+ */
738
+ itemGender: string | null;
739
+ /**
740
+ * 道具最終選項資訊
741
+ */
742
+ itemTotalOption: CharacterItemEquipmentTotalOptionDto;
743
+ /**
744
+ * 道具基本選項資訊
745
+ */
746
+ itemBaseOption: CharacterItemEquipmentBaseOptionDto;
747
+ /**
748
+ * 潛在能力封印狀態 (true:已封印,false:未封印)
749
+ */
750
+ potentialOptionFlag: string | null;
751
+ /**
752
+ * 附加潛在能力封印狀態 (true:已封印,false:未封印)
753
+ */
754
+ additionalPotentialOptionFlag: string | null;
755
+ /**
756
+ * 潛在能力階級
757
+ */
758
+ potentialOptionGrade: string | null;
759
+ /**
760
+ * 附加潛在能力階級
761
+ */
762
+ additionalPotentialOptionGrade: string | null;
763
+ /**
764
+ * 第一潛在能力選項
765
+ */
766
+ potentialOption1: string | null;
767
+ /**
768
+ * 第二潛在能力選項
769
+ */
770
+ potentialOption2: string | null;
771
+ /**
772
+ * 第三潛在能力選項
773
+ */
774
+ potentialOption3: string | null;
775
+ /**
776
+ * 第一附加潛在能力選項
777
+ */
778
+ additionalPotentialOption1: string | null;
779
+ /**
780
+ * 第二附加潛在能力選項
781
+ */
782
+ additionalPotentialOption2: string | null;
783
+ /**
784
+ * 第三附加潛在能力選項
785
+ */
786
+ additionalPotentialOption3: string | null;
787
+ /**
788
+ * 裝備等級增加
789
+ */
790
+ equipmentLevelIncrease: number;
791
+ /**
792
+ * 道具特殊選項資訊
793
+ */
794
+ itemExceptionalOption: CharacterItemEquipmentExceptionalOptionDto;
795
+ /**
796
+ * 附加道具選項
797
+ */
798
+ itemAddOption: CharacterItemEquipmentAddOptionDto;
799
+ /**
800
+ * 成長經驗值
801
+ */
802
+ growthExp: number;
803
+ /**
804
+ * 成長等級
805
+ */
806
+ growthLevel: number;
807
+ /**
808
+ * 強化次數
809
+ */
810
+ scrollUpgrade: string;
811
+ /**
812
+ * 可使用剪刀的次數 (不可交易道具、可交易但從未使用剪刀的道具:255)
813
+ */
814
+ cuttableCount: string;
815
+ /**
816
+ * 黃金鐵鎚精煉 (true:已套用,false:未套用)
817
+ */
818
+ goldenHammerFlag: string;
819
+ /**
820
+ * 道具可復原次數
821
+ */
822
+ scrollResilienceCount: string;
823
+ /**
824
+ * 道具可升級次數
825
+ */
826
+ scrollUpgradeableCount: string;
827
+ /**
828
+ * 靈魂名稱
829
+ */
830
+ soulName: string | null;
831
+ /**
832
+ * 靈魂選項
833
+ */
834
+ soulOption: string | null;
835
+ /**
836
+ * 道具其他選項資訊
837
+ */
838
+ itemEtcOption: CharacterItemEquipmentEtcOptionDto;
839
+ /**
840
+ * 強化階級
841
+ */
842
+ starforce: string;
843
+ /**
844
+ * 驚奇裝備強化卷軸 (true:已使用,false:未使用)
845
+ */
846
+ starforceScrollFlag: string;
847
+ /**
848
+ * 道具星星力量資訊
849
+ */
850
+ itemStarforceOption: CharacterItemEquipmentStarforceOptionDto;
851
+ /**
852
+ * 特殊戒指等級
853
+ */
854
+ specialRingLevel: number;
855
+ /**
856
+ * 道具有效期間 (TST)
857
+ */
858
+ dateExpire: Date | null;
859
+ /**
860
+ * Whether the equipment is expired
861
+ */
862
+ isExpired: boolean | null;
863
+ constructor(obj: CharacterItemEquipmentInfoBody);
864
+ }