2024-11-12 11:51:30 -07:00
|
|
|
import { IQuestCondition } from "@spt/models/eft/common/tables/IQuest";
|
2023-08-17 19:49:16 -06:00
|
|
|
export declare class QuestConditionHelper {
|
2024-04-19 21:23:52 -06: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-08-17 19:49:16 -06:00
|
|
|
}
|