Skip to content

Commit

Permalink
Added QuestPhasePresent schema
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Jun 1, 2024
1 parent 4b521e3 commit 7f26a4e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/api-connector/src/Schema/Quest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,16 @@ export interface QuestPhaseRestriction {
title: string;
}

export interface QuestPhasePresent {
phase: number;
gifts: Gift[];
giftIcon?: string;
condType: CondType;
condId: number;
condNum: number;
originalScript: Record<string, any>;
}

export interface Quest {
id: number;
name: string;
Expand All @@ -282,6 +292,7 @@ export interface Quest {
giftIcon?: string;
gifts: Gift[];
releaseConditions: QuestRelease[];
presents: QuestPhasePresent[];
phases: number[];
phasesWithEnemies: number[];
phasesNoBattle: number[];
Expand Down

0 comments on commit 7f26a4e

Please sign in to comment.