maplestory-openapi 3.10.0 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/cjs/_virtual/index.js_commonjs-exports2.js +2 -2
- package/dist/cjs/_virtual/index.js_commonjs-exports3.js +2 -2
- package/dist/cjs/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +196 -0
- package/dist/cjs/maplestory/api/kms/dto/character/characterHexaMatrix.js +6 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterItemEquipment.js +92 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterPetEquipment.js +223 -1
- package/dist/cjs/maplestory/api/kms/dto/character/characterVMatrix.js +50 -1
- package/dist/cjs/maplestory/api/kms/dto/scheduler/schedulerCharacterState.js +177 -0
- package/dist/cjs/maplestory/api/kms/dto/union/unionRaider.js +35 -1
- package/dist/cjs/maplestory/api/kms/kms.js +10 -0
- package/dist/cjs/maplestory/api/kms/mapleStoryApi.js +38 -14
- package/dist/cjs/maplestory/api/kms/mapleStoryFriendsApi.js +1 -1
- package/dist/cjs/maplestory/api/msea/mapleStoryApi.js +1 -1
- package/dist/cjs/maplestory/api/tms/dto/character/characterFamiliar.js +156 -0
- package/dist/cjs/maplestory/api/tms/dto/character/characterPetEquipment.js +45 -1
- package/dist/cjs/maplestory/api/tms/mapleStoryApi.js +33 -1
- package/dist/cjs/maplestory/api/tms/tms.js +6 -0
- package/dist/cjs/node_modules/base64-js/index.js +1 -1
- package/dist/cjs/node_modules/buffer/index.js +2 -2
- package/dist/cjs/node_modules/ieee754/index.js +1 -1
- package/dist/esm/_virtual/index.js_commonjs-exports2.js +2 -2
- package/dist/esm/_virtual/index.js_commonjs-exports3.js +2 -2
- package/dist/esm/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.js +196 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterHexaMatrix.js +6 -1
- package/dist/esm/maplestory/api/kms/dto/character/characterItemEquipment.js +92 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterPetEquipment.js +223 -2
- package/dist/esm/maplestory/api/kms/dto/character/characterVMatrix.js +50 -2
- package/dist/esm/maplestory/api/kms/dto/scheduler/schedulerCharacterState.js +170 -0
- package/dist/esm/maplestory/api/kms/dto/union/unionRaider.js +35 -2
- package/dist/esm/maplestory/api/kms/kms.js +6 -5
- package/dist/esm/maplestory/api/kms/mapleStoryApi.js +38 -14
- package/dist/esm/maplestory/api/kms/mapleStoryFriendsApi.js +1 -1
- package/dist/esm/maplestory/api/msea/mapleStoryApi.js +1 -1
- package/dist/esm/maplestory/api/tms/dto/character/characterFamiliar.js +149 -0
- package/dist/esm/maplestory/api/tms/dto/character/characterPetEquipment.js +45 -2
- package/dist/esm/maplestory/api/tms/mapleStoryApi.js +33 -1
- package/dist/esm/maplestory/api/tms/tms.js +2 -1
- package/dist/esm/node_modules/base64-js/index.js +2 -2
- package/dist/esm/node_modules/buffer/index.js +2 -2
- package/dist/esm/node_modules/ieee754/index.js +2 -2
- package/package.json +3 -3
- package/types/maplestory/api/kms/dto/battlePractice/battlePracticeCharacterInfo.d.ts +143 -1
- package/types/maplestory/api/kms/dto/character/characterHexaMatrix.d.ts +4 -0
- package/types/maplestory/api/kms/dto/character/characterItemEquipment.d.ts +63 -1
- package/types/maplestory/api/kms/dto/character/characterPetEquipment.d.ts +163 -1
- package/types/maplestory/api/kms/dto/character/characterVMatrix.d.ts +39 -1
- package/types/maplestory/api/kms/dto/scheduler/schedulerCharacterState.d.ts +137 -0
- package/types/maplestory/api/kms/dto/union/unionRaider.d.ts +27 -1
- package/types/maplestory/api/kms/index.d.ts +1 -0
- package/types/maplestory/api/kms/mapleStoryApi.d.ts +16 -8
- package/types/maplestory/api/kms/mapleStoryFriendsApi.d.ts +2 -2
- package/types/maplestory/api/kms/response/battlePractice/battlePracticeCharacterInfoBody.d.ts +36 -0
- package/types/maplestory/api/kms/response/character/characterHexaMatrixBody.d.ts +1 -0
- package/types/maplestory/api/kms/response/character/characterItemEquipmentBody.d.ts +15 -0
- package/types/maplestory/api/kms/response/character/characterPetEquipmentBody.d.ts +41 -0
- package/types/maplestory/api/kms/response/character/characterVMatrixBody.d.ts +11 -1
- package/types/maplestory/api/kms/response/scheduler/schedulerCharacterStateBody.d.ts +36 -0
- package/types/maplestory/api/kms/response/union/unionRaiderBody.d.ts +7 -0
- package/types/maplestory/api/tms/dto/character/characterFamiliar.d.ts +117 -0
- package/types/maplestory/api/tms/dto/character/characterPetEquipment.d.ts +35 -1
- package/types/maplestory/api/tms/index.d.ts +1 -0
- package/types/maplestory/api/tms/mapleStoryApi.d.ts +12 -0
- package/types/maplestory/api/tms/response/character/characterFamiliarBody.d.ts +31 -0
- package/types/maplestory/api/tms/response/character/characterPetEquipmentBody.d.ts +9 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BattlePracticeCharacterAbilityInfoBody, BattlePracticeCharacterAbilityObjectBody, BattlePracticeCharacterBasicBody, BattlePracticeCharacterBasicStatBody, BattlePracticeCharacterCashItemEquipmentBody, BattlePracticeCharacterCashItemObjectBody, BattlePracticeCharacterCashItemOptionBody, BattlePracticeCharacterInfoBody, BattlePracticeCharacterFinalStatBody, BattlePracticeGuildObjectBody, BattlePracticeGuildSkillBody, BattlePracticeCharacterHexaCoreEquipmentBody, BattlePracticeCharacterHexaCoreObjectBody, BattlePracticeCharacterHexaLinkedSkillBody, BattlePracticeCharacterHexaMatrixObjectBody, BattlePracticeCharacterHexaMatrixStatObjectBody, BattlePracticeCharacterHexaStatCoreBody, BattlePracticeCharacterHyperStatBody, BattlePracticeCharacterHyperStatObjectBody, BattlePracticeCharacterItemAddOptionBody, BattlePracticeCharacterItemBaseOptionBody, BattlePracticeCharacterItemDragonEquipmentBody, BattlePracticeCharacterItemEquipmentBody, BattlePracticeCharacterItemEquipmentObjectBody, BattlePracticeCharacterItemEtcOptionBody, BattlePracticeCharacterItemExceptionalOptionBody, BattlePracticeCharacterItemMechanicEquipmentBody, BattlePracticeCharacterItemObjectBody, BattlePracticeCharacterItemStarforceOptionBody, BattlePracticeCharacterItemTitleBody, BattlePracticeCharacterItemTotalOptionBody, BattlePracticeCharacterLinkSkillObjectBody, BattlePracticeCharacterOtherStatBody, BattlePracticeCharacterOtherStatDetailBody, BattlePracticeCharacterOtherStatInfoBody, BattlePracticeCharacterPetAutoSkillBody, BattlePracticeCharacterPetEquipmentBody, BattlePracticeCharacterPetEquipmentOptionBody, BattlePracticeCharacterPetObjectBody, BattlePracticeCharacterPropensityBody, BattlePracticeCharacterRingReserveSkillObjectBody, BattlePracticeCharacterSetEffectBody, BattlePracticeCharacterSetEffectInfoBody, BattlePracticeCharacterSetEffectObjectBody, BattlePracticeCharacterSkillInfoBody, BattlePracticeCharacterSkillObjectBody, BattlePracticeCharacterStatBody, BattlePracticeCharacterSymbolBody, BattlePracticeCharacterSymbolStatBody, BattlePracticeUnionArtifactEffectBody, BattlePracticeUnionArtifactObjectBody, BattlePracticeUnionChampionBadgeBody, BattlePracticeUnionChampionObjectBody, BattlePracticeUnionRaiderObjectBody, BattlePracticeCharacterVCoreBody, BattlePracticeCharacterVMatrixObjectBody } from '../../response/battlePractice/battlePracticeCharacterInfoBody';
|
|
1
|
+
import { BattlePracticeCharacterAbilityInfoBody, BattlePracticeCharacterAbilityObjectBody, BattlePracticeCharacterBasicBody, BattlePracticeCharacterBasicStatBody, BattlePracticeCharacterCashItemEquipmentBody, BattlePracticeCharacterCashItemObjectBody, BattlePracticeCharacterCashItemOptionBody, BattlePracticeCharacterInfoBody, BattlePracticeCharacterFinalStatBody, BattlePracticeGuildObjectBody, BattlePracticeGuildSkillBody, BattlePracticeCharacterHexaCoreEquipmentBody, BattlePracticeCharacterHexaCoreObjectBody, BattlePracticeCharacterHexaLinkedSkillBody, BattlePracticeCharacterHexaMatrixObjectBody, BattlePracticeCharacterHexaMatrixStatObjectBody, BattlePracticeCharacterHexaStatCoreBody, BattlePracticeCharacterHyperStatBody, BattlePracticeCharacterHyperStatObjectBody, BattlePracticeCharacterItemAddOptionBody, BattlePracticeCharacterItemBaseOptionBody, BattlePracticeCharacterItemDragonEquipmentBody, BattlePracticeCharacterItemEquipmentBody, BattlePracticeCharacterItemEquipmentObjectBody, BattlePracticeCharacterItemEtcOptionBody, BattlePracticeCharacterItemExceptionalOptionBody, BattlePracticeCharacterItemMechanicEquipmentBody, BattlePracticeCharacterItemObjectBody, BattlePracticeCharacterItemStarforceOptionBody, BattlePracticeCharacterItemTitleBody, BattlePracticeCharacterItemTotalOptionBody, BattlePracticeCharacterLinkSkillObjectBody, BattlePracticeCharacterOtherStatBody, BattlePracticeCharacterOtherStatDetailBody, BattlePracticeCharacterOtherStatInfoBody, BattlePracticeCharacterPetAutoSkillBody, BattlePracticeCharacterPetEquipmentBody, BattlePracticeCharacterPetEquipmentOptionBody, BattlePracticeCharacterPetiteLunaPetSkillBody, BattlePracticeCharacterPetObjectBody, BattlePracticeCharacterPropensityBody, BattlePracticeCharacterRingReserveSkillObjectBody, BattlePracticeCharacterSetEffectBody, BattlePracticeCharacterSetEffectInfoBody, BattlePracticeCharacterSetEffectObjectBody, BattlePracticeCharacterSkillInfoBody, BattlePracticeCharacterSkillObjectBody, BattlePracticeCharacterStatBody, BattlePracticeCharacterSymbolBody, BattlePracticeCharacterSymbolStatBody, BattlePracticeUnionArtifactEffectBody, BattlePracticeUnionArtifactObjectBody, BattlePracticeUnionChampionBadgeBody, BattlePracticeUnionChampionObjectBody, BattlePracticeUnionRaiderObjectBody, BattlePracticeCharacterVCoreBody, BattlePracticeCharacterVMatrixObjectBody } from '../../response/battlePractice/battlePracticeCharacterInfoBody';
|
|
2
2
|
/**
|
|
3
3
|
* 연무장 입장 시 캐릭터 능력치 관련 정보
|
|
4
4
|
*/
|
|
@@ -1297,6 +1297,10 @@ export declare class BattlePracticeCharacterCashItemOptionDto {
|
|
|
1297
1297
|
* 연무장 입장 시 캐릭터 장착 펫 정보
|
|
1298
1298
|
*/
|
|
1299
1299
|
export declare class BattlePracticeCharacterPetObjectDto {
|
|
1300
|
+
/**
|
|
1301
|
+
* 활성화된 펫 유형 (0:캐릭터 펫, 1:월드 공유 펫)
|
|
1302
|
+
*/
|
|
1303
|
+
petActivateFlag: string | null;
|
|
1300
1304
|
/**
|
|
1301
1305
|
* 펫1 명
|
|
1302
1306
|
*/
|
|
@@ -1405,6 +1409,118 @@ export declare class BattlePracticeCharacterPetObjectDto {
|
|
|
1405
1409
|
* 펫3 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
1406
1410
|
*/
|
|
1407
1411
|
pet3DateExpire: Date | null;
|
|
1412
|
+
/**
|
|
1413
|
+
* 월드 공유 펫1 명
|
|
1414
|
+
*/
|
|
1415
|
+
worldSharePet1Name: string | null;
|
|
1416
|
+
/**
|
|
1417
|
+
* 월드 공유 펫1 닉네임
|
|
1418
|
+
*/
|
|
1419
|
+
worldSharePet1Nickname: string | null;
|
|
1420
|
+
/**
|
|
1421
|
+
* 월드 공유 펫1 아이콘
|
|
1422
|
+
*/
|
|
1423
|
+
worldSharePet1Icon: string | null;
|
|
1424
|
+
/**
|
|
1425
|
+
* 월드 공유 펫1 설명
|
|
1426
|
+
*/
|
|
1427
|
+
worldSharePet1Description: string | null;
|
|
1428
|
+
/**
|
|
1429
|
+
* 월드 공유 펫1 원더 펫 종류
|
|
1430
|
+
*/
|
|
1431
|
+
worldSharePet1PetType: string | null;
|
|
1432
|
+
/**
|
|
1433
|
+
* 월드 공유 펫1 장착 정보
|
|
1434
|
+
*/
|
|
1435
|
+
worldSharePet1Equipment: BattlePracticeCharacterPetEquipmentDto | null;
|
|
1436
|
+
/**
|
|
1437
|
+
* 월드 공유 펫1 버프 자동스킬 정보
|
|
1438
|
+
*/
|
|
1439
|
+
worldSharePet1AutoSkill: BattlePracticeCharacterPetAutoSkillDto | null;
|
|
1440
|
+
/**
|
|
1441
|
+
* 월드 공유 펫1 펫 보유 스킬
|
|
1442
|
+
*/
|
|
1443
|
+
worldSharePet1Skill: string[];
|
|
1444
|
+
/**
|
|
1445
|
+
* 월드 공유 펫1 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
1446
|
+
*/
|
|
1447
|
+
worldSharePet1DateExpire: Date | null;
|
|
1448
|
+
/**
|
|
1449
|
+
* 월드 공유 펫2 명
|
|
1450
|
+
*/
|
|
1451
|
+
worldSharePet2Name: string | null;
|
|
1452
|
+
/**
|
|
1453
|
+
* 월드 공유 펫2 닉네임
|
|
1454
|
+
*/
|
|
1455
|
+
worldSharePet2Nickname: string | null;
|
|
1456
|
+
/**
|
|
1457
|
+
* 월드 공유 펫2 아이콘
|
|
1458
|
+
*/
|
|
1459
|
+
worldSharePet2Icon: string | null;
|
|
1460
|
+
/**
|
|
1461
|
+
* 월드 공유 펫2 설명
|
|
1462
|
+
*/
|
|
1463
|
+
worldSharePet2Description: string | null;
|
|
1464
|
+
/**
|
|
1465
|
+
* 월드 공유 펫2 원더 펫 종류
|
|
1466
|
+
*/
|
|
1467
|
+
worldSharePet2PetType: string | null;
|
|
1468
|
+
/**
|
|
1469
|
+
* 월드 공유 펫2 장착 정보
|
|
1470
|
+
*/
|
|
1471
|
+
worldSharePet2Equipment: BattlePracticeCharacterPetEquipmentDto | null;
|
|
1472
|
+
/**
|
|
1473
|
+
* 월드 공유 펫2 버프 자동스킬 정보
|
|
1474
|
+
*/
|
|
1475
|
+
worldSharePet2AutoSkill: BattlePracticeCharacterPetAutoSkillDto | null;
|
|
1476
|
+
/**
|
|
1477
|
+
* 월드 공유 펫2 펫 보유 스킬
|
|
1478
|
+
*/
|
|
1479
|
+
worldSharePet2Skill: string[];
|
|
1480
|
+
/**
|
|
1481
|
+
* 월드 공유 펫2 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
1482
|
+
*/
|
|
1483
|
+
worldSharePet2DateExpire: Date | null;
|
|
1484
|
+
/**
|
|
1485
|
+
* 월드 공유 펫3 명
|
|
1486
|
+
*/
|
|
1487
|
+
worldSharePet3Name: string | null;
|
|
1488
|
+
/**
|
|
1489
|
+
* 월드 공유 펫3 닉네임
|
|
1490
|
+
*/
|
|
1491
|
+
worldSharePet3Nickname: string | null;
|
|
1492
|
+
/**
|
|
1493
|
+
* 월드 공유 펫3 아이콘
|
|
1494
|
+
*/
|
|
1495
|
+
worldSharePet3Icon: string | null;
|
|
1496
|
+
/**
|
|
1497
|
+
* 월드 공유 펫3 설명
|
|
1498
|
+
*/
|
|
1499
|
+
worldSharePet3Description: string | null;
|
|
1500
|
+
/**
|
|
1501
|
+
* 월드 공유 펫3 원더 펫 종류
|
|
1502
|
+
*/
|
|
1503
|
+
worldSharePet3PetType: string | null;
|
|
1504
|
+
/**
|
|
1505
|
+
* 월드 공유 펫3 장착 정보
|
|
1506
|
+
*/
|
|
1507
|
+
worldSharePet3Equipment: BattlePracticeCharacterPetEquipmentDto | null;
|
|
1508
|
+
/**
|
|
1509
|
+
* 월드 공유 펫3 버프 자동스킬 정보
|
|
1510
|
+
*/
|
|
1511
|
+
worldSharePet3AutoSkill: BattlePracticeCharacterPetAutoSkillDto | null;
|
|
1512
|
+
/**
|
|
1513
|
+
* 월드 공유 펫3 펫 보유 스킬
|
|
1514
|
+
*/
|
|
1515
|
+
worldSharePet3Skill: string[];
|
|
1516
|
+
/**
|
|
1517
|
+
* 월드 공유 펫3 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
1518
|
+
*/
|
|
1519
|
+
worldSharePet3DateExpire: Date | null;
|
|
1520
|
+
/**
|
|
1521
|
+
* 루나 쁘띠 펫 스킬 정보
|
|
1522
|
+
*/
|
|
1523
|
+
petiteLunaPetSkill: BattlePracticeCharacterPetiteLunaPetSkillDto[];
|
|
1408
1524
|
constructor(obj: BattlePracticeCharacterPetObjectBody);
|
|
1409
1525
|
}
|
|
1410
1526
|
/**
|
|
@@ -1485,6 +1601,28 @@ export declare class BattlePracticeCharacterPetAutoSkillDto {
|
|
|
1485
1601
|
skill2Icon: string | null;
|
|
1486
1602
|
constructor(obj: BattlePracticeCharacterPetAutoSkillBody);
|
|
1487
1603
|
}
|
|
1604
|
+
/**
|
|
1605
|
+
* 연무장 입장 시 루나 쁘띠 펫 스킬 정보
|
|
1606
|
+
*/
|
|
1607
|
+
export declare class BattlePracticeCharacterPetiteLunaPetSkillDto {
|
|
1608
|
+
/**
|
|
1609
|
+
* 스킬 명
|
|
1610
|
+
*/
|
|
1611
|
+
skillName: string | null;
|
|
1612
|
+
/**
|
|
1613
|
+
* 스킬 설명
|
|
1614
|
+
*/
|
|
1615
|
+
skillDescription: string | null;
|
|
1616
|
+
/**
|
|
1617
|
+
* 스킬 효과 설명
|
|
1618
|
+
*/
|
|
1619
|
+
skillEffect: string | null;
|
|
1620
|
+
/**
|
|
1621
|
+
* 스킬 아이콘
|
|
1622
|
+
*/
|
|
1623
|
+
skillIcon: string | null;
|
|
1624
|
+
constructor(obj: BattlePracticeCharacterPetiteLunaPetSkillBody);
|
|
1625
|
+
}
|
|
1488
1626
|
/**
|
|
1489
1627
|
* 연무장 입장 시 캐릭터 캐릭터 스킬 정보
|
|
1490
1628
|
*/
|
|
@@ -1729,6 +1867,10 @@ export declare class BattlePracticeUnionRaiderObjectDto {
|
|
|
1729
1867
|
* 유니온 공격대 점령 효과
|
|
1730
1868
|
*/
|
|
1731
1869
|
unionOccupiedStat: string[];
|
|
1870
|
+
/**
|
|
1871
|
+
* 적용 중인 유니온 스탯 효과
|
|
1872
|
+
*/
|
|
1873
|
+
unionStateStat: string[];
|
|
1732
1874
|
constructor(obj: BattlePracticeUnionRaiderObjectBody);
|
|
1733
1875
|
}
|
|
1734
1876
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as base from '../../../common/dto/character/characterItemEquipment';
|
|
2
|
-
import { CharacterItemEquipmentAddOptionBody, CharacterItemEquipmentBaseOptionBody, CharacterItemEquipmentBody, CharacterItemEquipmentDragonInfoBody, CharacterItemEquipmentEtcOptionBody, CharacterItemEquipmentExceptionalOptionBody, CharacterItemEquipmentInfoBody, CharacterItemEquipmentMechanicInfoBody, CharacterItemEquipmentMedalShapeBody, CharacterItemEquipmentStarforceOptionBody, CharacterItemEquipmentTitleBody, CharacterItemEquipmentTotalOptionBody } from '../../response/character/characterItemEquipmentBody';
|
|
2
|
+
import { CharacterItemEquipmentAddOptionBody, CharacterItemEquipmentBaseOptionBody, CharacterItemEquipmentBody, CharacterItemEquipmentDragonInfoBody, CharacterItemEquipmentEtcOptionBody, CharacterItemEquipmentExceptionalOptionBody, CharacterItemEquipmentInfoBody, CharacterItemEquipmentMechanicInfoBody, CharacterItemEquipmentMedalShapeBody, CharacterItemEquipmentStarforceOptionBody, CharacterItemEquipmentTitleBody, CharacterItemEquipmentTitlePresetBody, CharacterItemEquipmentTotalOptionBody } from '../../response/character/characterItemEquipmentBody';
|
|
3
3
|
/**
|
|
4
4
|
* 캐릭터 장비 아이템 정보
|
|
5
5
|
*/
|
|
@@ -58,6 +58,10 @@ export declare class CharacterItemEquipmentDto extends base.CharacterItemEquipme
|
|
|
58
58
|
* 캐릭터 칭호 아이템 정보
|
|
59
59
|
*/
|
|
60
60
|
export declare class CharacterItemEquipmentTitleDto extends base.CharacterItemEquipmentTitleDto {
|
|
61
|
+
/**
|
|
62
|
+
* 적용 중인 프리셋 번호
|
|
63
|
+
*/
|
|
64
|
+
presetNo: number | null;
|
|
61
65
|
/**
|
|
62
66
|
* 칭호 장비 명
|
|
63
67
|
*/
|
|
@@ -98,8 +102,66 @@ export declare class CharacterItemEquipmentTitleDto extends base.CharacterItemEq
|
|
|
98
102
|
* 외형 설정에 등록한 칭호 설명
|
|
99
103
|
*/
|
|
100
104
|
titleShapeDescription: string | null;
|
|
105
|
+
/**
|
|
106
|
+
* 프리셋 1번 칭호 정보
|
|
107
|
+
*/
|
|
108
|
+
titlePreset1: CharacterItemEquipmentTitlePresetDto | null;
|
|
109
|
+
/**
|
|
110
|
+
* 프리셋 2번 칭호 정보
|
|
111
|
+
*/
|
|
112
|
+
titlePreset2: CharacterItemEquipmentTitlePresetDto | null;
|
|
113
|
+
/**
|
|
114
|
+
* 프리셋 3번 칭호 정보
|
|
115
|
+
*/
|
|
116
|
+
titlePreset3: CharacterItemEquipmentTitlePresetDto | null;
|
|
101
117
|
constructor(obj: CharacterItemEquipmentTitleBody);
|
|
102
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* 캐릭터 장비 칭호 프리셋 정보
|
|
121
|
+
*/
|
|
122
|
+
export declare class CharacterItemEquipmentTitlePresetDto {
|
|
123
|
+
/**
|
|
124
|
+
* 칭호 장비 명
|
|
125
|
+
*/
|
|
126
|
+
titleName: string | null;
|
|
127
|
+
/**
|
|
128
|
+
* 칭호 아이콘
|
|
129
|
+
*/
|
|
130
|
+
titleIcon: string | null;
|
|
131
|
+
/**
|
|
132
|
+
* 칭호 설명
|
|
133
|
+
*/
|
|
134
|
+
titleDescription: string | null;
|
|
135
|
+
/**
|
|
136
|
+
* 칭호 유효 기간 (KST)
|
|
137
|
+
*/
|
|
138
|
+
dateExpire: Date | null;
|
|
139
|
+
/**
|
|
140
|
+
* 칭호 옵션 유효 기간 (expired:만료, null:무제한) (KST)
|
|
141
|
+
*/
|
|
142
|
+
dateOptionExpire: Date | null;
|
|
143
|
+
/**
|
|
144
|
+
* 칭호 옵션 유효 기간 만료 여부
|
|
145
|
+
*/
|
|
146
|
+
isOptionExpired: boolean | null;
|
|
147
|
+
/**
|
|
148
|
+
* 외형 설정에 등록한 칭호 장비 명
|
|
149
|
+
*/
|
|
150
|
+
titleShapeName: string | null;
|
|
151
|
+
/**
|
|
152
|
+
* 외형 설정에 등록한 칭호 아이콘
|
|
153
|
+
*/
|
|
154
|
+
titleShapeIcon: string | null;
|
|
155
|
+
/**
|
|
156
|
+
* 외형 설정에 등록한 칭호 설명
|
|
157
|
+
*/
|
|
158
|
+
titleShapeDescription: string | null;
|
|
159
|
+
/**
|
|
160
|
+
* 비활성화 여부
|
|
161
|
+
*/
|
|
162
|
+
disableFlag: string | null;
|
|
163
|
+
constructor(obj: CharacterItemEquipmentTitlePresetBody);
|
|
164
|
+
}
|
|
103
165
|
/**
|
|
104
166
|
* 캐릭터 외형 설정에 등록한 훈장 외형 정보
|
|
105
167
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as base from '../../../common/dto/character/characterPetEquipment';
|
|
2
|
-
import { CharacterPetEquipmentAutoSkillBody, CharacterPetEquipmentBody, CharacterPetEquipmentItemBody, CharacterPetEquipmentItemOptionBody } from '../../response/character/characterPetEquipmentBody';
|
|
2
|
+
import { CharacterPetEquipmentAutoSkillBody, CharacterPetEquipmentBody, CharacterPetEquipmentItemBody, CharacterPetEquipmentItemOptionBody, CharacterPetEquipmentPetiteLunaPetSkillBody } from '../../response/character/characterPetEquipmentBody';
|
|
3
3
|
/**
|
|
4
4
|
* 캐릭터 펫 장비 정보
|
|
5
5
|
*/
|
|
@@ -8,6 +8,10 @@ export declare class CharacterPetEquipmentDto extends base.CharacterPetEquipment
|
|
|
8
8
|
* 조회 기준일 (KST, 일 단위 데이터로 시, 분은 일괄 0으로 표기)
|
|
9
9
|
*/
|
|
10
10
|
date: Date | null;
|
|
11
|
+
/**
|
|
12
|
+
* 활성화된 펫 유형 (0:캐릭터 펫, 1:월드 공유 펫)
|
|
13
|
+
*/
|
|
14
|
+
petActivateFlag: string | null;
|
|
11
15
|
/**
|
|
12
16
|
* 펫1 명
|
|
13
17
|
*/
|
|
@@ -152,6 +156,142 @@ export declare class CharacterPetEquipmentDto extends base.CharacterPetEquipment
|
|
|
152
156
|
* 펫3 외형 아이콘
|
|
153
157
|
*/
|
|
154
158
|
pet3AppearanceIcon: string | null;
|
|
159
|
+
/**
|
|
160
|
+
* 월드 공유 펫1 명
|
|
161
|
+
*/
|
|
162
|
+
worldSharePet1Name: string | null;
|
|
163
|
+
/**
|
|
164
|
+
* 월드 공유 펫1 닉네임
|
|
165
|
+
*/
|
|
166
|
+
worldSharePet1Nickname: string | null;
|
|
167
|
+
/**
|
|
168
|
+
* 월드 공유 펫1 아이콘
|
|
169
|
+
*/
|
|
170
|
+
worldSharePet1Icon: string | null;
|
|
171
|
+
/**
|
|
172
|
+
* 월드 공유 펫1 설명
|
|
173
|
+
*/
|
|
174
|
+
worldSharePet1Description: string | null;
|
|
175
|
+
/**
|
|
176
|
+
* 월드 공유 펫1 원더 펫 종류
|
|
177
|
+
*/
|
|
178
|
+
worldSharePet1PetType: string | null;
|
|
179
|
+
/**
|
|
180
|
+
* 월드 공유 펫1 장착 정보
|
|
181
|
+
*/
|
|
182
|
+
worldSharePet1Equipment: CharacterPetEquipmentItemDto | null;
|
|
183
|
+
/**
|
|
184
|
+
* 월드 공유 펫1 버프 자동스킬 정보
|
|
185
|
+
*/
|
|
186
|
+
worldSharePet1AutoSkill: CharacterPetEquipmentAutoSkillDto | null;
|
|
187
|
+
/**
|
|
188
|
+
* 월드 공유 펫1 펫 보유 스킬
|
|
189
|
+
*/
|
|
190
|
+
worldSharePet1Skill: string[];
|
|
191
|
+
/**
|
|
192
|
+
* 월드 공유 펫1 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
193
|
+
*/
|
|
194
|
+
worldSharePet1DateExpire: Date | null;
|
|
195
|
+
/**
|
|
196
|
+
* 월드 공유 펫1 외형 명
|
|
197
|
+
*/
|
|
198
|
+
worldSharePet1Appearance: string | null;
|
|
199
|
+
/**
|
|
200
|
+
* 월드 공유 펫1 외형 아이콘
|
|
201
|
+
*/
|
|
202
|
+
worldSharePet1AppearanceIcon: string | null;
|
|
203
|
+
/**
|
|
204
|
+
* 월드 공유 펫2 명
|
|
205
|
+
*/
|
|
206
|
+
worldSharePet2Name: string | null;
|
|
207
|
+
/**
|
|
208
|
+
* 월드 공유 펫2 닉네임
|
|
209
|
+
*/
|
|
210
|
+
worldSharePet2Nickname: string | null;
|
|
211
|
+
/**
|
|
212
|
+
* 월드 공유 펫2 아이콘
|
|
213
|
+
*/
|
|
214
|
+
worldSharePet2Icon: string | null;
|
|
215
|
+
/**
|
|
216
|
+
* 월드 공유 펫2 설명
|
|
217
|
+
*/
|
|
218
|
+
worldSharePet2Description: string | null;
|
|
219
|
+
/**
|
|
220
|
+
* 월드 공유 펫2 원더 펫 종류
|
|
221
|
+
*/
|
|
222
|
+
worldSharePet2PetType: string | null;
|
|
223
|
+
/**
|
|
224
|
+
* 월드 공유 펫2 장착 정보
|
|
225
|
+
*/
|
|
226
|
+
worldSharePet2Equipment: CharacterPetEquipmentItemDto | null;
|
|
227
|
+
/**
|
|
228
|
+
* 월드 공유 펫2 버프 자동스킬 정보
|
|
229
|
+
*/
|
|
230
|
+
worldSharePet2AutoSkill: CharacterPetEquipmentAutoSkillDto | null;
|
|
231
|
+
/**
|
|
232
|
+
* 월드 공유 펫2 펫 보유 스킬
|
|
233
|
+
*/
|
|
234
|
+
worldSharePet2Skill: string[];
|
|
235
|
+
/**
|
|
236
|
+
* 월드 공유 펫2 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
237
|
+
*/
|
|
238
|
+
worldSharePet2DateExpire: Date | null;
|
|
239
|
+
/**
|
|
240
|
+
* 월드 공유 펫2 외형 명
|
|
241
|
+
*/
|
|
242
|
+
worldSharePet2Appearance: string | null;
|
|
243
|
+
/**
|
|
244
|
+
* 월드 공유 펫2 외형 아이콘
|
|
245
|
+
*/
|
|
246
|
+
worldSharePet2AppearanceIcon: string | null;
|
|
247
|
+
/**
|
|
248
|
+
* 월드 공유 펫3 명
|
|
249
|
+
*/
|
|
250
|
+
worldSharePet3Name: string | null;
|
|
251
|
+
/**
|
|
252
|
+
* 월드 공유 펫3 닉네임
|
|
253
|
+
*/
|
|
254
|
+
worldSharePet3Nickname: string | null;
|
|
255
|
+
/**
|
|
256
|
+
* 월드 공유 펫3 아이콘
|
|
257
|
+
*/
|
|
258
|
+
worldSharePet3Icon: string | null;
|
|
259
|
+
/**
|
|
260
|
+
* 월드 공유 펫3 설명
|
|
261
|
+
*/
|
|
262
|
+
worldSharePet3Description: string | null;
|
|
263
|
+
/**
|
|
264
|
+
* 월드 공유 펫3 원더 펫 종류
|
|
265
|
+
*/
|
|
266
|
+
worldSharePet3PetType: string | null;
|
|
267
|
+
/**
|
|
268
|
+
* 월드 공유 펫3 장착 정보
|
|
269
|
+
*/
|
|
270
|
+
worldSharePet3Equipment: CharacterPetEquipmentItemDto | null;
|
|
271
|
+
/**
|
|
272
|
+
* 월드 공유 펫3 버프 자동스킬 정보
|
|
273
|
+
*/
|
|
274
|
+
worldSharePet3AutoSkill: CharacterPetEquipmentAutoSkillDto | null;
|
|
275
|
+
/**
|
|
276
|
+
* 월드 공유 펫3 펫 보유 스킬
|
|
277
|
+
*/
|
|
278
|
+
worldSharePet3Skill: string[];
|
|
279
|
+
/**
|
|
280
|
+
* 월드 공유 펫3 마법의 시간 (KST, 시간 단위 데이터로 분은 일괄 0으로 표기)
|
|
281
|
+
*/
|
|
282
|
+
worldSharePet3DateExpire: Date | null;
|
|
283
|
+
/**
|
|
284
|
+
* 월드 공유 펫3 외형 명
|
|
285
|
+
*/
|
|
286
|
+
worldSharePet3Appearance: string | null;
|
|
287
|
+
/**
|
|
288
|
+
* 월드 공유 펫3 외형 아이콘
|
|
289
|
+
*/
|
|
290
|
+
worldSharePet3AppearanceIcon: string | null;
|
|
291
|
+
/**
|
|
292
|
+
* 루나 쁘띠 펫 스킬 정보
|
|
293
|
+
*/
|
|
294
|
+
petiteLunaPetSkill: CharacterPetEquipmentPetiteLunaPetSkillDto[];
|
|
155
295
|
constructor(obj: CharacterPetEquipmentBody);
|
|
156
296
|
}
|
|
157
297
|
/**
|
|
@@ -190,6 +330,28 @@ export declare class CharacterPetEquipmentItemOptionDto extends base.CharacterPe
|
|
|
190
330
|
optionValue: string;
|
|
191
331
|
constructor(obj: CharacterPetEquipmentItemOptionBody);
|
|
192
332
|
}
|
|
333
|
+
/**
|
|
334
|
+
* 캐릭터 펫 루나 쁘띠 펫 스킬 정보
|
|
335
|
+
*/
|
|
336
|
+
export declare class CharacterPetEquipmentPetiteLunaPetSkillDto {
|
|
337
|
+
/**
|
|
338
|
+
* 스킬 명
|
|
339
|
+
*/
|
|
340
|
+
skillName: string | null;
|
|
341
|
+
/**
|
|
342
|
+
* 스킬 설명
|
|
343
|
+
*/
|
|
344
|
+
skillDescription: string | null;
|
|
345
|
+
/**
|
|
346
|
+
* 스킬 효과 설명
|
|
347
|
+
*/
|
|
348
|
+
skillEffect: string | null;
|
|
349
|
+
/**
|
|
350
|
+
* 스킬 아이콘
|
|
351
|
+
*/
|
|
352
|
+
skillIcon: string | null;
|
|
353
|
+
constructor(obj: CharacterPetEquipmentPetiteLunaPetSkillBody);
|
|
354
|
+
}
|
|
193
355
|
/**
|
|
194
356
|
* 캐릭터 펫 장비 아이템 정보
|
|
195
357
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as base from '../../../common/dto/character/characterVMatrix';
|
|
2
|
-
import { CharacterVMatrixBody, CharacterVMatrixCoreEquipmentDtoBody } from '../../response/character/characterVMatrixBody';
|
|
2
|
+
import { CharacterVMatrixBody, CharacterVMatrixCoreEquipmentDtoBody, CharacterVMatrixCoreEquipmentPresetBody } from '../../response/character/characterVMatrixBody';
|
|
3
3
|
/**
|
|
4
4
|
* 캐릭터 V매트릭스 정보
|
|
5
5
|
*/
|
|
@@ -20,8 +20,46 @@ export declare class CharacterVMatrixDto extends base.CharacterVMatrixDto {
|
|
|
20
20
|
* 캐릭터 잔여 매트릭스 강화 포인트
|
|
21
21
|
*/
|
|
22
22
|
characterVMatrixRemainSlotUpgradePoint: number;
|
|
23
|
+
/**
|
|
24
|
+
* 프리셋 1의 V코어 정보
|
|
25
|
+
*/
|
|
26
|
+
characterVCoreEquipmentPreset1: CharacterVMatrixCoreEquipmentPresetDto[];
|
|
27
|
+
/**
|
|
28
|
+
* 프리셋 2의 V코어 정보
|
|
29
|
+
*/
|
|
30
|
+
characterVCoreEquipmentPreset2: CharacterVMatrixCoreEquipmentPresetDto[];
|
|
31
|
+
/**
|
|
32
|
+
* 프리셋 3의 V코어 정보
|
|
33
|
+
*/
|
|
34
|
+
characterVCoreEquipmentPreset3: CharacterVMatrixCoreEquipmentPresetDto[];
|
|
35
|
+
/**
|
|
36
|
+
* 프리셋 4의 V코어 정보
|
|
37
|
+
*/
|
|
38
|
+
characterVCoreEquipmentPreset4: CharacterVMatrixCoreEquipmentPresetDto[];
|
|
39
|
+
/**
|
|
40
|
+
* 프리셋 5의 V코어 정보
|
|
41
|
+
*/
|
|
42
|
+
characterVCoreEquipmentPreset5: CharacterVMatrixCoreEquipmentPresetDto[];
|
|
23
43
|
constructor(obj: CharacterVMatrixBody);
|
|
24
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* 캐릭터 V코어 프리셋 정보
|
|
47
|
+
*/
|
|
48
|
+
export declare class CharacterVMatrixCoreEquipmentPresetDto {
|
|
49
|
+
/**
|
|
50
|
+
* 코어 명
|
|
51
|
+
*/
|
|
52
|
+
vCoreName: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* 코어 타입
|
|
55
|
+
*/
|
|
56
|
+
vCoreType: string | null;
|
|
57
|
+
/**
|
|
58
|
+
* 코어의 레벨
|
|
59
|
+
*/
|
|
60
|
+
vCoreLevel: number;
|
|
61
|
+
constructor(obj: CharacterVMatrixCoreEquipmentPresetBody);
|
|
62
|
+
}
|
|
25
63
|
/**
|
|
26
64
|
* 캐릭터 V코어 정보
|
|
27
65
|
*/
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { SchedulerBossContentBody, SchedulerCharacterStateBody, SchedulerDailyContentBody, SchedulerWeeklyContentBody } from '../../response/scheduler/schedulerCharacterStateBody';
|
|
2
|
+
/**
|
|
3
|
+
* 캐릭터 스케줄러 정보
|
|
4
|
+
*/
|
|
5
|
+
export declare class SchedulerCharacterStateDto {
|
|
6
|
+
/**
|
|
7
|
+
* 조회 기준일 (YYYY-MM-DD)
|
|
8
|
+
*/
|
|
9
|
+
date: Date | null;
|
|
10
|
+
/**
|
|
11
|
+
* 캐릭터 명
|
|
12
|
+
*/
|
|
13
|
+
characterName: string;
|
|
14
|
+
/**
|
|
15
|
+
* 월드 명
|
|
16
|
+
*/
|
|
17
|
+
worldName: string;
|
|
18
|
+
/**
|
|
19
|
+
* 캐릭터 레벨
|
|
20
|
+
*/
|
|
21
|
+
characterLevel: number;
|
|
22
|
+
/**
|
|
23
|
+
* 캐릭터 직업
|
|
24
|
+
*/
|
|
25
|
+
characterClass: string;
|
|
26
|
+
/**
|
|
27
|
+
* 일일 콘텐츠 정보
|
|
28
|
+
*/
|
|
29
|
+
dailyContents: SchedulerDailyContentDto[];
|
|
30
|
+
/**
|
|
31
|
+
* 주간 콘텐츠 정보
|
|
32
|
+
*/
|
|
33
|
+
weeklyContents: SchedulerWeeklyContentDto[];
|
|
34
|
+
/**
|
|
35
|
+
* 보스 콘텐츠 정보
|
|
36
|
+
*/
|
|
37
|
+
bossContents: SchedulerBossContentDto[];
|
|
38
|
+
/**
|
|
39
|
+
* 주간 보스 처치 완료 횟수
|
|
40
|
+
*/
|
|
41
|
+
weeklyBossClearCount: number;
|
|
42
|
+
/**
|
|
43
|
+
* 주간 보스 처치 제한 횟수
|
|
44
|
+
*/
|
|
45
|
+
weeklyBossClearLimitCount: number;
|
|
46
|
+
constructor(obj: SchedulerCharacterStateBody);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 스케줄러 일일 콘텐츠 정보
|
|
50
|
+
*/
|
|
51
|
+
export declare class SchedulerDailyContentDto {
|
|
52
|
+
/**
|
|
53
|
+
* 콘텐츠/퀘스트 명
|
|
54
|
+
*/
|
|
55
|
+
contentName: string;
|
|
56
|
+
/**
|
|
57
|
+
* 타입 ('contents', 'quest')
|
|
58
|
+
*/
|
|
59
|
+
type: string;
|
|
60
|
+
/**
|
|
61
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
62
|
+
*/
|
|
63
|
+
registrationFlag: string;
|
|
64
|
+
/**
|
|
65
|
+
* 현재 완료 횟수/점수
|
|
66
|
+
*/
|
|
67
|
+
nowCount: number;
|
|
68
|
+
/**
|
|
69
|
+
* 최대 완료 가능 횟수/점수
|
|
70
|
+
*/
|
|
71
|
+
maxCount: number;
|
|
72
|
+
/**
|
|
73
|
+
* 퀘스트인 경우 진행 상태 ("0":기타, "1":진행 중, "2":완료)
|
|
74
|
+
*/
|
|
75
|
+
questState: string | null;
|
|
76
|
+
constructor(obj: SchedulerDailyContentBody);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* 스케줄러 주간 콘텐츠 정보
|
|
80
|
+
*/
|
|
81
|
+
export declare class SchedulerWeeklyContentDto {
|
|
82
|
+
/**
|
|
83
|
+
* 콘텐츠 명
|
|
84
|
+
*/
|
|
85
|
+
contentName: string;
|
|
86
|
+
/**
|
|
87
|
+
* 콘텐츠 종류 ('contents', 'quest')
|
|
88
|
+
*/
|
|
89
|
+
type: string;
|
|
90
|
+
/**
|
|
91
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
92
|
+
*/
|
|
93
|
+
registrationFlag: string;
|
|
94
|
+
/**
|
|
95
|
+
* 현재 완료 횟수/점수
|
|
96
|
+
*/
|
|
97
|
+
nowCount: number;
|
|
98
|
+
/**
|
|
99
|
+
* 최대 완료 가능 횟수/점수
|
|
100
|
+
*/
|
|
101
|
+
maxCount: number;
|
|
102
|
+
/**
|
|
103
|
+
* 퀘스트인 경우 진행 상태 ("0":기타, "1":진행 중, "2":완료)
|
|
104
|
+
*/
|
|
105
|
+
questState: string | null;
|
|
106
|
+
constructor(obj: SchedulerWeeklyContentBody);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* 스케줄러 보스 콘텐츠 정보
|
|
110
|
+
*/
|
|
111
|
+
export declare class SchedulerBossContentDto {
|
|
112
|
+
/**
|
|
113
|
+
* 보스 명
|
|
114
|
+
*/
|
|
115
|
+
contentName: string;
|
|
116
|
+
/**
|
|
117
|
+
* 보스 난이도
|
|
118
|
+
*/
|
|
119
|
+
difficulty: string;
|
|
120
|
+
/**
|
|
121
|
+
* 보스 초기화 주기
|
|
122
|
+
*/
|
|
123
|
+
cycle: string;
|
|
124
|
+
/**
|
|
125
|
+
* 리스트 순서
|
|
126
|
+
*/
|
|
127
|
+
listOrderNo: number;
|
|
128
|
+
/**
|
|
129
|
+
* 인게임 스케줄러 등록 여부 (true/false)
|
|
130
|
+
*/
|
|
131
|
+
registrationFlag: string;
|
|
132
|
+
/**
|
|
133
|
+
* 완료 여부 (true/false)
|
|
134
|
+
*/
|
|
135
|
+
completeFlag: string;
|
|
136
|
+
constructor(obj: SchedulerBossContentBody);
|
|
137
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as base from '../../../common/dto/union/unionRaider';
|
|
2
|
-
import { UnionRaiderBlockBody, UnionRaiderBlockControlPointBody, UnionRaiderBlockPositionBody, UnionRaiderBody, UnionRaiderInnerStatBody, UnionRaiderPresetBody } from '../../response/union/unionRaiderBody';
|
|
2
|
+
import { UnionRaiderBlockBody, UnionRaiderBlockControlPointBody, UnionRaiderBlockPositionBody, UnionRaiderBody, UnionRaiderInnerStatBody, UnionRaiderPresetBody, UnionRaiderStateStatPresetBody } from '../../response/union/unionRaiderBody';
|
|
3
3
|
/**
|
|
4
4
|
* 유니온 공격대 정보
|
|
5
5
|
*/
|
|
@@ -12,6 +12,18 @@ export declare class UnionRaiderDto extends base.UnionRaiderDto {
|
|
|
12
12
|
* 유니온 공격대원 효과
|
|
13
13
|
*/
|
|
14
14
|
unionRaiderStat: string[];
|
|
15
|
+
/**
|
|
16
|
+
* 적용 중인 유니온 스탯 효과
|
|
17
|
+
*/
|
|
18
|
+
unionStateStat: string[];
|
|
19
|
+
/**
|
|
20
|
+
* 프리셋 별 유니온 스탯 효과
|
|
21
|
+
*/
|
|
22
|
+
unionStateStatPreset: UnionRaiderStateStatPresetDto[];
|
|
23
|
+
/**
|
|
24
|
+
* 총 유니온 포인트
|
|
25
|
+
*/
|
|
26
|
+
unionMaxPoint: number | null;
|
|
15
27
|
/**
|
|
16
28
|
* 유니온 공격대 점령 효과
|
|
17
29
|
*/
|
|
@@ -118,6 +130,20 @@ export declare class UnionRaiderBlockDto extends base.UnionRaiderBlockDto {
|
|
|
118
130
|
blockPosition: UnionRaiderBlockPositionDto[] | null;
|
|
119
131
|
constructor(obj: UnionRaiderBlockBody);
|
|
120
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* 유니온 스탯 프리셋 정보
|
|
135
|
+
*/
|
|
136
|
+
export declare class UnionRaiderStateStatPresetDto {
|
|
137
|
+
/**
|
|
138
|
+
* 프리셋 번호
|
|
139
|
+
*/
|
|
140
|
+
presetNo: number;
|
|
141
|
+
/**
|
|
142
|
+
* 유니온 스탯 효과
|
|
143
|
+
*/
|
|
144
|
+
unionStateStat: string[];
|
|
145
|
+
constructor(obj: UnionRaiderStateStatPresetBody);
|
|
146
|
+
}
|
|
121
147
|
/**
|
|
122
148
|
* 유니온 프리셋 정보
|
|
123
149
|
*/
|