maplestory-openapi 2.3.0 → 2.3.2
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 +1 -1
- package/dist/index.js +312 -13
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +311 -14
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentDragonInfoDto.d.ts +126 -0
- package/types/maplestory/api/dto/character/characterItemEquipmentDto.d.ts +5 -3
- package/types/maplestory/api/dto/character/characterItemEquipmentInfoDto.d.ts +4 -1
- package/types/maplestory/api/dto/character/characterItemEquipmentMechanicInfoDto.d.ts +126 -0
- package/types/maplestory/api/dto/guild/guildBasicDto.d.ts +1 -1
- package/types/maplestory/api/response/character/characterItemEquipmentDtoBody.d.ts +36 -5
- package/types/maplestory/api/response/guild/guildBasicDtoBody.d.ts +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Packages written in other languages can be found [HERE](https://github.com/Spira
|
|
|
13
13
|
Install the latest version of the JavaScript/TypeScript library in your npm project:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install maplestory-openapi@2.3.
|
|
16
|
+
npm install maplestory-openapi@2.3.2 # Replace with the latest version
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Usage
|
package/dist/index.js
CHANGED
|
@@ -1456,6 +1456,9 @@ class CharacterItemEquipmentTotalOptionDto {
|
|
|
1456
1456
|
}
|
|
1457
1457
|
}
|
|
1458
1458
|
|
|
1459
|
+
/**
|
|
1460
|
+
* 캐릭터 장비 아이템 상세 정보
|
|
1461
|
+
*/
|
|
1459
1462
|
class CharacterItemEquipmentInfoDto {
|
|
1460
1463
|
/**
|
|
1461
1464
|
* 장비 부위 명
|
|
@@ -1464,7 +1467,7 @@ class CharacterItemEquipmentInfoDto {
|
|
|
1464
1467
|
/**
|
|
1465
1468
|
* 장비 슬롯 위치
|
|
1466
1469
|
*/
|
|
1467
|
-
|
|
1470
|
+
itemEquipmentSlot;
|
|
1468
1471
|
/**
|
|
1469
1472
|
* 장비 명
|
|
1470
1473
|
*/
|
|
@@ -1602,9 +1605,9 @@ class CharacterItemEquipmentInfoDto {
|
|
|
1602
1605
|
*/
|
|
1603
1606
|
dateExpire;
|
|
1604
1607
|
constructor(obj) {
|
|
1605
|
-
const { item_equipment_part,
|
|
1608
|
+
const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, potential_option_grade, additional_potential_option_grade, potential_option_1, potential_option_2, potential_option_3, additional_potential_option_1, additional_potential_option_2, additional_potential_option_3, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
|
|
1606
1609
|
this.itemEquipmentPart = item_equipment_part;
|
|
1607
|
-
this.
|
|
1610
|
+
this.itemEquipmentSlot = item_equipment_slot;
|
|
1608
1611
|
this.itemName = item_name;
|
|
1609
1612
|
this.itemIcon = item_icon;
|
|
1610
1613
|
this.itemDescription = item_description;
|
|
@@ -1687,6 +1690,304 @@ class CharacterItemEquipmentTitleDto {
|
|
|
1687
1690
|
}
|
|
1688
1691
|
}
|
|
1689
1692
|
|
|
1693
|
+
/**
|
|
1694
|
+
* 에반 드래곤 장비 정보
|
|
1695
|
+
*/
|
|
1696
|
+
class CharacterItemEquipmentDragonInfoDto {
|
|
1697
|
+
/**
|
|
1698
|
+
* 장비 부위 명
|
|
1699
|
+
*/
|
|
1700
|
+
itemEquipmentPart;
|
|
1701
|
+
/**
|
|
1702
|
+
* 장비 슬롯 위치
|
|
1703
|
+
*/
|
|
1704
|
+
itemEquipmentSlot;
|
|
1705
|
+
/**
|
|
1706
|
+
* 장비 명
|
|
1707
|
+
*/
|
|
1708
|
+
itemName;
|
|
1709
|
+
/**
|
|
1710
|
+
* 장비 아이콘
|
|
1711
|
+
*/
|
|
1712
|
+
itemIcon;
|
|
1713
|
+
/**
|
|
1714
|
+
* 장비 설명
|
|
1715
|
+
*/
|
|
1716
|
+
itemDescription;
|
|
1717
|
+
/**
|
|
1718
|
+
* 장비 외형
|
|
1719
|
+
*/
|
|
1720
|
+
itemShapeName;
|
|
1721
|
+
/**
|
|
1722
|
+
* 장비 외형 아이콘
|
|
1723
|
+
*/
|
|
1724
|
+
itemShapeIcon;
|
|
1725
|
+
/**
|
|
1726
|
+
* 전용 성별
|
|
1727
|
+
*/
|
|
1728
|
+
itemGender;
|
|
1729
|
+
/**
|
|
1730
|
+
* 장비 최종 옵션
|
|
1731
|
+
*/
|
|
1732
|
+
itemTotalOption;
|
|
1733
|
+
/**
|
|
1734
|
+
* 장비 기본 옵션
|
|
1735
|
+
*/
|
|
1736
|
+
itemBaseOption;
|
|
1737
|
+
/**
|
|
1738
|
+
* 착용 레벨 증가
|
|
1739
|
+
*/
|
|
1740
|
+
equipmentLevelIncrease;
|
|
1741
|
+
/**
|
|
1742
|
+
* 장비 특별 옵션
|
|
1743
|
+
*/
|
|
1744
|
+
itemExceptionalOption;
|
|
1745
|
+
/**
|
|
1746
|
+
* 장비 추가 옵션
|
|
1747
|
+
*/
|
|
1748
|
+
itemAddOption;
|
|
1749
|
+
/**
|
|
1750
|
+
* 성장 경험치
|
|
1751
|
+
*/
|
|
1752
|
+
growthExp;
|
|
1753
|
+
/**
|
|
1754
|
+
* 성장 레벨
|
|
1755
|
+
*/
|
|
1756
|
+
growthLevel;
|
|
1757
|
+
/**
|
|
1758
|
+
* 업그레이드 횟수
|
|
1759
|
+
*/
|
|
1760
|
+
scrollUpgrade;
|
|
1761
|
+
/**
|
|
1762
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
1763
|
+
*/
|
|
1764
|
+
cuttableCount;
|
|
1765
|
+
/**
|
|
1766
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
1767
|
+
*/
|
|
1768
|
+
goldenHammerFlag;
|
|
1769
|
+
/**
|
|
1770
|
+
* 복구 가능 횟수
|
|
1771
|
+
*/
|
|
1772
|
+
scrollResilienceCount;
|
|
1773
|
+
/**
|
|
1774
|
+
* 업그레이드 가능 횟수
|
|
1775
|
+
*/
|
|
1776
|
+
scrollUpgradeableCount;
|
|
1777
|
+
/**
|
|
1778
|
+
* 소울 명
|
|
1779
|
+
*/
|
|
1780
|
+
soulName;
|
|
1781
|
+
/**
|
|
1782
|
+
* 소울 옵션
|
|
1783
|
+
*/
|
|
1784
|
+
soulOption;
|
|
1785
|
+
/**
|
|
1786
|
+
* 장비 기타 옵션
|
|
1787
|
+
*/
|
|
1788
|
+
itemEtcOption;
|
|
1789
|
+
/**
|
|
1790
|
+
* 강화 단계
|
|
1791
|
+
*/
|
|
1792
|
+
starforce;
|
|
1793
|
+
/**
|
|
1794
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
1795
|
+
*/
|
|
1796
|
+
starforceScrollFlag;
|
|
1797
|
+
/**
|
|
1798
|
+
* 장비 스타포스 옵션
|
|
1799
|
+
*/
|
|
1800
|
+
itemStarforceOption;
|
|
1801
|
+
/**
|
|
1802
|
+
* 특수 반지 레벨
|
|
1803
|
+
*/
|
|
1804
|
+
specialRingLevel;
|
|
1805
|
+
/**
|
|
1806
|
+
* 장비 유효 기간
|
|
1807
|
+
*/
|
|
1808
|
+
dateExpire;
|
|
1809
|
+
constructor(obj) {
|
|
1810
|
+
const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
|
|
1811
|
+
this.itemEquipmentPart = item_equipment_part;
|
|
1812
|
+
this.itemEquipmentSlot = item_equipment_slot;
|
|
1813
|
+
this.itemName = item_name;
|
|
1814
|
+
this.itemIcon = item_icon;
|
|
1815
|
+
this.itemDescription = item_description;
|
|
1816
|
+
this.itemShapeName = item_shape_name;
|
|
1817
|
+
this.itemShapeIcon = item_shape_icon;
|
|
1818
|
+
this.itemGender = item_gender;
|
|
1819
|
+
this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
|
|
1820
|
+
this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
|
|
1821
|
+
this.equipmentLevelIncrease = equipment_level_increase;
|
|
1822
|
+
this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
|
|
1823
|
+
this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
|
|
1824
|
+
this.growthExp = growth_exp;
|
|
1825
|
+
this.growthLevel = growth_level;
|
|
1826
|
+
this.scrollUpgrade = scroll_upgrade;
|
|
1827
|
+
this.cuttableCount = cuttable_count;
|
|
1828
|
+
this.goldenHammerFlag = golden_hammer_flag;
|
|
1829
|
+
this.scrollResilienceCount = scroll_resilience_count;
|
|
1830
|
+
this.scrollUpgradeableCount = scroll_upgradeable_count;
|
|
1831
|
+
this.soulName = soul_name;
|
|
1832
|
+
this.soulOption = soul_option;
|
|
1833
|
+
this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
|
|
1834
|
+
this.starforce = starforce;
|
|
1835
|
+
this.starforceScrollFlag = starforce_scroll_flag;
|
|
1836
|
+
this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
|
|
1837
|
+
this.specialRingLevel = special_ring_level;
|
|
1838
|
+
this.dateExpire = date_expire ? new Date(date_expire) : null;
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
/**
|
|
1843
|
+
* 메카닉 장비 정보
|
|
1844
|
+
*/
|
|
1845
|
+
class CharacterItemEquipmentMechanicInfoDto {
|
|
1846
|
+
/**
|
|
1847
|
+
* 장비 부위 명
|
|
1848
|
+
*/
|
|
1849
|
+
itemEquipmentPart;
|
|
1850
|
+
/**
|
|
1851
|
+
* 장비 슬롯 위치
|
|
1852
|
+
*/
|
|
1853
|
+
itemEquipmentSlot;
|
|
1854
|
+
/**
|
|
1855
|
+
* 장비 명
|
|
1856
|
+
*/
|
|
1857
|
+
itemName;
|
|
1858
|
+
/**
|
|
1859
|
+
* 장비 아이콘
|
|
1860
|
+
*/
|
|
1861
|
+
itemIcon;
|
|
1862
|
+
/**
|
|
1863
|
+
* 장비 설명
|
|
1864
|
+
*/
|
|
1865
|
+
itemDescription;
|
|
1866
|
+
/**
|
|
1867
|
+
* 장비 외형
|
|
1868
|
+
*/
|
|
1869
|
+
itemShapeName;
|
|
1870
|
+
/**
|
|
1871
|
+
* 장비 외형 아이콘
|
|
1872
|
+
*/
|
|
1873
|
+
itemShapeIcon;
|
|
1874
|
+
/**
|
|
1875
|
+
* 전용 성별
|
|
1876
|
+
*/
|
|
1877
|
+
itemGender;
|
|
1878
|
+
/**
|
|
1879
|
+
* 장비 최종 옵션
|
|
1880
|
+
*/
|
|
1881
|
+
itemTotalOption;
|
|
1882
|
+
/**
|
|
1883
|
+
* 장비 기본 옵션
|
|
1884
|
+
*/
|
|
1885
|
+
itemBaseOption;
|
|
1886
|
+
/**
|
|
1887
|
+
* 착용 레벨 증가
|
|
1888
|
+
*/
|
|
1889
|
+
equipmentLevelIncrease;
|
|
1890
|
+
/**
|
|
1891
|
+
* 장비 특별 옵션
|
|
1892
|
+
*/
|
|
1893
|
+
itemExceptionalOption;
|
|
1894
|
+
/**
|
|
1895
|
+
* 장비 추가 옵션
|
|
1896
|
+
*/
|
|
1897
|
+
itemAddOption;
|
|
1898
|
+
/**
|
|
1899
|
+
* 성장 경험치
|
|
1900
|
+
*/
|
|
1901
|
+
growthExp;
|
|
1902
|
+
/**
|
|
1903
|
+
* 성장 레벨
|
|
1904
|
+
*/
|
|
1905
|
+
growthLevel;
|
|
1906
|
+
/**
|
|
1907
|
+
* 업그레이드 횟수
|
|
1908
|
+
*/
|
|
1909
|
+
scrollUpgrade;
|
|
1910
|
+
/**
|
|
1911
|
+
* 가위 사용 가능 횟수 (교환 불가 장비, 가위 횟수가 없는 교환 가능 장비는 255)
|
|
1912
|
+
*/
|
|
1913
|
+
cuttableCount;
|
|
1914
|
+
/**
|
|
1915
|
+
* 황금 망치 재련 적용 (1:적용, 이외 미 적용)
|
|
1916
|
+
*/
|
|
1917
|
+
goldenHammerFlag;
|
|
1918
|
+
/**
|
|
1919
|
+
* 복구 가능 횟수
|
|
1920
|
+
*/
|
|
1921
|
+
scrollResilienceCount;
|
|
1922
|
+
/**
|
|
1923
|
+
* 업그레이드 가능 횟수
|
|
1924
|
+
*/
|
|
1925
|
+
scrollUpgradeableCount;
|
|
1926
|
+
/**
|
|
1927
|
+
* 소울 명
|
|
1928
|
+
*/
|
|
1929
|
+
soulName;
|
|
1930
|
+
/**
|
|
1931
|
+
* 소울 옵션
|
|
1932
|
+
*/
|
|
1933
|
+
soulOption;
|
|
1934
|
+
/**
|
|
1935
|
+
* 장비 기타 옵션
|
|
1936
|
+
*/
|
|
1937
|
+
itemEtcOption;
|
|
1938
|
+
/**
|
|
1939
|
+
* 강화 단계
|
|
1940
|
+
*/
|
|
1941
|
+
starforce;
|
|
1942
|
+
/**
|
|
1943
|
+
* 놀라운 장비 강화 주문서 사용 여부 (0:미사용, 1:사용)
|
|
1944
|
+
*/
|
|
1945
|
+
starforceScrollFlag;
|
|
1946
|
+
/**
|
|
1947
|
+
* 장비 스타포스 옵션
|
|
1948
|
+
*/
|
|
1949
|
+
itemStarforceOption;
|
|
1950
|
+
/**
|
|
1951
|
+
* 특수 반지 레벨
|
|
1952
|
+
*/
|
|
1953
|
+
specialRingLevel;
|
|
1954
|
+
/**
|
|
1955
|
+
* 장비 유효 기간
|
|
1956
|
+
*/
|
|
1957
|
+
dateExpire;
|
|
1958
|
+
constructor(obj) {
|
|
1959
|
+
const { item_equipment_part, item_equipment_slot, item_name, item_icon, item_description, item_shape_name, item_shape_icon, item_gender, item_total_option, item_base_option, equipment_level_increase, item_exceptional_option, item_add_option, growth_exp, growth_level, scroll_upgrade, cuttable_count, golden_hammer_flag, scroll_resilience_count, scroll_upgradeable_count, soul_name, soul_option, item_etc_option, starforce, starforce_scroll_flag, item_starforce_option, special_ring_level, date_expire, } = obj;
|
|
1960
|
+
this.itemEquipmentPart = item_equipment_part;
|
|
1961
|
+
this.itemEquipmentSlot = item_equipment_slot;
|
|
1962
|
+
this.itemName = item_name;
|
|
1963
|
+
this.itemIcon = item_icon;
|
|
1964
|
+
this.itemDescription = item_description;
|
|
1965
|
+
this.itemShapeName = item_shape_name;
|
|
1966
|
+
this.itemShapeIcon = item_shape_icon;
|
|
1967
|
+
this.itemGender = item_gender;
|
|
1968
|
+
this.itemTotalOption = new CharacterItemEquipmentTotalOptionDto(item_total_option);
|
|
1969
|
+
this.itemBaseOption = new CharacterItemEquipmentBaseOptionDto(item_base_option);
|
|
1970
|
+
this.equipmentLevelIncrease = equipment_level_increase;
|
|
1971
|
+
this.itemExceptionalOption = new CharacterItemEquipmentExceptionalOptionDto(item_exceptional_option);
|
|
1972
|
+
this.itemAddOption = new CharacterItemEquipmentAddOptionDto(item_add_option);
|
|
1973
|
+
this.growthExp = growth_exp;
|
|
1974
|
+
this.growthLevel = growth_level;
|
|
1975
|
+
this.scrollUpgrade = scroll_upgrade;
|
|
1976
|
+
this.cuttableCount = cuttable_count;
|
|
1977
|
+
this.goldenHammerFlag = golden_hammer_flag;
|
|
1978
|
+
this.scrollResilienceCount = scroll_resilience_count;
|
|
1979
|
+
this.scrollUpgradeableCount = scroll_upgradeable_count;
|
|
1980
|
+
this.soulName = soul_name;
|
|
1981
|
+
this.soulOption = soul_option;
|
|
1982
|
+
this.itemEtcOption = new CharacterItemEquipmentEtcOptionDto(item_etc_option);
|
|
1983
|
+
this.starforce = starforce;
|
|
1984
|
+
this.starforceScrollFlag = starforce_scroll_flag;
|
|
1985
|
+
this.itemStarforceOption = new CharacterItemEquipmentStarforceOptionDto(item_starforce_option);
|
|
1986
|
+
this.specialRingLevel = special_ring_level;
|
|
1987
|
+
this.dateExpire = date_expire ? new Date(date_expire) : null;
|
|
1988
|
+
}
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1690
1991
|
/**
|
|
1691
1992
|
* 캐릭터 장비 아이템 정보
|
|
1692
1993
|
*/
|
|
@@ -1725,13 +2026,9 @@ class CharacterItemEquipmentDto {
|
|
|
1725
2026
|
this.characterGender = character_gender;
|
|
1726
2027
|
this.characterClass = character_class;
|
|
1727
2028
|
this.itemEquipment = item_equipment.map((equipment) => new CharacterItemEquipmentInfoDto(equipment));
|
|
1728
|
-
this.title = new CharacterItemEquipmentTitleDto(title);
|
|
1729
|
-
this.dragonEquipment = dragon_equipment
|
|
1730
|
-
|
|
1731
|
-
: undefined;
|
|
1732
|
-
this.mechanicEquipment = mechanic_equipment
|
|
1733
|
-
? mechanic_equipment.map((equipment) => new CharacterItemEquipmentInfoDto(equipment))
|
|
1734
|
-
: undefined;
|
|
2029
|
+
this.title = title ? new CharacterItemEquipmentTitleDto(title) : null;
|
|
2030
|
+
this.dragonEquipment = dragon_equipment.map((equipment) => new CharacterItemEquipmentDragonInfoDto(equipment));
|
|
2031
|
+
this.mechanicEquipment = mechanic_equipment.map((equipment) => new CharacterItemEquipmentMechanicInfoDto(equipment));
|
|
1735
2032
|
}
|
|
1736
2033
|
}
|
|
1737
2034
|
|
|
@@ -2758,7 +3055,7 @@ class GuildBasicDto {
|
|
|
2758
3055
|
/**
|
|
2759
3056
|
* 노블레스 스킬 목록
|
|
2760
3057
|
*/
|
|
2761
|
-
|
|
3058
|
+
guildNoblesseSkill;
|
|
2762
3059
|
/**
|
|
2763
3060
|
* 조합형 길드 마크
|
|
2764
3061
|
*/
|
|
@@ -2768,7 +3065,7 @@ class GuildBasicDto {
|
|
|
2768
3065
|
*/
|
|
2769
3066
|
guildMarkCustom;
|
|
2770
3067
|
constructor(obj) {
|
|
2771
|
-
const { date, world_name, guild_name, guild_level, guild_fame, guild_point, guild_master_name, guild_member_count, guild_member, guild_skill,
|
|
3068
|
+
const { date, world_name, guild_name, guild_level, guild_fame, guild_point, guild_master_name, guild_member_count, guild_member, guild_skill, guild_noblesse_skill, guild_mark, guild_mark_custom, } = obj;
|
|
2772
3069
|
this.date = new Date(date);
|
|
2773
3070
|
this.worldName = world_name;
|
|
2774
3071
|
this.guildName = guild_name;
|
|
@@ -2779,7 +3076,7 @@ class GuildBasicDto {
|
|
|
2779
3076
|
this.guildMemberCount = guild_member_count;
|
|
2780
3077
|
this.guildMember = guild_member;
|
|
2781
3078
|
this.guildSkill = guild_skill.map((skill) => new GuildSkillDto(skill));
|
|
2782
|
-
this.
|
|
3079
|
+
this.guildNoblesseSkill = guild_noblesse_skill.map((skill) => new GuildSkillDto(skill));
|
|
2783
3080
|
this.guildMark = guild_mark;
|
|
2784
3081
|
this.guildMarkCustom = guild_mark_custom;
|
|
2785
3082
|
}
|
|
@@ -4870,10 +5167,12 @@ exports.CharacterHyperStatDto = CharacterHyperStatDto;
|
|
|
4870
5167
|
exports.CharacterHyperStatPresetDto = CharacterHyperStatPresetDto;
|
|
4871
5168
|
exports.CharacterItemEquipmentAddOptionDto = CharacterItemEquipmentAddOptionDto;
|
|
4872
5169
|
exports.CharacterItemEquipmentBaseOptionDto = CharacterItemEquipmentBaseOptionDto;
|
|
5170
|
+
exports.CharacterItemEquipmentDragonInfoDto = CharacterItemEquipmentDragonInfoDto;
|
|
4873
5171
|
exports.CharacterItemEquipmentDto = CharacterItemEquipmentDto;
|
|
4874
5172
|
exports.CharacterItemEquipmentEtcOptionDto = CharacterItemEquipmentEtcOptionDto;
|
|
4875
5173
|
exports.CharacterItemEquipmentExceptionalOptionDto = CharacterItemEquipmentExceptionalOptionDto;
|
|
4876
5174
|
exports.CharacterItemEquipmentInfoDto = CharacterItemEquipmentInfoDto;
|
|
5175
|
+
exports.CharacterItemEquipmentMechanicInfoDto = CharacterItemEquipmentMechanicInfoDto;
|
|
4877
5176
|
exports.CharacterItemEquipmentStarforceOptionDto = CharacterItemEquipmentStarforceOptionDto;
|
|
4878
5177
|
exports.CharacterItemEquipmentTitleDto = CharacterItemEquipmentTitleDto;
|
|
4879
5178
|
exports.CharacterItemEquipmentTotalOptionDto = CharacterItemEquipmentTotalOptionDto;
|