Skip to content

Commit

Permalink
Added new fields
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Aug 4, 2024
1 parent 81affa3 commit 5c80a9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/api-connector/src/Schema/Quest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ export interface QuestPhaseExtraDetail {
waveSetup?: number;
interruptibleQuest?: number;
masterImageId?: number;
IgnoreBattlePointUp?: number[];
}

export interface QuestPhaseRestriction {
Expand Down
8 changes: 8 additions & 0 deletions packages/api-connector/src/Schema/Skill.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ export interface SelectAddInfo {
btn: SelectAddInfoButton[];
}

export interface TdChangeByBattlePoint {
battlePointId: number;
phase: number;
noblePhantasmId: number;
}

export interface SkillScript {
NP_HIGHER?: number[];
NP_LOWER?: number[];
Expand All @@ -55,6 +61,8 @@ export interface SkillScript {
actRarity?: number[][];
battleStartRemainingTurn?: number[];
SelectAddInfo?: SelectAddInfo[];
IgnoreBattlePointUp?: number[][];
tdChangeByBattlePoint?: TdChangeByBattlePoint[];
}

export interface ExtraPassive {
Expand Down

0 comments on commit 5c80a9c

Please sign in to comment.