From a6eac990aa8b9a2af2d182544f9f22268870e1e8 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 24 Jan 2024 17:29:11 +0000 Subject: [PATCH] Add more missing props to ITempalteItem --- .../src/models/eft/common/tables/ITemplateItem.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/project/src/models/eft/common/tables/ITemplateItem.ts b/project/src/models/eft/common/tables/ITemplateItem.ts index 151f71fc..ce7c18a8 100644 --- a/project/src/models/eft/common/tables/ITemplateItem.ts +++ b/project/src/models/eft/common/tables/ITemplateItem.ts @@ -177,8 +177,8 @@ export interface Props MaxDurability?: number; armorZone?: string[]; armorClass?: string | number; - armorColliders: string[]; - armorPlateColliders: string[]; + armorColliders?: string[]; + armorPlateColliders?: string[]; mousePenalty?: number; weaponErgonomicPenalty?: number; BluntThroughput?: number; @@ -406,6 +406,15 @@ export interface Props LinkedWeapon?: string; UseAmmoWithoutShell?: boolean; RandomLootSettings?: IRandomLootSettings; + RecoilCategoryMultiplierHandRotation?: number; + RecoilDampingHandRotation?: number; + LeanWeaponAgainstBody?: boolean; + RemoveShellAfterFire?: boolean; + RepairStrategyTypes?: string[]; + IsEncoded?: boolean; + LayoutName?: string; + Lower75Prefab?: Prefab; + MaxUsages?: number; } export interface IHealthEffect