25 lines
520 B
TypeScript
25 lines
520 B
TypeScript
|
import { IBaseConfig } from "./IBaseConfig";
|
||
|
|
||
|
export interface ILostOnDeathConfig extends IBaseConfig
|
||
|
{
|
||
|
kind: "aki-lostondeath"
|
||
|
equipment: Equipment
|
||
|
loot: boolean
|
||
|
questItems: boolean
|
||
|
}
|
||
|
|
||
|
export interface Equipment
|
||
|
{
|
||
|
ArmBand: boolean
|
||
|
Headwear: boolean
|
||
|
Earpiece: boolean
|
||
|
FaceCover: boolean
|
||
|
ArmorVest: boolean
|
||
|
Eyewear: boolean
|
||
|
TacticalVest: boolean
|
||
|
Backpack: boolean
|
||
|
Holster: boolean
|
||
|
FirstPrimaryWeapon: boolean
|
||
|
SecondPrimaryWeapon: boolean
|
||
|
Scabbard: boolean
|
||
|
}
|