2024-08-05 10:45:19 +00:00
|
|
|
import { IQuestCondition } from "@spt/models/eft/common/tables/IQuest";
|
2023-06-11 15:10:34 +10:00
|
|
|
export declare class QuestConditionHelper {
|
2024-04-03 20:15:11 +11:00
|
|
|
getQuestConditions(q: IQuestCondition[], furtherFilter?: (a: IQuestCondition) => IQuestCondition[]): IQuestCondition[];
|
|
|
|
getLevelConditions(q: IQuestCondition[], furtherFilter?: (a: IQuestCondition) => IQuestCondition[]): IQuestCondition[];
|
|
|
|
getLoyaltyConditions(q: IQuestCondition[], furtherFilter?: (a: IQuestCondition) => IQuestCondition[]): IQuestCondition[];
|
|
|
|
getStandingConditions(q: IQuestCondition[], furtherFilter?: (a: IQuestCondition) => IQuestCondition[]): IQuestCondition[];
|
|
|
|
protected filterConditions(q: IQuestCondition[], questType: string, furtherFilter?: (a: IQuestCondition) => IQuestCondition[]): IQuestCondition[];
|
2023-06-11 15:10:34 +10:00
|
|
|
}
|