maplestory-openapi 3.3.0 → 3.4.1
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/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +11 -1
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +1 -1
- 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/dayjs/plugin/utc.js +1 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +11 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.js +11 -1
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +1 -1
- 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/dayjs/plugin/utc.js +1 -1
- 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/kms/dto/character/characterItemEquipment.d.ts +8 -0
- package/types/maplestory/api/kms/dto/character/characterRingExchangeSkillEquipment.d.ts +8 -0
- package/types/maplestory/api/kms/dto/character/characterSkill.d.ts +1 -1
- package/types/maplestory/api/kms/mapleStoryApi.d.ts +1 -1
- package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +2 -0
- package/types/maplestory/api/kms/response/character/characterRingExchangeSkillEquipmentBody.d.ts +2 -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,195 @@
|
|
|
1
|
+
export type CharacterItemEquipmentBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_gender: string | null;
|
|
4
|
+
character_class: string | null;
|
|
5
|
+
preset_no: number | null;
|
|
6
|
+
item_equipment: CharacterItemEquipmentInfoBody[];
|
|
7
|
+
item_equipment_preset_1: CharacterItemEquipmentInfoBody[] | null;
|
|
8
|
+
item_equipment_preset_2: CharacterItemEquipmentInfoBody[] | null;
|
|
9
|
+
item_equipment_preset_3: CharacterItemEquipmentInfoBody[] | null;
|
|
10
|
+
title: CharacterItemEquipmentTitleBody | null;
|
|
11
|
+
dragon_equipment: CharacterItemEquipmentDragonInfoBody[];
|
|
12
|
+
mechanic_equipment: CharacterItemEquipmentMechanicInfoBody[];
|
|
13
|
+
};
|
|
14
|
+
export type CharacterItemEquipmentInfoBody = {
|
|
15
|
+
item_equipment_part: string;
|
|
16
|
+
item_equipment_slot: string;
|
|
17
|
+
item_name: string;
|
|
18
|
+
item_icon: string;
|
|
19
|
+
item_description: string | null;
|
|
20
|
+
item_shape_name: string;
|
|
21
|
+
item_shape_icon: string;
|
|
22
|
+
item_gender: string | null;
|
|
23
|
+
item_total_option: CharacterItemEquipmentTotalOptionBody;
|
|
24
|
+
item_base_option: CharacterItemEquipmentBaseOptionBody;
|
|
25
|
+
potential_option_flag: string | null;
|
|
26
|
+
additional_potential_option_flag: string | null;
|
|
27
|
+
potential_option_grade: string | null;
|
|
28
|
+
additional_potential_option_grade: string | null;
|
|
29
|
+
potential_option_1: string | null;
|
|
30
|
+
potential_option_2: string | null;
|
|
31
|
+
potential_option_3: string | null;
|
|
32
|
+
additional_potential_option_1: string | null;
|
|
33
|
+
additional_potential_option_2: string | null;
|
|
34
|
+
additional_potential_option_3: string | null;
|
|
35
|
+
equipment_level_increase: number;
|
|
36
|
+
item_exceptional_option: CharacterItemEquipmentExceptionalOptionBody;
|
|
37
|
+
item_add_option: CharacterItemEquipmentAddOptionBody;
|
|
38
|
+
growth_exp: number;
|
|
39
|
+
growth_level: number;
|
|
40
|
+
scroll_upgrade: string;
|
|
41
|
+
cuttable_count: string;
|
|
42
|
+
golden_hammer_flag: string;
|
|
43
|
+
scroll_resilience_count: string;
|
|
44
|
+
scroll_upgradeable_count: string;
|
|
45
|
+
soul_name: string | null;
|
|
46
|
+
soul_option: string | null;
|
|
47
|
+
item_etc_option: CharacterItemEquipmentEtcOptionBody;
|
|
48
|
+
starforce: string;
|
|
49
|
+
starforce_scroll_flag: string;
|
|
50
|
+
item_starforce_option: CharacterItemEquipmentStarforceOptionBody;
|
|
51
|
+
special_ring_level: number;
|
|
52
|
+
date_expire: string | null;
|
|
53
|
+
};
|
|
54
|
+
export type CharacterItemEquipmentMechanicInfoBody = {
|
|
55
|
+
item_equipment_part: string;
|
|
56
|
+
item_equipment_slot: string;
|
|
57
|
+
item_name: string;
|
|
58
|
+
item_icon: string;
|
|
59
|
+
item_description: string | null;
|
|
60
|
+
item_shape_name: string;
|
|
61
|
+
item_shape_icon: string;
|
|
62
|
+
item_gender: string | null;
|
|
63
|
+
item_total_option: CharacterItemEquipmentOptionBody;
|
|
64
|
+
item_base_option: CharacterItemEquipmentBaseOptionBody;
|
|
65
|
+
equipment_level_increase: number;
|
|
66
|
+
item_exceptional_option: CharacterItemEquipmentExceptionalOptionBody;
|
|
67
|
+
item_add_option: CharacterItemEquipmentAddOptionBody;
|
|
68
|
+
growth_exp: number;
|
|
69
|
+
growth_level: number;
|
|
70
|
+
scroll_upgrade: string;
|
|
71
|
+
cuttable_count: string;
|
|
72
|
+
golden_hammer_flag: string;
|
|
73
|
+
scroll_resilience_count: string;
|
|
74
|
+
scroll_upgradeable_count: string;
|
|
75
|
+
soul_name: string | null;
|
|
76
|
+
soul_option: string | null;
|
|
77
|
+
item_etc_option: CharacterItemEquipmentOptionBody;
|
|
78
|
+
starforce: string;
|
|
79
|
+
starforce_scroll_flag: string;
|
|
80
|
+
item_starforce_option: CharacterItemEquipmentOptionBody;
|
|
81
|
+
special_ring_level: number;
|
|
82
|
+
date_expire: string | null;
|
|
83
|
+
};
|
|
84
|
+
export type CharacterItemEquipmentDragonInfoBody = CharacterItemEquipmentMechanicInfoBody;
|
|
85
|
+
export type CharacterItemEquipmentOptionBody = {
|
|
86
|
+
str: string;
|
|
87
|
+
dex: string;
|
|
88
|
+
int: string;
|
|
89
|
+
luk: string;
|
|
90
|
+
max_hp: string;
|
|
91
|
+
max_mp: string;
|
|
92
|
+
attack_power: string;
|
|
93
|
+
magic_power: string;
|
|
94
|
+
armor: string;
|
|
95
|
+
speed: string;
|
|
96
|
+
jump: string;
|
|
97
|
+
boss_damage: string;
|
|
98
|
+
ignore_monster_armor: string;
|
|
99
|
+
all_stat: string;
|
|
100
|
+
damage: string;
|
|
101
|
+
equipment_level_decrease: number;
|
|
102
|
+
max_hp_rate: string;
|
|
103
|
+
max_mp_rate: string;
|
|
104
|
+
};
|
|
105
|
+
export type CharacterItemEquipmentExceptionalOptionBody = {
|
|
106
|
+
str: string;
|
|
107
|
+
dex: string;
|
|
108
|
+
int: string;
|
|
109
|
+
luk: string;
|
|
110
|
+
max_hp: string;
|
|
111
|
+
max_mp: string;
|
|
112
|
+
attack_power: string;
|
|
113
|
+
magic_power: string;
|
|
114
|
+
exceptional_upgrade: number | null;
|
|
115
|
+
};
|
|
116
|
+
export type CharacterItemEquipmentTotalOptionBody = {
|
|
117
|
+
str: string;
|
|
118
|
+
dex: string;
|
|
119
|
+
int: string;
|
|
120
|
+
luk: string;
|
|
121
|
+
max_hp: string;
|
|
122
|
+
max_mp: string;
|
|
123
|
+
attack_power: string;
|
|
124
|
+
magic_power: string;
|
|
125
|
+
armor: string;
|
|
126
|
+
speed: string;
|
|
127
|
+
jump: string;
|
|
128
|
+
boss_damage: string;
|
|
129
|
+
ignore_monster_armor: string;
|
|
130
|
+
all_stat: string;
|
|
131
|
+
damage: string;
|
|
132
|
+
equipment_level_decrease: number;
|
|
133
|
+
max_hp_rate: string;
|
|
134
|
+
max_mp_rate: string;
|
|
135
|
+
};
|
|
136
|
+
export type CharacterItemEquipmentBaseOptionBody = {
|
|
137
|
+
str: string;
|
|
138
|
+
dex: string;
|
|
139
|
+
int: string;
|
|
140
|
+
luk: string;
|
|
141
|
+
max_hp: string;
|
|
142
|
+
max_mp: string;
|
|
143
|
+
attack_power: string;
|
|
144
|
+
magic_power: string;
|
|
145
|
+
armor: string;
|
|
146
|
+
speed: string;
|
|
147
|
+
jump: string;
|
|
148
|
+
boss_damage: string;
|
|
149
|
+
ignore_monster_armor: string;
|
|
150
|
+
all_stat: string;
|
|
151
|
+
max_hp_rate: string;
|
|
152
|
+
max_mp_rate: string;
|
|
153
|
+
base_equipment_level: number;
|
|
154
|
+
};
|
|
155
|
+
export type CharacterItemEquipmentAddOptionBody = {
|
|
156
|
+
str: string;
|
|
157
|
+
dex: string;
|
|
158
|
+
int: string;
|
|
159
|
+
luk: string;
|
|
160
|
+
max_hp: string;
|
|
161
|
+
max_mp: string;
|
|
162
|
+
attack_power: string;
|
|
163
|
+
magic_power: string;
|
|
164
|
+
armor: string;
|
|
165
|
+
speed: string;
|
|
166
|
+
jump: string;
|
|
167
|
+
boss_damage: string;
|
|
168
|
+
damage: string;
|
|
169
|
+
all_stat: string;
|
|
170
|
+
equipment_level_decrease: number;
|
|
171
|
+
};
|
|
172
|
+
export type CharacterItemEquipmentEtcOptionBody = {
|
|
173
|
+
str: string;
|
|
174
|
+
dex: string;
|
|
175
|
+
int: string;
|
|
176
|
+
luk: string;
|
|
177
|
+
max_hp: string;
|
|
178
|
+
max_mp: string;
|
|
179
|
+
attack_power: string;
|
|
180
|
+
magic_power: string;
|
|
181
|
+
armor: string;
|
|
182
|
+
speed: string;
|
|
183
|
+
jump: string;
|
|
184
|
+
};
|
|
185
|
+
export type CharacterItemEquipmentStarforceOptionBody = CharacterItemEquipmentEtcOptionBody;
|
|
186
|
+
export type CharacterItemEquipmentTitleBody = {
|
|
187
|
+
title_name: string | null;
|
|
188
|
+
title_icon: string | null;
|
|
189
|
+
title_description: string | null;
|
|
190
|
+
date_expire: string | null;
|
|
191
|
+
date_option_expire: string | null;
|
|
192
|
+
title_shape_name: string | null;
|
|
193
|
+
title_shape_icon: string | null;
|
|
194
|
+
title_shape_description: string | null;
|
|
195
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export type CharacterLinkSkillBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
character_link_skill: CharacterLinkSkillInfoBody[];
|
|
5
|
+
character_link_skill_preset_1: CharacterLinkSkillInfoBody[];
|
|
6
|
+
character_link_skill_preset_2: CharacterLinkSkillInfoBody[];
|
|
7
|
+
character_link_skill_preset_3: CharacterLinkSkillInfoBody[];
|
|
8
|
+
character_owned_link_skill: CharacterLinkSkillInfoBody | null;
|
|
9
|
+
character_owned_link_skill_preset_1: CharacterLinkSkillInfoBody | null;
|
|
10
|
+
character_owned_link_skill_preset_2: CharacterLinkSkillInfoBody | null;
|
|
11
|
+
character_owned_link_skill_preset_3: CharacterLinkSkillInfoBody | null;
|
|
12
|
+
};
|
|
13
|
+
export type CharacterLinkSkillInfoBody = {
|
|
14
|
+
skill_name: string;
|
|
15
|
+
skill_description: string;
|
|
16
|
+
skill_level: number;
|
|
17
|
+
skill_effect: string;
|
|
18
|
+
skill_effect_next: string | null;
|
|
19
|
+
skill_icon: string;
|
|
20
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export type CharacterPetEquipmentBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
pet_1_name: string | null;
|
|
4
|
+
pet_1_nickname: string | null;
|
|
5
|
+
pet_1_icon: string | null;
|
|
6
|
+
pet_1_description: string | null;
|
|
7
|
+
pet_1_equipment: CharacterPetEquipmentItemBody | null;
|
|
8
|
+
pet_1_auto_skill: CharacterPetEquipmentAutoSkillBody | null;
|
|
9
|
+
pet_1_pet_type: string | null;
|
|
10
|
+
pet_1_skill: string[];
|
|
11
|
+
pet_1_date_expire: string | null;
|
|
12
|
+
pet_1_appearance: string | null;
|
|
13
|
+
pet_1_appearance_icon: string | null;
|
|
14
|
+
pet_2_name: string | null;
|
|
15
|
+
pet_2_nickname: string | null;
|
|
16
|
+
pet_2_icon: string | null;
|
|
17
|
+
pet_2_description: string | null;
|
|
18
|
+
pet_2_equipment: CharacterPetEquipmentItemBody | null;
|
|
19
|
+
pet_2_auto_skill: CharacterPetEquipmentAutoSkillBody | null;
|
|
20
|
+
pet_2_pet_type: string | null;
|
|
21
|
+
pet_2_skill: string[];
|
|
22
|
+
pet_2_date_expire: string | null;
|
|
23
|
+
pet_2_appearance: string | null;
|
|
24
|
+
pet_2_appearance_icon: string | null;
|
|
25
|
+
pet_3_name: string | null;
|
|
26
|
+
pet_3_nickname: string | null;
|
|
27
|
+
pet_3_icon: string | null;
|
|
28
|
+
pet_3_description: string | null;
|
|
29
|
+
pet_3_equipment: CharacterPetEquipmentItemBody | null;
|
|
30
|
+
pet_3_auto_skill: CharacterPetEquipmentAutoSkillBody | null;
|
|
31
|
+
pet_3_pet_type: string | null;
|
|
32
|
+
pet_3_skill: string[];
|
|
33
|
+
pet_3_date_expire: string | null;
|
|
34
|
+
pet_3_appearance: string | null;
|
|
35
|
+
pet_3_appearance_icon: string | null;
|
|
36
|
+
};
|
|
37
|
+
export type CharacterPetEquipmentItemBody = {
|
|
38
|
+
item_name: string | null;
|
|
39
|
+
item_icon: string | null;
|
|
40
|
+
item_description: string | null;
|
|
41
|
+
item_option: CharacterPetEquipmentItemOptionBody[];
|
|
42
|
+
scroll_upgrade: number;
|
|
43
|
+
scroll_upgradable: number;
|
|
44
|
+
item_shape: string | null;
|
|
45
|
+
item_shape_icon: string | null;
|
|
46
|
+
};
|
|
47
|
+
export type CharacterPetEquipmentItemOptionBody = {
|
|
48
|
+
option_type: string;
|
|
49
|
+
option_value: string;
|
|
50
|
+
};
|
|
51
|
+
export type CharacterPetEquipmentAutoSkillBody = {
|
|
52
|
+
skill_1: string | null;
|
|
53
|
+
skill_1_icon: string | null;
|
|
54
|
+
skill_2: string | null;
|
|
55
|
+
skill_2_icon: string | null;
|
|
56
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type CharacterPropensityBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
charisma_level: number | null;
|
|
4
|
+
sensibility_level: number | null;
|
|
5
|
+
insight_level: number | null;
|
|
6
|
+
willingness_level: number | null;
|
|
7
|
+
handicraft_level: number | null;
|
|
8
|
+
charm_level: number | null;
|
|
9
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type CharacterSetEffectBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
set_effect: CharacterSetEffectSetBody[];
|
|
4
|
+
};
|
|
5
|
+
export type CharacterSetEffectSetBody = {
|
|
6
|
+
set_name: string;
|
|
7
|
+
total_set_count: number;
|
|
8
|
+
set_effect_info: CharacterSetEffectInfoBody[];
|
|
9
|
+
set_option_full: CharacterSetEffectOptionFullBody[];
|
|
10
|
+
};
|
|
11
|
+
export type CharacterSetEffectInfoBody = {
|
|
12
|
+
set_count: number;
|
|
13
|
+
set_option: string;
|
|
14
|
+
};
|
|
15
|
+
export type CharacterSetEffectOptionFullBody = {
|
|
16
|
+
set_count: number;
|
|
17
|
+
set_option: string;
|
|
18
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type CharacterSkillBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
character_skill_grade: string | null;
|
|
5
|
+
character_skill: CharacterSkillInfoBody[];
|
|
6
|
+
};
|
|
7
|
+
export type CharacterSkillInfoBody = {
|
|
8
|
+
skill_name: string;
|
|
9
|
+
skill_description: string;
|
|
10
|
+
skill_level: number;
|
|
11
|
+
skill_effect: string | null;
|
|
12
|
+
skill_effect_next: string | null;
|
|
13
|
+
skill_icon: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export type CharacterSymbolEquipmentBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
symbol: CharacterSymbolEquipmentInfoBody[];
|
|
5
|
+
};
|
|
6
|
+
export type CharacterSymbolEquipmentInfoBody = {
|
|
7
|
+
symbol_name: string;
|
|
8
|
+
symbol_icon: string;
|
|
9
|
+
symbol_description: string;
|
|
10
|
+
symbol_force: string;
|
|
11
|
+
symbol_level: number;
|
|
12
|
+
symbol_str: string;
|
|
13
|
+
symbol_dex: string;
|
|
14
|
+
symbol_int: string;
|
|
15
|
+
symbol_luk: string;
|
|
16
|
+
symbol_hp: string;
|
|
17
|
+
symbol_drop_rate: string | null;
|
|
18
|
+
symbol_meso_rate: string | null;
|
|
19
|
+
symbol_exp_rate: string | null;
|
|
20
|
+
symbol_growth_count: number;
|
|
21
|
+
symbol_require_growth_count: number;
|
|
22
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type CharacterVMatrixBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
character_class: string | null;
|
|
4
|
+
character_v_core_equipment: CharacterVMatrixCoreEquipmentDtoBody[];
|
|
5
|
+
character_v_matrix_remain_slot_upgrade_point: number | null;
|
|
6
|
+
};
|
|
7
|
+
export type CharacterVMatrixCoreEquipmentDtoBody = {
|
|
8
|
+
slot_id: string;
|
|
9
|
+
slot_level: number;
|
|
10
|
+
v_core_name: string | null;
|
|
11
|
+
v_core_type: string | null;
|
|
12
|
+
v_core_level: number;
|
|
13
|
+
v_core_skill_1: string;
|
|
14
|
+
v_core_skill_2: string | null;
|
|
15
|
+
v_core_skill_3: string | null;
|
|
16
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export type GuildBasicBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
world_name: string;
|
|
4
|
+
guild_name: string;
|
|
5
|
+
guild_level: number;
|
|
6
|
+
guild_fame: number;
|
|
7
|
+
guild_point: number;
|
|
8
|
+
guild_master_name: string;
|
|
9
|
+
guild_member_count: number;
|
|
10
|
+
guild_member: string[];
|
|
11
|
+
guild_skill: GuildSkillBody[];
|
|
12
|
+
guild_noblesse_skill: GuildSkillBody[];
|
|
13
|
+
};
|
|
14
|
+
export type GuildSkillBody = {
|
|
15
|
+
skill_name: string;
|
|
16
|
+
skill_description: string;
|
|
17
|
+
skill_level: number;
|
|
18
|
+
skill_effect: string;
|
|
19
|
+
skill_icon: string;
|
|
20
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type UnionArtifactBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
union_artifact_effect: UnionArtifactEffectBody[];
|
|
4
|
+
union_artifact_crystal: UnionArtifactCrystalBody[];
|
|
5
|
+
union_artifact_remain_ap: number | null;
|
|
6
|
+
};
|
|
7
|
+
export type UnionArtifactEffectBody = {
|
|
8
|
+
name: string;
|
|
9
|
+
level: number;
|
|
10
|
+
};
|
|
11
|
+
export type UnionArtifactCrystalBody = {
|
|
12
|
+
name: string;
|
|
13
|
+
validity_flag: string;
|
|
14
|
+
date_expire: string;
|
|
15
|
+
level: number;
|
|
16
|
+
crystal_option_name_1: string;
|
|
17
|
+
crystal_option_name_2: string;
|
|
18
|
+
crystal_option_name_3: string;
|
|
19
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export type UnionRaiderBody = {
|
|
2
|
+
date: string | null;
|
|
3
|
+
union_raider_stat: string[];
|
|
4
|
+
union_occupied_stat: string[];
|
|
5
|
+
union_inner_stat: UnionRaiderInnerStatBody[];
|
|
6
|
+
union_block: UnionRaiderBlockBody[];
|
|
7
|
+
use_preset_no: number;
|
|
8
|
+
union_raider_preset_1: UnionRaiderPresetBody | null;
|
|
9
|
+
union_raider_preset_2: UnionRaiderPresetBody | null;
|
|
10
|
+
union_raider_preset_3: UnionRaiderPresetBody | null;
|
|
11
|
+
union_raider_preset_4: UnionRaiderPresetBody | null;
|
|
12
|
+
union_raider_preset_5: UnionRaiderPresetBody | null;
|
|
13
|
+
};
|
|
14
|
+
export type UnionRaiderInnerStatBody = {
|
|
15
|
+
stat_field_id: string;
|
|
16
|
+
stat_field_effect: string;
|
|
17
|
+
};
|
|
18
|
+
export type UnionRaiderBlockBody = {
|
|
19
|
+
block_type: string;
|
|
20
|
+
block_class: string;
|
|
21
|
+
block_level: string;
|
|
22
|
+
block_control_point: UnionRaiderBlockControlPointBody;
|
|
23
|
+
block_position: UnionRaiderBlockPositionBody[];
|
|
24
|
+
};
|
|
25
|
+
export type UnionRaiderBlockControlPointBody = {
|
|
26
|
+
x: number;
|
|
27
|
+
y: number;
|
|
28
|
+
};
|
|
29
|
+
export type UnionRaiderBlockPositionBody = {
|
|
30
|
+
x: number;
|
|
31
|
+
y: number;
|
|
32
|
+
};
|
|
33
|
+
export type UnionRaiderPresetBody = {
|
|
34
|
+
union_raider_stat: string[];
|
|
35
|
+
union_occupied_stat: string[];
|
|
36
|
+
union_inner_stat: UnionRaiderInnerStatBody[];
|
|
37
|
+
union_block: UnionRaiderBlockBody[];
|
|
38
|
+
};
|