@malib/gear 1.1.0 → 1.2.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/dist/index.d.mts +1345 -13
- package/dist/index.mjs +86 -50
- package/package.json +4 -2
package/dist/index.d.mts
CHANGED
|
@@ -298,6 +298,8 @@ declare enum GearType {
|
|
|
298
298
|
breathShooter = 1214,
|
|
299
299
|
/** 장검 */
|
|
300
300
|
longSword2 = 1215,
|
|
301
|
+
/** 카르타 */
|
|
302
|
+
carta = 1216,
|
|
301
303
|
/** 소울 슈터 */
|
|
302
304
|
soulShooter = 122,
|
|
303
305
|
/** 데스페라도 */
|
|
@@ -462,6 +464,8 @@ declare enum GearType {
|
|
|
462
464
|
machineTransistors = 165,
|
|
463
465
|
/** 모래시계 */
|
|
464
466
|
hourGlass = 17237,
|
|
467
|
+
/** 마법깃펜 */
|
|
468
|
+
magicQuill = 1726,
|
|
465
469
|
/** 드래곤 모자 */
|
|
466
470
|
dragonMask = 194,
|
|
467
471
|
/** 드래곤 펜던트 */
|
|
@@ -538,13 +542,13 @@ type SoulChargeOption = Pick<GearOption, 'attackPower' | 'magicPower'>;
|
|
|
538
542
|
type SoulOption = Pick<GearOption, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'maxHp' | 'maxMp' | 'criticalRate' | 'ignoreMonsterArmor' | 'bossDamage'>;
|
|
539
543
|
//#endregion
|
|
540
544
|
//#region src/lib/data/GearData.d.ts
|
|
541
|
-
declare const VERSION = 3;
|
|
545
|
+
declare const VERSION$1 = 3;
|
|
542
546
|
/**
|
|
543
547
|
* 장비 정보
|
|
544
548
|
*/
|
|
545
549
|
interface GearData {
|
|
546
550
|
/** 장비 정보 버전 */
|
|
547
|
-
version: typeof VERSION;
|
|
551
|
+
version: typeof VERSION$1;
|
|
548
552
|
/** 아이템 ID */
|
|
549
553
|
id: number;
|
|
550
554
|
/** 장비명 */
|
|
@@ -617,13 +621,32 @@ interface GearReqData {
|
|
|
617
621
|
level?: number;
|
|
618
622
|
/** 착용 가능 레벨 증가 */
|
|
619
623
|
levelIncrease?: number;
|
|
620
|
-
/** 착용 가능 직업
|
|
621
|
-
job?:
|
|
622
|
-
/** 착용 가능 직업 코드 목록 */
|
|
623
|
-
specJobs?: number[];
|
|
624
|
+
/** 착용 가능 직업 정보 */
|
|
625
|
+
job?: GearReqJobData;
|
|
624
626
|
/** 착용 가능 성별 */
|
|
625
627
|
gender?: GearGender;
|
|
626
628
|
}
|
|
629
|
+
/**
|
|
630
|
+
* 장비 착용 가능 직업 정보
|
|
631
|
+
*/
|
|
632
|
+
interface GearReqJobData {
|
|
633
|
+
/**
|
|
634
|
+
* 착용 가능 전직 계열 비트마스크 (전사, 마법사, 궁수, 도적, 해적)
|
|
635
|
+
*/
|
|
636
|
+
class?: number;
|
|
637
|
+
/**
|
|
638
|
+
* 착용 가능 직업 코드 목록
|
|
639
|
+
*
|
|
640
|
+
* 차수 무관한 직업 코드 목록입니다.
|
|
641
|
+
*/
|
|
642
|
+
jobs?: number[];
|
|
643
|
+
/**
|
|
644
|
+
* 착용 가능 세부 직업 코드 목록
|
|
645
|
+
*
|
|
646
|
+
* 차수를 고려한 직업 코드 목록입니다.
|
|
647
|
+
*/
|
|
648
|
+
fullJobs?: number[];
|
|
649
|
+
}
|
|
627
650
|
/**
|
|
628
651
|
* 착용 가능 성별
|
|
629
652
|
*/
|
|
@@ -828,17 +851,42 @@ declare class GearReq implements GearReqData {
|
|
|
828
851
|
*/
|
|
829
852
|
get levelIncrease(): number;
|
|
830
853
|
/**
|
|
831
|
-
* 착용 가능 직업
|
|
854
|
+
* 착용 가능 직업
|
|
855
|
+
*/
|
|
856
|
+
get job(): GearReqJob;
|
|
857
|
+
/**
|
|
858
|
+
* 착용 가능 성별
|
|
859
|
+
*/
|
|
860
|
+
get gender(): GearGender | undefined;
|
|
861
|
+
}
|
|
862
|
+
/**
|
|
863
|
+
* 장비 착용 제한 직업
|
|
864
|
+
*/
|
|
865
|
+
declare class GearReqJob implements GearReqJobData {
|
|
866
|
+
/**
|
|
867
|
+
* 장비 착용 제한 직업 정보
|
|
868
|
+
*/
|
|
869
|
+
data: GearReqJobData;
|
|
870
|
+
/**
|
|
871
|
+
* 장비 착용 제한 직업 정보를 참조하는 장비 착용 제한 직업 인스턴스를 생성합니다.
|
|
872
|
+
*/
|
|
873
|
+
constructor(data: GearReqJobData);
|
|
874
|
+
/**
|
|
875
|
+
* 착용 가능 전직 계열 비트마스크 (전사, 마법사, 궁수, 도적, 해적)
|
|
832
876
|
*/
|
|
833
|
-
get
|
|
877
|
+
get class(): number;
|
|
834
878
|
/**
|
|
835
879
|
* 착용 가능 직업 코드 목록
|
|
880
|
+
*
|
|
881
|
+
* 차수 무관한 직업 코드 목록입니다.
|
|
836
882
|
*/
|
|
837
|
-
get
|
|
883
|
+
get jobs(): number[];
|
|
838
884
|
/**
|
|
839
|
-
* 착용 가능
|
|
885
|
+
* 착용 가능 세부 직업 코드 목록
|
|
886
|
+
*
|
|
887
|
+
* 차수를 고려한 직업 코드 목록입니다.
|
|
840
888
|
*/
|
|
841
|
-
get
|
|
889
|
+
get fullJobs(): number[];
|
|
842
890
|
/**
|
|
843
891
|
* 초보자 착용 가능 여부를 계산합니다.
|
|
844
892
|
* @returns 착용할 수 있을 경우 `true`; 아닐 경우 `false`.
|
|
@@ -903,7 +951,7 @@ declare class ReadonlyGear implements _Gear {
|
|
|
903
951
|
/**
|
|
904
952
|
* 장비 정보 버전
|
|
905
953
|
*/
|
|
906
|
-
get version(): typeof VERSION;
|
|
954
|
+
get version(): typeof VERSION$1;
|
|
907
955
|
/**
|
|
908
956
|
* 장비 ID
|
|
909
957
|
*/
|
|
@@ -1779,6 +1827,1282 @@ declare function getMaxStar(gear: ReadonlyGear): number;
|
|
|
1779
1827
|
*/
|
|
1780
1828
|
declare function getHardMaxStar(gear: ReadonlyGear): number;
|
|
1781
1829
|
//#endregion
|
|
1830
|
+
//#region ../../node_modules/.pnpm/@malib+gear@1.0.0-next.10/node_modules/@malib/gear/dist/_tsup-dts-rollup.d.ts
|
|
1831
|
+
/**
|
|
1832
|
+
* 추가 옵션 정보
|
|
1833
|
+
*/
|
|
1834
|
+
declare interface AddOptionData$2 {
|
|
1835
|
+
/** 추가 옵션 종류 */
|
|
1836
|
+
type: AddOptionType$2;
|
|
1837
|
+
/** 추가 옵션 단계 */
|
|
1838
|
+
grade: AddOptionGrade$2;
|
|
1839
|
+
/** 추가 옵션 수치 */
|
|
1840
|
+
value: number;
|
|
1841
|
+
}
|
|
1842
|
+
/**
|
|
1843
|
+
* 추가 옵션 단계
|
|
1844
|
+
*/
|
|
1845
|
+
declare type AddOptionGrade$2 = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1846
|
+
/**
|
|
1847
|
+
* 추가 옵션 종류
|
|
1848
|
+
*/
|
|
1849
|
+
declare enum AddOptionType$2 {
|
|
1850
|
+
/** STR */
|
|
1851
|
+
str = "str",
|
|
1852
|
+
/** DEX */
|
|
1853
|
+
dex = "dex",
|
|
1854
|
+
/** INT */
|
|
1855
|
+
int = "int",
|
|
1856
|
+
/** LUK */
|
|
1857
|
+
luk = "luk",
|
|
1858
|
+
/** STR, DEX */
|
|
1859
|
+
str_dex = "str,dex",
|
|
1860
|
+
/** STR, INT */
|
|
1861
|
+
str_int = "str,int",
|
|
1862
|
+
/** STR, LUK */
|
|
1863
|
+
str_luk = "str,luk",
|
|
1864
|
+
/** DEX, INT */
|
|
1865
|
+
dex_int = "dex,int",
|
|
1866
|
+
/** DEX, LUK */
|
|
1867
|
+
dex_luk = "dex,luk",
|
|
1868
|
+
/** INT, LUK */
|
|
1869
|
+
int_luk = "int,luk",
|
|
1870
|
+
/** 최대 HP */
|
|
1871
|
+
maxHp = "maxHp",
|
|
1872
|
+
/** 최대 MP */
|
|
1873
|
+
maxMp = "maxMp",
|
|
1874
|
+
/** 공격력 */
|
|
1875
|
+
attackPower = "attackPower",
|
|
1876
|
+
/** 마력 */
|
|
1877
|
+
magicPower = "magicPower",
|
|
1878
|
+
/** 방어력 */
|
|
1879
|
+
armor = "armor",
|
|
1880
|
+
/** 이동속도 */
|
|
1881
|
+
speed = "speed",
|
|
1882
|
+
/** 점프력 */
|
|
1883
|
+
jump = "jump",
|
|
1884
|
+
/** 보스 공격 시 데미지 증가(%) */
|
|
1885
|
+
bossDamage = "bossDamage",
|
|
1886
|
+
/** 데미지(%) */
|
|
1887
|
+
damage = "damage",
|
|
1888
|
+
/** 올스탯(%) */
|
|
1889
|
+
allStat = "allStat",
|
|
1890
|
+
/** 착용 레벨 감소 */
|
|
1891
|
+
reqLevelDecrease = "reqLevelDecrease"
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
* 장비 추가 옵션
|
|
1895
|
+
*/
|
|
1896
|
+
declare type GearAddOption$2 = Pick<GearBaseOption$2, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump' | 'bossDamage' | 'allStat' | 'damage' | 'reqLevelDecrease'>;
|
|
1897
|
+
/**
|
|
1898
|
+
* 장비 속성 정보
|
|
1899
|
+
*/
|
|
1900
|
+
declare interface GearAttributeData$2 {
|
|
1901
|
+
/** 고유 아이템 */
|
|
1902
|
+
only?: boolean;
|
|
1903
|
+
/** 교환 가능 여부 */
|
|
1904
|
+
trade?: GearTrade$2;
|
|
1905
|
+
/** 고유장착 아이템 */
|
|
1906
|
+
onlyEquip?: boolean;
|
|
1907
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 여부 */
|
|
1908
|
+
share?: GearShare$2;
|
|
1909
|
+
/** 슈페리얼 */
|
|
1910
|
+
superior?: boolean;
|
|
1911
|
+
/** 공격 속도 */
|
|
1912
|
+
attackSpeed?: number;
|
|
1913
|
+
/** 주문서 강화 가능 여부 */
|
|
1914
|
+
canScroll?: GearCapability$2;
|
|
1915
|
+
/** 스타포스 강화 가능 여부 */
|
|
1916
|
+
canStarforce?: GearCapability$2;
|
|
1917
|
+
/** 추가 옵션 설정 가능 여부 */
|
|
1918
|
+
canAddOption?: GearCapability$2;
|
|
1919
|
+
/** 잠재능력 설정 가능 여부 */
|
|
1920
|
+
canPotential?: GearCapability$2;
|
|
1921
|
+
/** 에디셔널 잠재능력 설정 가능 여부 */
|
|
1922
|
+
canAdditionalPotential?: GearCapability$2;
|
|
1923
|
+
/** 스페셜 아이템 여부 */
|
|
1924
|
+
specialGrade?: boolean;
|
|
1925
|
+
/** 카르마의 가위 사용 가능 여부 */
|
|
1926
|
+
cuttable?: GearCuttable$2;
|
|
1927
|
+
/** 가위 사용 가능 횟수 */
|
|
1928
|
+
cuttableCount?: number;
|
|
1929
|
+
/** 최대 가위 사용 가능 횟수 */
|
|
1930
|
+
totalCuttableCount?: number;
|
|
1931
|
+
/** 쉐어 네임 텍을 사용 가능 여부 */
|
|
1932
|
+
accountShareTag?: boolean;
|
|
1933
|
+
/** 훈장 신비의 모루 사용 불가 여부 */
|
|
1934
|
+
noShapeChange?: boolean;
|
|
1935
|
+
/** 세트 효과 ID */
|
|
1936
|
+
setItemId?: number;
|
|
1937
|
+
/** 럭키 아이템 */
|
|
1938
|
+
lucky?: boolean;
|
|
1939
|
+
/** 장착 시 획득 경험치 */
|
|
1940
|
+
incline?: Partial<GearIncline$2>;
|
|
1941
|
+
/** 보스 드롭 여부 */
|
|
1942
|
+
bossReward?: boolean;
|
|
1943
|
+
/** 사용 가능 스킬 */
|
|
1944
|
+
skills?: string[];
|
|
1945
|
+
/** 성장 경험치 */
|
|
1946
|
+
growthExp?: number;
|
|
1947
|
+
/** 성장 레벨 */
|
|
1948
|
+
growthLevel?: number;
|
|
1949
|
+
/** 장비 유효 기간(KST) */
|
|
1950
|
+
dateExpire?: string;
|
|
1951
|
+
}
|
|
1952
|
+
/**
|
|
1953
|
+
* 장비 기본 옵션
|
|
1954
|
+
*/
|
|
1955
|
+
declare type GearBaseOption$2 = Pick<GearOption$2, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'maxHpRate' | 'maxMpRate' | 'maxDemonForce' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump' | 'bossDamage' | 'ignoreMonsterArmor' | 'allStat' | 'damage' | 'reqLevelDecrease'>;
|
|
1956
|
+
declare enum GearCapability$2 {
|
|
1957
|
+
/** 설정 불가 */
|
|
1958
|
+
Cannot = 0,
|
|
1959
|
+
/** 설정 가능 */
|
|
1960
|
+
Can = 1,
|
|
1961
|
+
/** 재설정 불가 */
|
|
1962
|
+
Fixed = 2
|
|
1963
|
+
}
|
|
1964
|
+
declare enum GearCuttable$2 {
|
|
1965
|
+
/** 없음 */
|
|
1966
|
+
None = 0,
|
|
1967
|
+
/** 카르마의 가위 또는 실버 카르마의 가위를 사용하면 1회 교환이 가능하게 할 수 있습니다. */
|
|
1968
|
+
Silver = 1,
|
|
1969
|
+
/** 플래티넘 카르마의 가위를 사용하면 1회 교환이 가능하게 할 수 있습니다. */
|
|
1970
|
+
Platinum = 2
|
|
1971
|
+
}
|
|
1972
|
+
/**
|
|
1973
|
+
* 장비 정보
|
|
1974
|
+
*/
|
|
1975
|
+
declare interface GearData$2 {
|
|
1976
|
+
/** 장비 메타데이터 */
|
|
1977
|
+
meta: GearMetadata;
|
|
1978
|
+
/** 장비명 */
|
|
1979
|
+
name: string;
|
|
1980
|
+
/** 장비 아이콘 */
|
|
1981
|
+
icon?: string;
|
|
1982
|
+
/** 장비 설명 */
|
|
1983
|
+
desc?: string;
|
|
1984
|
+
/** 장비 외형 */
|
|
1985
|
+
shape?: GearShapeData$2;
|
|
1986
|
+
/** 장비 분류 */
|
|
1987
|
+
type: GearType$2;
|
|
1988
|
+
/** 장비 착용 제한 */
|
|
1989
|
+
req: GearReqData$2;
|
|
1990
|
+
/** 장비 속성 */
|
|
1991
|
+
attributes: GearAttributeData$2;
|
|
1992
|
+
/** 장비 기본 옵션 */
|
|
1993
|
+
baseOption?: Partial<GearBaseOption$2>;
|
|
1994
|
+
/** 장비 추가 옵션 */
|
|
1995
|
+
addOption?: Partial<GearAddOption$2>;
|
|
1996
|
+
/** 장비 주문서 강화 옵션 */
|
|
1997
|
+
upgradeOption?: Partial<GearUpgradeOption$2>;
|
|
1998
|
+
/** 장비 스타포스 옵션 */
|
|
1999
|
+
starforceOption?: Partial<GearStarforceOption$2>;
|
|
2000
|
+
/** 추가 옵션 목록 */
|
|
2001
|
+
addOptions?: AddOptionData$2[];
|
|
2002
|
+
/** 업그레이드 횟수 */
|
|
2003
|
+
scrollUpgradeCount?: number;
|
|
2004
|
+
/** 복구 가능 횟수 */
|
|
2005
|
+
scrollResilienceCount?: number;
|
|
2006
|
+
/** 업그레이드 가능 횟수 */
|
|
2007
|
+
scrollUpgradeableCount?: number;
|
|
2008
|
+
/** 강화 단계 */
|
|
2009
|
+
star?: number;
|
|
2010
|
+
/** 놀라운 장비 강화 주문서 사용 여부 */
|
|
2011
|
+
starScroll?: boolean;
|
|
2012
|
+
/** 소울 웨폰 정보 */
|
|
2013
|
+
soulSlot?: SoulSlotData$2;
|
|
2014
|
+
/** 잠재능력 등급 */
|
|
2015
|
+
potentialGrade?: PotentialGrade$2;
|
|
2016
|
+
/** 잠재능력 목록 */
|
|
2017
|
+
potentials?: PotentialData$2[];
|
|
2018
|
+
/** 에디셔널 잠재능력 등급 */
|
|
2019
|
+
additionalPotentialGrade?: PotentialGrade$2;
|
|
2020
|
+
/** 에디셔널 잠재능력 목록 */
|
|
2021
|
+
additionalPotentials?: PotentialData$2[];
|
|
2022
|
+
/** 장비 익셉셔널 옵션 */
|
|
2023
|
+
exceptionalOption?: Partial<GearExceptionalOption$2>;
|
|
2024
|
+
/** 익셉셔널 강화 횟수 */
|
|
2025
|
+
exceptionalUpgradeCount?: number;
|
|
2026
|
+
/** 익셉셔널 강화 가능 횟수 */
|
|
2027
|
+
exceptionalUpgradeableCount?: number;
|
|
2028
|
+
}
|
|
2029
|
+
/**
|
|
2030
|
+
* 장비 익셉셔널 옵션
|
|
2031
|
+
*/
|
|
2032
|
+
declare type GearExceptionalOption$2 = Pick<GearBaseOption$2, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower'>;
|
|
2033
|
+
/**
|
|
2034
|
+
* 착용 가능 성별
|
|
2035
|
+
*/
|
|
2036
|
+
declare enum GearGender$2 {
|
|
2037
|
+
/** 남 */
|
|
2038
|
+
Male = 0,
|
|
2039
|
+
/** 여 */
|
|
2040
|
+
Female = 1
|
|
2041
|
+
}
|
|
2042
|
+
declare interface GearIncline$2 {
|
|
2043
|
+
/** 카리스마 */
|
|
2044
|
+
charisma: number;
|
|
2045
|
+
/** 통찰력 */
|
|
2046
|
+
insight: number;
|
|
2047
|
+
/** 의지 */
|
|
2048
|
+
will: number;
|
|
2049
|
+
/** 손재주 */
|
|
2050
|
+
craft: number;
|
|
2051
|
+
/** 감성 */
|
|
2052
|
+
sense: number;
|
|
2053
|
+
/** 매력 */
|
|
2054
|
+
charm: number;
|
|
2055
|
+
}
|
|
2056
|
+
/**
|
|
2057
|
+
* 장비 메타데이터
|
|
2058
|
+
*
|
|
2059
|
+
* 사용자는 메타데이터에 커스텀 속성을 추가할 수 있습니다.
|
|
2060
|
+
* 커스텀 속성은 해당 라이브러리가 임의로 변경하지 않습니다.
|
|
2061
|
+
* 충돌을 방지하기 위해 커스텀 속성명은 하나의 `_`으로 시작해야 합니다.
|
|
2062
|
+
*/
|
|
2063
|
+
declare interface GearMetadata {
|
|
2064
|
+
/** 아이템 ID */
|
|
2065
|
+
id: number;
|
|
2066
|
+
/** 장비 정보 버전 */
|
|
2067
|
+
version: 1;
|
|
2068
|
+
}
|
|
2069
|
+
/**
|
|
2070
|
+
* 장비 옵션
|
|
2071
|
+
*/
|
|
2072
|
+
declare interface GearOption$2 {
|
|
2073
|
+
/** STR */
|
|
2074
|
+
str: number;
|
|
2075
|
+
/** DEX */
|
|
2076
|
+
dex: number;
|
|
2077
|
+
/** INT */
|
|
2078
|
+
int: number;
|
|
2079
|
+
/** LUK */
|
|
2080
|
+
luk: number;
|
|
2081
|
+
/** STR(%) */
|
|
2082
|
+
strRate: number;
|
|
2083
|
+
/** DEX(%) */
|
|
2084
|
+
dexRate: number;
|
|
2085
|
+
/** INT(%) */
|
|
2086
|
+
intRate: number;
|
|
2087
|
+
/** LUK(%) */
|
|
2088
|
+
lukRate: number;
|
|
2089
|
+
/** 최대 HP */
|
|
2090
|
+
maxHp: number;
|
|
2091
|
+
/** 최대 MP */
|
|
2092
|
+
maxMp: number;
|
|
2093
|
+
/** 최대 HP(%) */
|
|
2094
|
+
maxHpRate: number;
|
|
2095
|
+
/** 최대 MP(%) */
|
|
2096
|
+
maxMpRate: number;
|
|
2097
|
+
/** MaxDF */
|
|
2098
|
+
maxDemonForce: number;
|
|
2099
|
+
/** 공격력 */
|
|
2100
|
+
attackPower: number;
|
|
2101
|
+
/** 마력 */
|
|
2102
|
+
magicPower: number;
|
|
2103
|
+
/** 공격력(%) */
|
|
2104
|
+
attackPowerRate: number;
|
|
2105
|
+
/** 마력(%) */
|
|
2106
|
+
magicPowerRate: number;
|
|
2107
|
+
/** 방어력 */
|
|
2108
|
+
armor: number;
|
|
2109
|
+
/** 방어력(%) */
|
|
2110
|
+
armorRate: number;
|
|
2111
|
+
/** 이동속도 */
|
|
2112
|
+
speed: number;
|
|
2113
|
+
/** 점프력 */
|
|
2114
|
+
jump: number;
|
|
2115
|
+
/** 보스 공격 시 데미지 증가(%) */
|
|
2116
|
+
bossDamage: number;
|
|
2117
|
+
/** 일반 몬스터 데미지(%) */
|
|
2118
|
+
normalDamage: number;
|
|
2119
|
+
/** 몬스터 방어율 무시(%) */
|
|
2120
|
+
ignoreMonsterArmor: number;
|
|
2121
|
+
/** 올스탯(%) */
|
|
2122
|
+
allStat: number;
|
|
2123
|
+
/** 데미지(%) */
|
|
2124
|
+
damage: number;
|
|
2125
|
+
/** 착용 레벨 감소 */
|
|
2126
|
+
reqLevelDecrease: number;
|
|
2127
|
+
/** 크리티컬 확률(%) */
|
|
2128
|
+
criticalRate: number;
|
|
2129
|
+
/** 크리티컬 데미지(%) */
|
|
2130
|
+
criticalDamage: number;
|
|
2131
|
+
/** 재사용 대기시간 감소 (초) */
|
|
2132
|
+
cooltimeReduce: number;
|
|
2133
|
+
/** 캐릭터 기준 9레벨 당 STR */
|
|
2134
|
+
strLv: number;
|
|
2135
|
+
/** 캐릭터 기준 9레벨 당 DEX */
|
|
2136
|
+
dexLv: number;
|
|
2137
|
+
/** 캐릭터 기준 9레벨 당 INT */
|
|
2138
|
+
intLv: number;
|
|
2139
|
+
/** 캐릭터 기준 9레벨 당 LUK */
|
|
2140
|
+
lukLv: number;
|
|
2141
|
+
}
|
|
2142
|
+
/**
|
|
2143
|
+
* 장비 착용 제한 정보
|
|
2144
|
+
*/
|
|
2145
|
+
declare interface GearReqData$2 {
|
|
2146
|
+
/** 착용 가능 레벨 */
|
|
2147
|
+
level?: number;
|
|
2148
|
+
/** 착용 가능 레벨 증가 */
|
|
2149
|
+
levelIncrease?: number;
|
|
2150
|
+
/** 착용 가능 직업 분류 */
|
|
2151
|
+
job?: number;
|
|
2152
|
+
/** 착용 가능 직업 */
|
|
2153
|
+
class?: number;
|
|
2154
|
+
/** 착용 가능 성별 */
|
|
2155
|
+
gender?: GearGender$2;
|
|
2156
|
+
}
|
|
2157
|
+
/**
|
|
2158
|
+
* 장비 외형 정보
|
|
2159
|
+
*/
|
|
2160
|
+
declare interface GearShapeData$2 {
|
|
2161
|
+
/** 장비 외형 이름 */
|
|
2162
|
+
name: string;
|
|
2163
|
+
/** 장비 외형 아이콘 */
|
|
2164
|
+
icon: string;
|
|
2165
|
+
}
|
|
2166
|
+
declare enum GearShare$2 {
|
|
2167
|
+
/** 없음 */
|
|
2168
|
+
None = 0,
|
|
2169
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 */
|
|
2170
|
+
AccountSharable = 1,
|
|
2171
|
+
/** 월드 내 나의 캐릭터 간 1회 이동 가능 (이동 후 교환불가) */
|
|
2172
|
+
AccountSharableOnce = 2
|
|
2173
|
+
}
|
|
2174
|
+
/**
|
|
2175
|
+
* 장비 스타포스 옵션
|
|
2176
|
+
*/
|
|
2177
|
+
declare type GearStarforceOption$2 = Pick<GearBaseOption$2, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump'>;
|
|
2178
|
+
declare enum GearTrade$2 {
|
|
2179
|
+
/** 교환 가능 */
|
|
2180
|
+
Tradeable = 0,
|
|
2181
|
+
/** 교환 불가 */
|
|
2182
|
+
TradeBlock = 1,
|
|
2183
|
+
/** 장착 시 교환 불가 */
|
|
2184
|
+
EquipTradeBlock = 2,
|
|
2185
|
+
/** 1회 교환 가능 */
|
|
2186
|
+
TradeOnce = 3
|
|
2187
|
+
}
|
|
2188
|
+
declare enum GearType$2 {
|
|
2189
|
+
/** 모자 */
|
|
2190
|
+
cap = 100,
|
|
2191
|
+
/** 얼굴장식 */
|
|
2192
|
+
faceAccessory = 101,
|
|
2193
|
+
/** 눈장식 */
|
|
2194
|
+
eyeAccessory = 102,
|
|
2195
|
+
/** 귀고리 */
|
|
2196
|
+
earrings = 103,
|
|
2197
|
+
/** 상의 */
|
|
2198
|
+
coat = 104,
|
|
2199
|
+
/** 한벌옷 */
|
|
2200
|
+
longcoat = 105,
|
|
2201
|
+
/** 하의 */
|
|
2202
|
+
pants = 106,
|
|
2203
|
+
/** 신발 */
|
|
2204
|
+
shoes = 107,
|
|
2205
|
+
/** 장갑 */
|
|
2206
|
+
glove = 108,
|
|
2207
|
+
/** 망토 */
|
|
2208
|
+
cape = 110,
|
|
2209
|
+
/** 반지 */
|
|
2210
|
+
ring = 111,
|
|
2211
|
+
/** 펜던트 */
|
|
2212
|
+
pendant = 112,
|
|
2213
|
+
/** 벨트 */
|
|
2214
|
+
belt = 113,
|
|
2215
|
+
/** 훈장 */
|
|
2216
|
+
medal = 114,
|
|
2217
|
+
/** 어깨장식 */
|
|
2218
|
+
shoulder = 115,
|
|
2219
|
+
/** 포켓 아이템 */
|
|
2220
|
+
pocket = 116,
|
|
2221
|
+
/** 뱃지 */
|
|
2222
|
+
badge = 118,
|
|
2223
|
+
/** 안드로이드 */
|
|
2224
|
+
android = 166,
|
|
2225
|
+
/** 기계 심장 */
|
|
2226
|
+
machineHeart = 167,
|
|
2227
|
+
/** 방패 */
|
|
2228
|
+
shield = 109,
|
|
2229
|
+
/** 엠블렘 */
|
|
2230
|
+
emblem = 119,
|
|
2231
|
+
/** 파워소스 */
|
|
2232
|
+
powerSource = 119020,
|
|
2233
|
+
/** 샤이닝 로드 */
|
|
2234
|
+
shiningRod = 1212,
|
|
2235
|
+
/** 튜너 */
|
|
2236
|
+
tuner = 1213,
|
|
2237
|
+
/** 브레스 슈터 */
|
|
2238
|
+
breathShooter = 1214,
|
|
2239
|
+
/** 장검 */
|
|
2240
|
+
longSword2 = 1215,
|
|
2241
|
+
/** 소울 슈터 */
|
|
2242
|
+
soulShooter = 122,
|
|
2243
|
+
/** 데스페라도 */
|
|
2244
|
+
desperado = 123,
|
|
2245
|
+
/** 에너지소드 */
|
|
2246
|
+
energySword = 124,
|
|
2247
|
+
/** ESP 리미터 */
|
|
2248
|
+
espLimiter = 126,
|
|
2249
|
+
/** 체인 (카데나) */
|
|
2250
|
+
chain = 127,
|
|
2251
|
+
/** 매직 건틀렛 */
|
|
2252
|
+
magicGauntlet = 128,
|
|
2253
|
+
/** 부채 (호영) */
|
|
2254
|
+
ritualFan = 129,
|
|
2255
|
+
/** 한손검 */
|
|
2256
|
+
ohSword = 130,
|
|
2257
|
+
/** 한손도끼 */
|
|
2258
|
+
ohAxe = 131,
|
|
2259
|
+
/** 한손둔기 */
|
|
2260
|
+
ohBlunt = 132,
|
|
2261
|
+
/** 단검 */
|
|
2262
|
+
dagger = 133,
|
|
2263
|
+
/** 블레이드 */
|
|
2264
|
+
katara = 134,
|
|
2265
|
+
/** 케인 */
|
|
2266
|
+
cane = 136,
|
|
2267
|
+
/** 완드 */
|
|
2268
|
+
wand = 137,
|
|
2269
|
+
/** 스태프 */
|
|
2270
|
+
staff = 138,
|
|
2271
|
+
/** 두손검 */
|
|
2272
|
+
thSword = 140,
|
|
2273
|
+
/** 차크람 */
|
|
2274
|
+
chakram = 1404,
|
|
2275
|
+
/** 두손도끼 */
|
|
2276
|
+
thAxe = 141,
|
|
2277
|
+
/** 두손둔기 */
|
|
2278
|
+
thBlunt = 142,
|
|
2279
|
+
/** 창 */
|
|
2280
|
+
spear = 143,
|
|
2281
|
+
/** 폴암 */
|
|
2282
|
+
polearm = 144,
|
|
2283
|
+
/** 활 */
|
|
2284
|
+
bow = 145,
|
|
2285
|
+
/** 석궁 */
|
|
2286
|
+
crossbow = 146,
|
|
2287
|
+
/** 아대 */
|
|
2288
|
+
claw = 147,
|
|
2289
|
+
/** 너클 */
|
|
2290
|
+
knuckle = 148,
|
|
2291
|
+
/** 건 */
|
|
2292
|
+
gun = 149,
|
|
2293
|
+
/** 삽 */
|
|
2294
|
+
shovel = 150,
|
|
2295
|
+
/** 곡괭이 */
|
|
2296
|
+
pickaxe = 151,
|
|
2297
|
+
/** 듀얼 보우건 */
|
|
2298
|
+
dualBowguns = 152,
|
|
2299
|
+
/** 핸드캐논 */
|
|
2300
|
+
handCannon = 153,
|
|
2301
|
+
/** 대검 */
|
|
2302
|
+
heavySword = 156,
|
|
2303
|
+
/** 태도 */
|
|
2304
|
+
longSword = 157,
|
|
2305
|
+
/** 건틀렛 리볼버 */
|
|
2306
|
+
gauntletRevolver = 158,
|
|
2307
|
+
/** 에인션트 보우 */
|
|
2308
|
+
ancientBow = 159,
|
|
2309
|
+
/** 소울실드 */
|
|
2310
|
+
soulShield = 1098,
|
|
2311
|
+
/** 포스실드 */
|
|
2312
|
+
demonShield = 1099,
|
|
2313
|
+
/** 마법화살 */
|
|
2314
|
+
magicArrow = 135200,
|
|
2315
|
+
/** 카드 */
|
|
2316
|
+
card = 135210,
|
|
2317
|
+
/** 메달 */
|
|
2318
|
+
medallion = 135220,
|
|
2319
|
+
/** 로자리오 */
|
|
2320
|
+
rosary = 135221,
|
|
2321
|
+
/** 쇠사슬 */
|
|
2322
|
+
ironChain = 135222,
|
|
2323
|
+
/** 마도서 (불,독) */
|
|
2324
|
+
magicBook1 = 135223,
|
|
2325
|
+
/** 마도서 (얼음,번개) */
|
|
2326
|
+
magicBook2 = 135224,
|
|
2327
|
+
/** 마도서 (비숍) */
|
|
2328
|
+
magicBook3 = 135225,
|
|
2329
|
+
/** 화살깃 */
|
|
2330
|
+
arrowFletching = 135226,
|
|
2331
|
+
/** 활골무 */
|
|
2332
|
+
bowThimble = 135227,
|
|
2333
|
+
/** 단검용 검집 */
|
|
2334
|
+
daggerScabbard = 135228,
|
|
2335
|
+
/** 부적 */
|
|
2336
|
+
charm = 135229,
|
|
2337
|
+
/** 오브 */
|
|
2338
|
+
orb = 135240,
|
|
2339
|
+
/** 용의 정수 */
|
|
2340
|
+
dragonEssence = 135250,
|
|
2341
|
+
/** 소울링 */
|
|
2342
|
+
soulRing = 135260,
|
|
2343
|
+
/** 매그넘 */
|
|
2344
|
+
magnum = 135270,
|
|
2345
|
+
/** 리스트밴드 */
|
|
2346
|
+
wristBand = 135290,
|
|
2347
|
+
/** 조준기 */
|
|
2348
|
+
farSight = 135291,
|
|
2349
|
+
/** 화약통 */
|
|
2350
|
+
powderKeg = 135292,
|
|
2351
|
+
/** 무게추 */
|
|
2352
|
+
mass = 135293,
|
|
2353
|
+
/** 문서 */
|
|
2354
|
+
document = 135294,
|
|
2355
|
+
/** 마법구슬 */
|
|
2356
|
+
magicMarble = 135295,
|
|
2357
|
+
/** 화살촉 */
|
|
2358
|
+
arrowhead = 135296,
|
|
2359
|
+
/** 보석 (시그너스) */
|
|
2360
|
+
jewel = 135297,
|
|
2361
|
+
/** 화약통 2 */
|
|
2362
|
+
powderKeg2 = 135298,
|
|
2363
|
+
/** 컨트롤러 */
|
|
2364
|
+
controller = 135300,
|
|
2365
|
+
/** 여우구슬 */
|
|
2366
|
+
foxMarble = 135310,
|
|
2367
|
+
/** 체스피스 */
|
|
2368
|
+
chessPiece = 135320,
|
|
2369
|
+
/** 무기 전송장치 */
|
|
2370
|
+
transmitter = 135330,
|
|
2371
|
+
/** 장약 */
|
|
2372
|
+
charge = 135340,
|
|
2373
|
+
/** 매직윙 */
|
|
2374
|
+
magicWing = 135350,
|
|
2375
|
+
/** 패스 오브 어비스 */
|
|
2376
|
+
pathOfAbyss = 135360,
|
|
2377
|
+
/** 렐릭 */
|
|
2378
|
+
relic = 135370,
|
|
2379
|
+
/** 선추 */
|
|
2380
|
+
fanTassel = 135380,
|
|
2381
|
+
/** 브레이슬릿 */
|
|
2382
|
+
bracelet = 135400,
|
|
2383
|
+
/** 웨폰 벨트 */
|
|
2384
|
+
weaponBelt = 135401,
|
|
2385
|
+
/** 노리개 */
|
|
2386
|
+
ornament = 135402,
|
|
2387
|
+
/** 헥스시커 */
|
|
2388
|
+
hexSeeker = 135403,
|
|
2389
|
+
/** 여의보주 */
|
|
2390
|
+
sacredJewel = 135404,
|
|
2391
|
+
/** 펫장비 */
|
|
2392
|
+
petEquip = 180,
|
|
2393
|
+
/** 메카닉 엔진 */
|
|
2394
|
+
machineEngine = 161,
|
|
2395
|
+
/** 메카닉 암 */
|
|
2396
|
+
machineArms = 162,
|
|
2397
|
+
/** 메카닉 레그 */
|
|
2398
|
+
machineLegs = 163,
|
|
2399
|
+
/** 메카닉 프레임 */
|
|
2400
|
+
machineBody = 164,
|
|
2401
|
+
/** 메카닉 트렌지스터 */
|
|
2402
|
+
machineTransistors = 165,
|
|
2403
|
+
/** 드래곤 모자 */
|
|
2404
|
+
dragonMask = 194,
|
|
2405
|
+
/** 드래곤 펜던트 */
|
|
2406
|
+
dragonPendant = 195,
|
|
2407
|
+
/** 드래곤 날개장식 */
|
|
2408
|
+
dragonWings = 196,
|
|
2409
|
+
/** 드래곤 꼬리장식 */
|
|
2410
|
+
dragonTail = 197
|
|
2411
|
+
}
|
|
2412
|
+
/**
|
|
2413
|
+
* 장비 주문서 옵션
|
|
2414
|
+
*/
|
|
2415
|
+
declare type GearUpgradeOption$2 = Pick<GearBaseOption$2, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump'>;
|
|
2416
|
+
/**
|
|
2417
|
+
* 잠재옵션 정보
|
|
2418
|
+
*/
|
|
2419
|
+
declare interface PotentialData$2 {
|
|
2420
|
+
/** 잠재능력 ID */
|
|
2421
|
+
id?: number;
|
|
2422
|
+
/** 잠재능력 등급 */
|
|
2423
|
+
grade: PotentialGrade$2;
|
|
2424
|
+
/** 장비에 표시되는 이름 */
|
|
2425
|
+
summary: string;
|
|
2426
|
+
/** 잠재능력 옵션 */
|
|
2427
|
+
option: Partial<PotentialOption$2>;
|
|
2428
|
+
}
|
|
2429
|
+
declare enum PotentialGrade$2 {
|
|
2430
|
+
Normal = 0,
|
|
2431
|
+
Rare = 1,
|
|
2432
|
+
Epic = 2,
|
|
2433
|
+
Unique = 3,
|
|
2434
|
+
Legendary = 4
|
|
2435
|
+
}
|
|
2436
|
+
declare type PotentialOption$2 = Pick<GearOption$2, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'maxHp' | 'maxMp' | 'maxHpRate' | 'maxMpRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'armor' | 'armorRate' | 'speed' | 'jump' | 'bossDamage' | 'normalDamage' | 'ignoreMonsterArmor' | 'damage' | 'criticalRate' | 'criticalDamage' | 'cooltimeReduce' | 'strLv' | 'dexLv' | 'intLv' | 'lukLv'>;
|
|
2437
|
+
/**
|
|
2438
|
+
* 소울 충전 옵션
|
|
2439
|
+
*/
|
|
2440
|
+
declare type SoulChargeOption$2 = Pick<GearOption$2, 'attackPower' | 'magicPower'>;
|
|
2441
|
+
/**
|
|
2442
|
+
* 소울 정보
|
|
2443
|
+
*/
|
|
2444
|
+
declare interface SoulData$2 {
|
|
2445
|
+
/** 소울 명 */
|
|
2446
|
+
name: string;
|
|
2447
|
+
/** 소울 스킬 명 */
|
|
2448
|
+
skill: string;
|
|
2449
|
+
/** 소울 옵션 */
|
|
2450
|
+
option: Partial<SoulOption$2>;
|
|
2451
|
+
/** 소울 충전 옵션 배율 */
|
|
2452
|
+
chargeFactor?: 1 | 2;
|
|
2453
|
+
}
|
|
2454
|
+
/**
|
|
2455
|
+
* 소울 옵션
|
|
2456
|
+
*/
|
|
2457
|
+
declare type SoulOption$2 = Pick<GearOption$2, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'maxHp' | 'maxMp' | 'criticalRate' | 'ignoreMonsterArmor' | 'bossDamage'>;
|
|
2458
|
+
/**
|
|
2459
|
+
* 소울 웨폰 정보
|
|
2460
|
+
*/
|
|
2461
|
+
declare interface SoulSlotData$2 {
|
|
2462
|
+
/** 소울 아이템 */
|
|
2463
|
+
soul?: SoulData$2;
|
|
2464
|
+
/** 소울 충전량 */
|
|
2465
|
+
charge?: number;
|
|
2466
|
+
/** 소울 충전 옵션 */
|
|
2467
|
+
chargeOption?: Partial<SoulChargeOption$2>;
|
|
2468
|
+
}
|
|
2469
|
+
//#endregion
|
|
2470
|
+
//#region ../../node_modules/.pnpm/@malib+gear@1.0.0-next.15/node_modules/@malib/gear/dist/_tsup-dts-rollup.d.ts
|
|
2471
|
+
/**
|
|
2472
|
+
* 추가 옵션 정보
|
|
2473
|
+
*/
|
|
2474
|
+
declare interface AddOptionData$1 {
|
|
2475
|
+
/** 추가 옵션 종류 */
|
|
2476
|
+
type: AddOptionType$1;
|
|
2477
|
+
/** 추가 옵션 단계 */
|
|
2478
|
+
grade: AddOptionGrade$1;
|
|
2479
|
+
/** 추가 옵션 수치 */
|
|
2480
|
+
value: number;
|
|
2481
|
+
}
|
|
2482
|
+
/**
|
|
2483
|
+
* 추가 옵션 단계
|
|
2484
|
+
*/
|
|
2485
|
+
declare type AddOptionGrade$1 = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
2486
|
+
/**
|
|
2487
|
+
* 추가 옵션 종류
|
|
2488
|
+
*/
|
|
2489
|
+
declare enum AddOptionType$1 {
|
|
2490
|
+
/** STR */
|
|
2491
|
+
str = "str",
|
|
2492
|
+
/** DEX */
|
|
2493
|
+
dex = "dex",
|
|
2494
|
+
/** INT */
|
|
2495
|
+
int = "int",
|
|
2496
|
+
/** LUK */
|
|
2497
|
+
luk = "luk",
|
|
2498
|
+
/** STR, DEX */
|
|
2499
|
+
str_dex = "str,dex",
|
|
2500
|
+
/** STR, INT */
|
|
2501
|
+
str_int = "str,int",
|
|
2502
|
+
/** STR, LUK */
|
|
2503
|
+
str_luk = "str,luk",
|
|
2504
|
+
/** DEX, INT */
|
|
2505
|
+
dex_int = "dex,int",
|
|
2506
|
+
/** DEX, LUK */
|
|
2507
|
+
dex_luk = "dex,luk",
|
|
2508
|
+
/** INT, LUK */
|
|
2509
|
+
int_luk = "int,luk",
|
|
2510
|
+
/** 최대 HP */
|
|
2511
|
+
maxHp = "maxHp",
|
|
2512
|
+
/** 최대 MP */
|
|
2513
|
+
maxMp = "maxMp",
|
|
2514
|
+
/** 공격력 */
|
|
2515
|
+
attackPower = "attackPower",
|
|
2516
|
+
/** 마력 */
|
|
2517
|
+
magicPower = "magicPower",
|
|
2518
|
+
/** 방어력 */
|
|
2519
|
+
armor = "armor",
|
|
2520
|
+
/** 이동속도 */
|
|
2521
|
+
speed = "speed",
|
|
2522
|
+
/** 점프력 */
|
|
2523
|
+
jump = "jump",
|
|
2524
|
+
/** 보스 공격 시 데미지 증가(%) */
|
|
2525
|
+
bossDamage = "bossDamage",
|
|
2526
|
+
/** 데미지(%) */
|
|
2527
|
+
damage = "damage",
|
|
2528
|
+
/** 올스탯(%) */
|
|
2529
|
+
allStat = "allStat",
|
|
2530
|
+
/** 착용 레벨 감소 */
|
|
2531
|
+
reqLevelDecrease = "reqLevelDecrease"
|
|
2532
|
+
}
|
|
2533
|
+
/**
|
|
2534
|
+
* 장비 추가 옵션
|
|
2535
|
+
*/
|
|
2536
|
+
declare type GearAddOption$1 = Pick<GearBaseOption$1, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump' | 'bossDamage' | 'allStat' | 'damage' | 'reqLevelDecrease'>;
|
|
2537
|
+
/**
|
|
2538
|
+
* 장비 속성 정보
|
|
2539
|
+
*/
|
|
2540
|
+
declare interface GearAttributeData$1 {
|
|
2541
|
+
/** 고유 아이템 */
|
|
2542
|
+
only?: boolean;
|
|
2543
|
+
/** 교환 가능 여부 */
|
|
2544
|
+
trade?: GearTrade$1;
|
|
2545
|
+
/** 고유장착 아이템 */
|
|
2546
|
+
onlyEquip?: boolean;
|
|
2547
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 여부 */
|
|
2548
|
+
share?: GearShare$1;
|
|
2549
|
+
/** 슈페리얼 */
|
|
2550
|
+
superior?: boolean;
|
|
2551
|
+
/** 공격 속도 */
|
|
2552
|
+
attackSpeed?: number;
|
|
2553
|
+
/** 주문서 강화 가능 여부 */
|
|
2554
|
+
canScroll?: GearCapability$1;
|
|
2555
|
+
/** 스타포스 강화 가능 여부 */
|
|
2556
|
+
canStarforce?: GearCapability$1;
|
|
2557
|
+
/** 추가 옵션 설정 가능 여부 */
|
|
2558
|
+
canAddOption?: GearCapability$1;
|
|
2559
|
+
/** 잠재능력 설정 가능 여부 */
|
|
2560
|
+
canPotential?: GearCapability$1;
|
|
2561
|
+
/** 에디셔널 잠재능력 설정 가능 여부 */
|
|
2562
|
+
canAdditionalPotential?: GearCapability$1;
|
|
2563
|
+
/** 스페셜 아이템 여부 */
|
|
2564
|
+
specialGrade?: boolean;
|
|
2565
|
+
/** 최대 스타포스 강화 단계 */
|
|
2566
|
+
fixedMaxStar?: number;
|
|
2567
|
+
/** 카르마의 가위 사용 가능 여부 */
|
|
2568
|
+
cuttable?: GearCuttable$1;
|
|
2569
|
+
/** 가위 사용 가능 횟수 */
|
|
2570
|
+
cuttableCount?: number;
|
|
2571
|
+
/** 최대 가위 사용 가능 횟수 */
|
|
2572
|
+
totalCuttableCount?: number;
|
|
2573
|
+
/** 쉐어 네임 텍을 사용 가능 여부 */
|
|
2574
|
+
accountShareTag?: boolean;
|
|
2575
|
+
/** 훈장 신비의 모루 사용 불가 여부 */
|
|
2576
|
+
noShapeChange?: boolean;
|
|
2577
|
+
/** 세트 효과 ID */
|
|
2578
|
+
setItemId?: number;
|
|
2579
|
+
/** 럭키 아이템 */
|
|
2580
|
+
lucky?: boolean;
|
|
2581
|
+
/** 장착 시 획득 경험치 */
|
|
2582
|
+
incline?: Partial<GearIncline$1>;
|
|
2583
|
+
/** 보스 드롭 여부 */
|
|
2584
|
+
bossReward?: boolean;
|
|
2585
|
+
/** 사용 가능 스킬 */
|
|
2586
|
+
skills?: string[];
|
|
2587
|
+
/** 성장 경험치 */
|
|
2588
|
+
growthExp?: number;
|
|
2589
|
+
/** 성장 레벨 */
|
|
2590
|
+
growthLevel?: number;
|
|
2591
|
+
/** 장비 유효 기간(KST) */
|
|
2592
|
+
dateExpire?: string;
|
|
2593
|
+
}
|
|
2594
|
+
/**
|
|
2595
|
+
* 장비 기본 옵션
|
|
2596
|
+
*/
|
|
2597
|
+
declare type GearBaseOption$1 = Pick<GearOption$1, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'maxHpRate' | 'maxMpRate' | 'maxDemonForce' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump' | 'bossDamage' | 'ignoreMonsterArmor' | 'allStat' | 'damage' | 'reqLevelDecrease'>;
|
|
2598
|
+
declare enum GearCapability$1 {
|
|
2599
|
+
/** 설정 불가 */
|
|
2600
|
+
Cannot = 0,
|
|
2601
|
+
/** 설정 가능 */
|
|
2602
|
+
Can = 1,
|
|
2603
|
+
/** 재설정 불가 */
|
|
2604
|
+
Fixed = 2
|
|
2605
|
+
}
|
|
2606
|
+
declare enum GearCuttable$1 {
|
|
2607
|
+
/** 없음 */
|
|
2608
|
+
None = 0,
|
|
2609
|
+
/** 카르마의 가위 또는 실버 카르마의 가위를 사용하면 1회 교환이 가능하게 할 수 있습니다. */
|
|
2610
|
+
Silver = 1,
|
|
2611
|
+
/** 플래티넘 카르마의 가위를 사용하면 1회 교환이 가능하게 할 수 있습니다. */
|
|
2612
|
+
Platinum = 2
|
|
2613
|
+
}
|
|
2614
|
+
/**
|
|
2615
|
+
* 장비 정보
|
|
2616
|
+
*/
|
|
2617
|
+
declare interface GearData$1 {
|
|
2618
|
+
/** 장비 정보 버전 */
|
|
2619
|
+
version: typeof VERSION;
|
|
2620
|
+
/** 아이템 ID */
|
|
2621
|
+
id: number;
|
|
2622
|
+
/** 장비명 */
|
|
2623
|
+
name: string;
|
|
2624
|
+
/** 장비 설명 */
|
|
2625
|
+
desc?: string;
|
|
2626
|
+
/** 장비 아이콘 */
|
|
2627
|
+
icon: string;
|
|
2628
|
+
/** 장비 외형 */
|
|
2629
|
+
shape?: GearShapeData$1;
|
|
2630
|
+
/** 이름 새기기 */
|
|
2631
|
+
itemTag?: string;
|
|
2632
|
+
/** 장비 분류 */
|
|
2633
|
+
type: GearType$1;
|
|
2634
|
+
/** 장비 착용 제한 */
|
|
2635
|
+
req: GearReqData$1;
|
|
2636
|
+
/** 장비 속성 */
|
|
2637
|
+
attributes: GearAttributeData$1;
|
|
2638
|
+
/** 장비 기본 옵션 */
|
|
2639
|
+
baseOption?: Partial<GearBaseOption$1>;
|
|
2640
|
+
/** 장비 추가 옵션 */
|
|
2641
|
+
addOption?: Partial<GearAddOption$1>;
|
|
2642
|
+
/** 장비 주문서 강화 옵션 */
|
|
2643
|
+
upgradeOption?: Partial<GearUpgradeOption$1>;
|
|
2644
|
+
/** 장비 스타포스 옵션 */
|
|
2645
|
+
starforceOption?: Partial<GearStarforceOption$1>;
|
|
2646
|
+
/** 추가 옵션 목록 */
|
|
2647
|
+
addOptions?: AddOptionData$1[];
|
|
2648
|
+
/** 업그레이드 횟수 */
|
|
2649
|
+
scrollUpgradeCount?: number;
|
|
2650
|
+
/** 복구 가능 횟수 */
|
|
2651
|
+
scrollResilienceCount?: number;
|
|
2652
|
+
/** 업그레이드 가능 횟수 */
|
|
2653
|
+
scrollUpgradeableCount?: number;
|
|
2654
|
+
/** 강화 단계 */
|
|
2655
|
+
star?: number;
|
|
2656
|
+
/** 놀라운 장비 강화 주문서 사용 여부 */
|
|
2657
|
+
starScroll?: boolean;
|
|
2658
|
+
/** 소울 웨폰 정보 */
|
|
2659
|
+
soulSlot?: SoulSlotData$1;
|
|
2660
|
+
/** 잠재능력 등급 */
|
|
2661
|
+
potentialGrade?: PotentialGrade$1;
|
|
2662
|
+
/** 잠재능력 목록 */
|
|
2663
|
+
potentials?: PotentialData$1[];
|
|
2664
|
+
/** 에디셔널 잠재능력 등급 */
|
|
2665
|
+
additionalPotentialGrade?: PotentialGrade$1;
|
|
2666
|
+
/** 에디셔널 잠재능력 목록 */
|
|
2667
|
+
additionalPotentials?: PotentialData$1[];
|
|
2668
|
+
/** 장비 익셉셔널 옵션 */
|
|
2669
|
+
exceptionalOption?: Partial<GearExceptionalOption$1>;
|
|
2670
|
+
/** 익셉셔널 강화 횟수 */
|
|
2671
|
+
exceptionalUpgradeCount?: number;
|
|
2672
|
+
/** 익셉셔널 강화 가능 횟수 */
|
|
2673
|
+
exceptionalUpgradeableCount?: number;
|
|
2674
|
+
}
|
|
2675
|
+
/**
|
|
2676
|
+
* 장비 익셉셔널 옵션
|
|
2677
|
+
*/
|
|
2678
|
+
declare type GearExceptionalOption$1 = Pick<GearBaseOption$1, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower'>;
|
|
2679
|
+
/**
|
|
2680
|
+
* 착용 가능 성별
|
|
2681
|
+
*/
|
|
2682
|
+
declare enum GearGender$1 {
|
|
2683
|
+
/** 남 */
|
|
2684
|
+
Male = 0,
|
|
2685
|
+
/** 여 */
|
|
2686
|
+
Female = 1
|
|
2687
|
+
}
|
|
2688
|
+
declare interface GearIncline$1 {
|
|
2689
|
+
/** 카리스마 */
|
|
2690
|
+
charisma: number;
|
|
2691
|
+
/** 통찰력 */
|
|
2692
|
+
insight: number;
|
|
2693
|
+
/** 의지 */
|
|
2694
|
+
will: number;
|
|
2695
|
+
/** 손재주 */
|
|
2696
|
+
craft: number;
|
|
2697
|
+
/** 감성 */
|
|
2698
|
+
sense: number;
|
|
2699
|
+
/** 매력 */
|
|
2700
|
+
charm: number;
|
|
2701
|
+
}
|
|
2702
|
+
/**
|
|
2703
|
+
* 장비 옵션
|
|
2704
|
+
*/
|
|
2705
|
+
declare interface GearOption$1 {
|
|
2706
|
+
/** STR */
|
|
2707
|
+
str: number;
|
|
2708
|
+
/** DEX */
|
|
2709
|
+
dex: number;
|
|
2710
|
+
/** INT */
|
|
2711
|
+
int: number;
|
|
2712
|
+
/** LUK */
|
|
2713
|
+
luk: number;
|
|
2714
|
+
/** STR(%) */
|
|
2715
|
+
strRate: number;
|
|
2716
|
+
/** DEX(%) */
|
|
2717
|
+
dexRate: number;
|
|
2718
|
+
/** INT(%) */
|
|
2719
|
+
intRate: number;
|
|
2720
|
+
/** LUK(%) */
|
|
2721
|
+
lukRate: number;
|
|
2722
|
+
/** 최대 HP */
|
|
2723
|
+
maxHp: number;
|
|
2724
|
+
/** 최대 MP */
|
|
2725
|
+
maxMp: number;
|
|
2726
|
+
/** 최대 HP(%) */
|
|
2727
|
+
maxHpRate: number;
|
|
2728
|
+
/** 최대 MP(%) */
|
|
2729
|
+
maxMpRate: number;
|
|
2730
|
+
/** MaxDF */
|
|
2731
|
+
maxDemonForce: number;
|
|
2732
|
+
/** 공격력 */
|
|
2733
|
+
attackPower: number;
|
|
2734
|
+
/** 마력 */
|
|
2735
|
+
magicPower: number;
|
|
2736
|
+
/** 공격력(%) */
|
|
2737
|
+
attackPowerRate: number;
|
|
2738
|
+
/** 마력(%) */
|
|
2739
|
+
magicPowerRate: number;
|
|
2740
|
+
/** 방어력 */
|
|
2741
|
+
armor: number;
|
|
2742
|
+
/** 방어력(%) */
|
|
2743
|
+
armorRate: number;
|
|
2744
|
+
/** 이동속도 */
|
|
2745
|
+
speed: number;
|
|
2746
|
+
/** 점프력 */
|
|
2747
|
+
jump: number;
|
|
2748
|
+
/** 보스 공격 시 데미지 증가(%) */
|
|
2749
|
+
bossDamage: number;
|
|
2750
|
+
/** 일반 몬스터 데미지(%) */
|
|
2751
|
+
normalDamage: number;
|
|
2752
|
+
/** 몬스터 방어율 무시(%) */
|
|
2753
|
+
ignoreMonsterArmor: number;
|
|
2754
|
+
/** 올스탯(%) */
|
|
2755
|
+
allStat: number;
|
|
2756
|
+
/** 데미지(%) */
|
|
2757
|
+
damage: number;
|
|
2758
|
+
/** 착용 레벨 감소 */
|
|
2759
|
+
reqLevelDecrease: number;
|
|
2760
|
+
/** 크리티컬 확률(%) */
|
|
2761
|
+
criticalRate: number;
|
|
2762
|
+
/** 크리티컬 데미지(%) */
|
|
2763
|
+
criticalDamage: number;
|
|
2764
|
+
/** 재사용 대기시간 감소 (초) */
|
|
2765
|
+
cooltimeReduce: number;
|
|
2766
|
+
/** 캐릭터 기준 9레벨 당 STR */
|
|
2767
|
+
strLv: number;
|
|
2768
|
+
/** 캐릭터 기준 9레벨 당 DEX */
|
|
2769
|
+
dexLv: number;
|
|
2770
|
+
/** 캐릭터 기준 9레벨 당 INT */
|
|
2771
|
+
intLv: number;
|
|
2772
|
+
/** 캐릭터 기준 9레벨 당 LUK */
|
|
2773
|
+
lukLv: number;
|
|
2774
|
+
}
|
|
2775
|
+
/**
|
|
2776
|
+
* 장비 착용 제한 정보
|
|
2777
|
+
*/
|
|
2778
|
+
declare interface GearReqData$1 {
|
|
2779
|
+
/** 착용 가능 레벨 */
|
|
2780
|
+
level?: number;
|
|
2781
|
+
/** 착용 가능 레벨 증가 */
|
|
2782
|
+
levelIncrease?: number;
|
|
2783
|
+
/** 착용 가능 직업 분류 */
|
|
2784
|
+
job?: number;
|
|
2785
|
+
/** 착용 가능 직업 */
|
|
2786
|
+
class?: number;
|
|
2787
|
+
/** 착용 가능 성별 */
|
|
2788
|
+
gender?: GearGender$1;
|
|
2789
|
+
}
|
|
2790
|
+
/**
|
|
2791
|
+
* 장비 외형 정보
|
|
2792
|
+
*/
|
|
2793
|
+
declare interface GearShapeData$1 {
|
|
2794
|
+
/** 장비 외형 이름 */
|
|
2795
|
+
name: string;
|
|
2796
|
+
/** 장비 외형 아이콘 */
|
|
2797
|
+
icon: string;
|
|
2798
|
+
}
|
|
2799
|
+
declare enum GearShare$1 {
|
|
2800
|
+
/** 없음 */
|
|
2801
|
+
None = 0,
|
|
2802
|
+
/** 월드 내 나의 캐릭터 간 이동 가능 */
|
|
2803
|
+
AccountSharable = 1,
|
|
2804
|
+
/** 월드 내 나의 캐릭터 간 1회 이동 가능 (이동 후 교환불가) */
|
|
2805
|
+
AccountSharableOnce = 2
|
|
2806
|
+
}
|
|
2807
|
+
/**
|
|
2808
|
+
* 장비 스타포스 옵션
|
|
2809
|
+
*/
|
|
2810
|
+
declare type GearStarforceOption$1 = Pick<GearBaseOption$1, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump'>;
|
|
2811
|
+
declare enum GearTrade$1 {
|
|
2812
|
+
/** 교환 가능 */
|
|
2813
|
+
Tradeable = 0,
|
|
2814
|
+
/** 교환 불가 */
|
|
2815
|
+
TradeBlock = 1,
|
|
2816
|
+
/** 장착 시 교환 불가 */
|
|
2817
|
+
EquipTradeBlock = 2,
|
|
2818
|
+
/** 1회 교환 가능 */
|
|
2819
|
+
TradeOnce = 3
|
|
2820
|
+
}
|
|
2821
|
+
declare enum GearType$1 {
|
|
2822
|
+
/** 모자 */
|
|
2823
|
+
cap = 100,
|
|
2824
|
+
/** 얼굴장식 */
|
|
2825
|
+
faceAccessory = 101,
|
|
2826
|
+
/** 눈장식 */
|
|
2827
|
+
eyeAccessory = 102,
|
|
2828
|
+
/** 귀고리 */
|
|
2829
|
+
earrings = 103,
|
|
2830
|
+
/** 상의 */
|
|
2831
|
+
coat = 104,
|
|
2832
|
+
/** 한벌옷 */
|
|
2833
|
+
longcoat = 105,
|
|
2834
|
+
/** 하의 */
|
|
2835
|
+
pants = 106,
|
|
2836
|
+
/** 신발 */
|
|
2837
|
+
shoes = 107,
|
|
2838
|
+
/** 장갑 */
|
|
2839
|
+
glove = 108,
|
|
2840
|
+
/** 망토 */
|
|
2841
|
+
cape = 110,
|
|
2842
|
+
/** 반지 */
|
|
2843
|
+
ring = 111,
|
|
2844
|
+
/** 펜던트 */
|
|
2845
|
+
pendant = 112,
|
|
2846
|
+
/** 벨트 */
|
|
2847
|
+
belt = 113,
|
|
2848
|
+
/** 훈장 */
|
|
2849
|
+
medal = 114,
|
|
2850
|
+
/** 어깨장식 */
|
|
2851
|
+
shoulder = 115,
|
|
2852
|
+
/** 포켓 아이템 */
|
|
2853
|
+
pocket = 116,
|
|
2854
|
+
/** 뱃지 */
|
|
2855
|
+
badge = 118,
|
|
2856
|
+
/** 안드로이드 */
|
|
2857
|
+
android = 166,
|
|
2858
|
+
/** 기계 심장 */
|
|
2859
|
+
machineHeart = 167,
|
|
2860
|
+
/** 방패 */
|
|
2861
|
+
shield = 109,
|
|
2862
|
+
/** 엠블렘 */
|
|
2863
|
+
emblem = 119,
|
|
2864
|
+
/** 파워소스 */
|
|
2865
|
+
powerSource = 119020,
|
|
2866
|
+
/** 샤이닝 로드 */
|
|
2867
|
+
shiningRod = 1212,
|
|
2868
|
+
/** 튜너 */
|
|
2869
|
+
tuner = 1213,
|
|
2870
|
+
/** 브레스 슈터 */
|
|
2871
|
+
breathShooter = 1214,
|
|
2872
|
+
/** 장검 */
|
|
2873
|
+
longSword2 = 1215,
|
|
2874
|
+
/** 소울 슈터 */
|
|
2875
|
+
soulShooter = 122,
|
|
2876
|
+
/** 데스페라도 */
|
|
2877
|
+
desperado = 123,
|
|
2878
|
+
/** 에너지소드 */
|
|
2879
|
+
energySword = 124,
|
|
2880
|
+
/** ESP 리미터 */
|
|
2881
|
+
espLimiter = 126,
|
|
2882
|
+
/** 체인 (카데나) */
|
|
2883
|
+
chain = 127,
|
|
2884
|
+
/** 매직 건틀렛 */
|
|
2885
|
+
magicGauntlet = 128,
|
|
2886
|
+
/** 부채 (호영) */
|
|
2887
|
+
ritualFan = 129,
|
|
2888
|
+
/** 한손검 */
|
|
2889
|
+
ohSword = 130,
|
|
2890
|
+
/** 한손도끼 */
|
|
2891
|
+
ohAxe = 131,
|
|
2892
|
+
/** 한손둔기 */
|
|
2893
|
+
ohBlunt = 132,
|
|
2894
|
+
/** 단검 */
|
|
2895
|
+
dagger = 133,
|
|
2896
|
+
/** 블레이드 */
|
|
2897
|
+
katara = 134,
|
|
2898
|
+
/** 케인 */
|
|
2899
|
+
cane = 136,
|
|
2900
|
+
/** 완드 */
|
|
2901
|
+
wand = 137,
|
|
2902
|
+
/** 스태프 */
|
|
2903
|
+
staff = 138,
|
|
2904
|
+
/** 두손검 */
|
|
2905
|
+
thSword = 140,
|
|
2906
|
+
/** 차크람 */
|
|
2907
|
+
chakram = 1404,
|
|
2908
|
+
/** 두손도끼 */
|
|
2909
|
+
thAxe = 141,
|
|
2910
|
+
/** 두손둔기 */
|
|
2911
|
+
thBlunt = 142,
|
|
2912
|
+
/** 창 */
|
|
2913
|
+
spear = 143,
|
|
2914
|
+
/** 폴암 */
|
|
2915
|
+
polearm = 144,
|
|
2916
|
+
/** 활 */
|
|
2917
|
+
bow = 145,
|
|
2918
|
+
/** 석궁 */
|
|
2919
|
+
crossbow = 146,
|
|
2920
|
+
/** 아대 */
|
|
2921
|
+
claw = 147,
|
|
2922
|
+
/** 너클 */
|
|
2923
|
+
knuckle = 148,
|
|
2924
|
+
/** 건 */
|
|
2925
|
+
gun = 149,
|
|
2926
|
+
/** 삽 */
|
|
2927
|
+
shovel = 150,
|
|
2928
|
+
/** 곡괭이 */
|
|
2929
|
+
pickaxe = 151,
|
|
2930
|
+
/** 듀얼 보우건 */
|
|
2931
|
+
dualBowguns = 152,
|
|
2932
|
+
/** 핸드캐논 */
|
|
2933
|
+
handCannon = 153,
|
|
2934
|
+
/** 대검 */
|
|
2935
|
+
heavySword = 156,
|
|
2936
|
+
/** 태도 */
|
|
2937
|
+
longSword = 157,
|
|
2938
|
+
/** 건틀렛 리볼버 */
|
|
2939
|
+
gauntletRevolver = 158,
|
|
2940
|
+
/** 에인션트 보우 */
|
|
2941
|
+
ancientBow = 159,
|
|
2942
|
+
/** 소울실드 */
|
|
2943
|
+
soulShield = 1098,
|
|
2944
|
+
/** 포스실드 */
|
|
2945
|
+
demonShield = 1099,
|
|
2946
|
+
/** 마법화살 */
|
|
2947
|
+
magicArrow = 135200,
|
|
2948
|
+
/** 카드 */
|
|
2949
|
+
card = 135210,
|
|
2950
|
+
/** 메달 */
|
|
2951
|
+
medallion = 135220,
|
|
2952
|
+
/** 로자리오 */
|
|
2953
|
+
rosary = 135221,
|
|
2954
|
+
/** 쇠사슬 */
|
|
2955
|
+
ironChain = 135222,
|
|
2956
|
+
/** 마도서 (불,독) */
|
|
2957
|
+
magicBook1 = 135223,
|
|
2958
|
+
/** 마도서 (얼음,번개) */
|
|
2959
|
+
magicBook2 = 135224,
|
|
2960
|
+
/** 마도서 (비숍) */
|
|
2961
|
+
magicBook3 = 135225,
|
|
2962
|
+
/** 화살깃 */
|
|
2963
|
+
arrowFletching = 135226,
|
|
2964
|
+
/** 활골무 */
|
|
2965
|
+
bowThimble = 135227,
|
|
2966
|
+
/** 단검용 검집 */
|
|
2967
|
+
daggerScabbard = 135228,
|
|
2968
|
+
/** 부적 */
|
|
2969
|
+
charm = 135229,
|
|
2970
|
+
/** 오브 */
|
|
2971
|
+
orb = 135240,
|
|
2972
|
+
/** 용의 정수 */
|
|
2973
|
+
dragonEssence = 135250,
|
|
2974
|
+
/** 소울링 */
|
|
2975
|
+
soulRing = 135260,
|
|
2976
|
+
/** 매그넘 */
|
|
2977
|
+
magnum = 135270,
|
|
2978
|
+
/** 리스트밴드 */
|
|
2979
|
+
wristBand = 135290,
|
|
2980
|
+
/** 조준기 */
|
|
2981
|
+
farSight = 135291,
|
|
2982
|
+
/** 화약통 */
|
|
2983
|
+
powderKeg = 135292,
|
|
2984
|
+
/** 무게추 */
|
|
2985
|
+
mass = 135293,
|
|
2986
|
+
/** 문서 */
|
|
2987
|
+
document = 135294,
|
|
2988
|
+
/** 마법구슬 */
|
|
2989
|
+
magicMarble = 135295,
|
|
2990
|
+
/** 화살촉 */
|
|
2991
|
+
arrowhead = 135296,
|
|
2992
|
+
/** 보석 (시그너스) */
|
|
2993
|
+
jewel = 135297,
|
|
2994
|
+
/** 화약통 2 */
|
|
2995
|
+
powderKeg2 = 135298,
|
|
2996
|
+
/** 컨트롤러 */
|
|
2997
|
+
controller = 135300,
|
|
2998
|
+
/** 여우구슬 */
|
|
2999
|
+
foxMarble = 135310,
|
|
3000
|
+
/** 체스피스 */
|
|
3001
|
+
chessPiece = 135320,
|
|
3002
|
+
/** 무기 전송장치 */
|
|
3003
|
+
transmitter = 135330,
|
|
3004
|
+
/** 장약 */
|
|
3005
|
+
charge = 135340,
|
|
3006
|
+
/** 매직윙 */
|
|
3007
|
+
magicWing = 135350,
|
|
3008
|
+
/** 패스 오브 어비스 */
|
|
3009
|
+
pathOfAbyss = 135360,
|
|
3010
|
+
/** 렐릭 */
|
|
3011
|
+
relic = 135370,
|
|
3012
|
+
/** 선추 */
|
|
3013
|
+
fanTassel = 135380,
|
|
3014
|
+
/** 브레이슬릿 */
|
|
3015
|
+
bracelet = 135400,
|
|
3016
|
+
/** 웨폰 벨트 */
|
|
3017
|
+
weaponBelt = 135401,
|
|
3018
|
+
/** 노리개 */
|
|
3019
|
+
ornament = 135402,
|
|
3020
|
+
/** 헥스시커 */
|
|
3021
|
+
hexSeeker = 135403,
|
|
3022
|
+
/** 여의보주 */
|
|
3023
|
+
sacredJewel = 135404,
|
|
3024
|
+
/** 펫장비 */
|
|
3025
|
+
petEquip = 180,
|
|
3026
|
+
/** 메카닉 엔진 */
|
|
3027
|
+
machineEngine = 161,
|
|
3028
|
+
/** 메카닉 암 */
|
|
3029
|
+
machineArms = 162,
|
|
3030
|
+
/** 메카닉 레그 */
|
|
3031
|
+
machineLegs = 163,
|
|
3032
|
+
/** 메카닉 프레임 */
|
|
3033
|
+
machineBody = 164,
|
|
3034
|
+
/** 메카닉 트렌지스터 */
|
|
3035
|
+
machineTransistors = 165,
|
|
3036
|
+
/** 모래시계 */
|
|
3037
|
+
hourGlass = 17237,
|
|
3038
|
+
/** 드래곤 모자 */
|
|
3039
|
+
dragonMask = 194,
|
|
3040
|
+
/** 드래곤 펜던트 */
|
|
3041
|
+
dragonPendant = 195,
|
|
3042
|
+
/** 드래곤 날개장식 */
|
|
3043
|
+
dragonWings = 196,
|
|
3044
|
+
/** 드래곤 꼬리장식 */
|
|
3045
|
+
dragonTail = 197
|
|
3046
|
+
}
|
|
3047
|
+
/**
|
|
3048
|
+
* 장비 주문서 옵션
|
|
3049
|
+
*/
|
|
3050
|
+
declare type GearUpgradeOption$1 = Pick<GearBaseOption$1, 'str' | 'dex' | 'int' | 'luk' | 'maxHp' | 'maxMp' | 'attackPower' | 'magicPower' | 'armor' | 'speed' | 'jump'>;
|
|
3051
|
+
/**
|
|
3052
|
+
* 잠재옵션 정보
|
|
3053
|
+
*/
|
|
3054
|
+
declare interface PotentialData$1 {
|
|
3055
|
+
/** 잠재능력 ID */
|
|
3056
|
+
id?: number;
|
|
3057
|
+
/** 잠재능력 등급 */
|
|
3058
|
+
grade: PotentialGrade$1;
|
|
3059
|
+
/** 장비에 표시되는 이름 */
|
|
3060
|
+
summary: string;
|
|
3061
|
+
/** 잠재능력 옵션 */
|
|
3062
|
+
option: Partial<PotentialOption$1>;
|
|
3063
|
+
}
|
|
3064
|
+
declare enum PotentialGrade$1 {
|
|
3065
|
+
Normal = 0,
|
|
3066
|
+
Rare = 1,
|
|
3067
|
+
Epic = 2,
|
|
3068
|
+
Unique = 3,
|
|
3069
|
+
Legendary = 4
|
|
3070
|
+
}
|
|
3071
|
+
declare type PotentialOption$1 = Pick<GearOption$1, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'maxHp' | 'maxMp' | 'maxHpRate' | 'maxMpRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'armor' | 'armorRate' | 'speed' | 'jump' | 'bossDamage' | 'normalDamage' | 'ignoreMonsterArmor' | 'damage' | 'criticalRate' | 'criticalDamage' | 'cooltimeReduce' | 'strLv' | 'dexLv' | 'intLv' | 'lukLv'>;
|
|
3072
|
+
/**
|
|
3073
|
+
* 소울 충전 옵션
|
|
3074
|
+
*/
|
|
3075
|
+
declare type SoulChargeOption$1 = Pick<GearOption$1, 'attackPower' | 'magicPower'>;
|
|
3076
|
+
/**
|
|
3077
|
+
* 소울 정보
|
|
3078
|
+
*/
|
|
3079
|
+
declare interface SoulData$1 {
|
|
3080
|
+
/** 소울 명 */
|
|
3081
|
+
name: string;
|
|
3082
|
+
/** 소울 스킬 명 */
|
|
3083
|
+
skill: string;
|
|
3084
|
+
/** 소울 옵션 */
|
|
3085
|
+
option: Partial<SoulOption$1>;
|
|
3086
|
+
/** 소울 충전 옵션 배율 */
|
|
3087
|
+
chargeFactor?: 1 | 2;
|
|
3088
|
+
}
|
|
3089
|
+
/**
|
|
3090
|
+
* 소울 옵션
|
|
3091
|
+
*/
|
|
3092
|
+
declare type SoulOption$1 = Pick<GearOption$1, 'str' | 'dex' | 'int' | 'luk' | 'strRate' | 'dexRate' | 'intRate' | 'lukRate' | 'attackPower' | 'magicPower' | 'attackPowerRate' | 'magicPowerRate' | 'maxHp' | 'maxMp' | 'criticalRate' | 'ignoreMonsterArmor' | 'bossDamage'>;
|
|
3093
|
+
/**
|
|
3094
|
+
* 소울 웨폰 정보
|
|
3095
|
+
*/
|
|
3096
|
+
declare interface SoulSlotData$1 {
|
|
3097
|
+
/** 소울 아이템 */
|
|
3098
|
+
soul?: SoulData$1;
|
|
3099
|
+
/** 소울 충전량 */
|
|
3100
|
+
charge?: number;
|
|
3101
|
+
/** 소울 충전 옵션 */
|
|
3102
|
+
chargeOption?: Partial<SoulChargeOption$1>;
|
|
3103
|
+
}
|
|
3104
|
+
declare const VERSION = 2;
|
|
3105
|
+
//#endregion
|
|
1782
3106
|
//#region src/lib/manage/migrate.d.ts
|
|
1783
3107
|
/**
|
|
1784
3108
|
* 입력 장비 정보를 목표 버전으로 마이그레이션합니다.
|
|
@@ -1792,7 +3116,15 @@ declare function getHardMaxStar(gear: ReadonlyGear): number;
|
|
|
1792
3116
|
* 입력 데이터가 유효하지 않은 경우.
|
|
1793
3117
|
* 입력 데이터의 버전이 잘못되었거나 지원하는 버전보다 최신인 경우.
|
|
1794
3118
|
*/
|
|
1795
|
-
declare function migrate(data:
|
|
3119
|
+
declare function migrate(data: GearData$2): GearData;
|
|
3120
|
+
declare function migrate(data: GearData$2, version: 1): GearData$2;
|
|
3121
|
+
declare function migrate(data: GearData$2, version: 2): GearData$1;
|
|
3122
|
+
declare function migrate(data: GearData$2, version: 3): GearData;
|
|
3123
|
+
declare function migrate(data: GearData$1): GearData;
|
|
3124
|
+
declare function migrate(data: GearData$1, version: 2): GearData$1;
|
|
3125
|
+
declare function migrate(data: GearData$1, version: 3): GearData;
|
|
3126
|
+
declare function migrate(data: GearData): GearData;
|
|
3127
|
+
declare function migrate(data: GearData, version: 3): GearData;
|
|
1796
3128
|
//#endregion
|
|
1797
3129
|
//#region src/lib/gearOption.d.ts
|
|
1798
3130
|
/**
|