Add more missing props to ITempalteItem

This commit is contained in:
Dev 2024-01-24 17:29:11 +00:00
parent 008d431cf2
commit a6eac990aa

View File

@ -177,8 +177,8 @@ export interface Props
MaxDurability?: number; MaxDurability?: number;
armorZone?: string[]; armorZone?: string[];
armorClass?: string | number; armorClass?: string | number;
armorColliders: string[]; armorColliders?: string[];
armorPlateColliders: string[]; armorPlateColliders?: string[];
mousePenalty?: number; mousePenalty?: number;
weaponErgonomicPenalty?: number; weaponErgonomicPenalty?: number;
BluntThroughput?: number; BluntThroughput?: number;
@ -406,6 +406,15 @@ export interface Props
LinkedWeapon?: string; LinkedWeapon?: string;
UseAmmoWithoutShell?: boolean; UseAmmoWithoutShell?: boolean;
RandomLootSettings?: IRandomLootSettings; RandomLootSettings?: IRandomLootSettings;
RecoilCategoryMultiplierHandRotation?: number;
RecoilDampingHandRotation?: number;
LeanWeaponAgainstBody?: boolean;
RemoveShellAfterFire?: boolean;
RepairStrategyTypes?: string[];
IsEncoded?: boolean;
LayoutName?: string;
Lower75Prefab?: Prefab;
MaxUsages?: number;
} }
export interface IHealthEffect export interface IHealthEffect