2023-10-19 19:21:17 +02:00
|
|
|
import { IBaseConfig } from "@spt-aki/models/spt/config/IBaseConfig";
|
2023-03-03 16:23:46 +01:00
|
|
|
|
|
|
|
export interface IInRaidConfig extends IBaseConfig
|
|
|
|
{
|
2023-11-16 22:42:06 +01:00
|
|
|
kind: "aki-inraid";
|
|
|
|
MIAOnRaidEnd: boolean;
|
2023-07-18 16:45:57 +02:00
|
|
|
/** Overrides to apply to the pre-raid settings screen */
|
2023-11-16 22:42:06 +01:00
|
|
|
raidMenuSettings: RaidMenuSettings;
|
2023-07-18 16:45:57 +02:00
|
|
|
/** What effects should be saved post-raid */
|
2023-11-16 22:42:06 +01:00
|
|
|
save: Save;
|
2023-07-18 16:45:57 +02:00
|
|
|
/** Names of car extracts */
|
2023-11-16 22:42:06 +01:00
|
|
|
carExtracts: string[];
|
2023-10-12 21:04:50 +02:00
|
|
|
/** Names of coop extracts */
|
2023-11-16 22:42:06 +01:00
|
|
|
coopExtracts: string[];
|
2023-11-16 12:38:55 +01:00
|
|
|
/** Fence rep gain from a single car extract */
|
2023-11-16 22:42:06 +01:00
|
|
|
carExtractBaseStandingGain: number;
|
2023-11-16 12:38:55 +01:00
|
|
|
/** Fence rep gain from a single coop extract */
|
2023-11-16 22:42:06 +01:00
|
|
|
coopExtractBaseStandingGain: number;
|
2023-07-18 16:45:57 +02:00
|
|
|
/** Fence rep gain when successfully extracting as pscav */
|
2023-11-16 22:42:06 +01:00
|
|
|
scavExtractGain: number;
|
2023-10-10 13:03:20 +02:00
|
|
|
/** On death should items in your secure keep their Find in raid status regardless of how you finished the raid */
|
2023-11-16 22:42:06 +01:00
|
|
|
keepFiRSecureContainerOnDeath: boolean;
|
2023-03-03 16:23:46 +01:00
|
|
|
}
|
|
|
|
|
2023-11-16 22:42:06 +01:00
|
|
|
export interface RaidMenuSettings
|
2023-03-03 16:23:46 +01:00
|
|
|
{
|
2023-11-16 22:42:06 +01:00
|
|
|
aiAmount: string;
|
|
|
|
aiDifficulty: string;
|
|
|
|
bossEnabled: boolean;
|
|
|
|
scavWars: boolean;
|
|
|
|
taggedAndCursed: boolean;
|
|
|
|
enablePve: boolean;
|
2023-03-03 16:23:46 +01:00
|
|
|
}
|
|
|
|
|
2023-11-16 22:42:06 +01:00
|
|
|
export interface Save
|
2023-03-03 16:23:46 +01:00
|
|
|
{
|
2023-07-18 16:45:57 +02:00
|
|
|
/** Should loot gained from raid be saved */
|
2023-11-16 22:42:06 +01:00
|
|
|
loot: boolean;
|
|
|
|
durability: boolean;
|
|
|
|
}
|