Skip to content

Commit

Permalink
Updated enums
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Jun 19, 2024
1 parent b68189c commit 9056fd6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
3 changes: 3 additions & 0 deletions packages/api-connector/src/Enum/Cond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,9 @@ export enum CondType {
WITH_STARTING_MEMBER = "withStartingMember",
LATEST_QUEST_PHASE_EQUAL = "latestQuestPhaseEqual",
NOT_LATEST_QUEST_PHASE_EQUAL = "notLatestQuestPhaseEqual",
PURCHASE_SHOP_NUM = "purchaseShopNum",
MISSION_ACHIEVE_NUM_BELOW = "missionAchieveNumBelow",
MISSION_ACHIEVE_NUM_ABOVE = "missionAchieveNumAbove",
}

export default CondType;
16 changes: 14 additions & 2 deletions packages/api-connector/src/Schema/DataVal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,13 @@ interface BaseDataVal {
BgmAllowSubPlaying?: number;
BgPriority?: number;
PriorityBg?: number;
ResetBgmPriorityAtWaveStart?: number;
ResetPriorityBgmAtWaveStart?: number;
ControlOtherBgmAtOverStageBgm_Priority?: number;
ControlOtherBgmAtOverStageBgm_Target?: number;
ExtendBuffHalfTurnInOpponentTurn?: number;
ShortenBuffHalfTurnInOpponentTurn?: number;
ExtendBuffHalfTurnInPartyTurn?: number;
ShortenBuffHalfTurnInPartyTurn?: number;
}

export interface DataVal extends BaseDataVal {
Expand Down Expand Up @@ -343,5 +349,11 @@ export enum DataValField {
BGM_ALLOW_SUB_PLAYING = "BgmAllowSubPlaying",
BG_PRIORITY = "BgPriority",
PRIORITY_BG = "PriorityBg",
RESET_BGM_PRIORITY_AT_WAVE_START = "ResetBgmPriorityAtWaveStart",
RESET_PRIORITY_BGM_AT_WAVE_START = "ResetPriorityBgmAtWaveStart",
CONTROL_OTHER_BGM_AT_OVER_STAGE_BGM_PRIORITY = "ControlOtherBgmAtOverStageBgm_Priority",
CONTROL_OTHER_BGM_AT_OVER_STAGE_BGM_TARGET = "ControlOtherBgmAtOverStageBgm_Target",
EXTEND_BUFF_HALF_TURN_IN_OPPONENT_TURN = "ExtendBuffHalfTurnInOpponentTurn",
SHORTEN_BUFF_HALF_TURN_IN_OPPONENT_TURN = "ShortenBuffHalfTurnInOpponentTurn",
EXTEND_BUFF_HALF_TURN_IN_PARTY_TURN = "ExtendBuffHalfTurnInPartyTurn",
SHORTEN_BUFF_HALF_TURN_IN_PARTY_TURN = "ShortenBuffHalfTurnInPartyTurn",
}

0 comments on commit 9056fd6

Please sign in to comment.