Server/project/src/models/spt/config/IHealthConfig.ts

20 lines
326 B
TypeScript
Raw Normal View History

2023-03-03 16:23:46 +01:00
import { IBaseConfig } from "./IBaseConfig"
export interface IHealthConfig extends IBaseConfig
{
kind: "aki-health"
healthMultipliers: HealthMultipliers
save: Save
}
export interface HealthMultipliers
{
death: number
blacked: number
}
export interface Save
{
health: boolean
effects: boolean
}